clwiki 3.0.2 → 3.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a371cecf612e10cee66ba4f24483d2d4309416638862db95dde26d4a52508fa3
4
- data.tar.gz: c88443ffdcb75576304a507f9acf5faf6a0cf7687cff69959666078bd3060f02
3
+ metadata.gz: fab5c3b2b54406823c61587e62a112c2d74574f1defe4fb75fffda3be9d3465b
4
+ data.tar.gz: 0b1c9e12d10326ccde34793a24bdb7db0754e1f55fdfca93827674892396b2e0
5
5
  SHA512:
6
- metadata.gz: 04a7e2de66e2d8325b7d1014c7d555c59b1fff1aee0692dabc49f3738d144c2b8ae773648d107bed22ef319620d385f466acb4c275e6a7f43548796083e2b198
7
- data.tar.gz: 89209f8b7eaf5818e857842c7956b92528494432f8b71bcc07b21ab59c64d64c8e9b746cbddd5dd9523ca4adaaf03eee35994940fcef60cd837907d6e139c2be
6
+ metadata.gz: e66996bcc1e768db09329457f73cee33a815a960a99ca8883b2fda2f5944ba15951b12a9d4f6cada9d71fb1d036933ba67f9e9e97ec7284c189e277f55b0256c
7
+ data.tar.gz: 391a47bc26c6010f52b02ab540570e74aa3f5c8786681350a823cadf5a4de5e24ff4b800d939036fa987c822d20916dfc2390326b1431177026699f26036120c
@@ -2,11 +2,16 @@
2
2
 
3
3
  module ClWiki
4
4
  class ApplicationController < ActionController::Base
5
+ before_action :expire_old_session, if: -> { $wiki_conf.use_authentication }
5
6
  before_action :authorized, if: -> { $wiki_conf.use_authentication }
6
7
  before_action :initialize_index, if: -> { $wiki_conf.use_authentication }
7
8
  helper_method :current_user
8
9
  helper_method :logged_in?
9
10
 
11
+ def expire_old_session
12
+ reset_session if session[:expire_at]&.< Time.now
13
+ end
14
+
10
15
  def current_user
11
16
  User.find(session[:username])&.tap do |user|
12
17
  user.cached_encryption_key = Base64.decode64(session[:encryption_key])
@@ -8,6 +8,7 @@ module ClWiki
8
8
  before_action :initialize_formatter
9
9
  before_action :assign_page_name
10
10
  before_action :redirect_to_front_page_if_bad_name, only: :show
11
+ skip_before_action :expire_old_session, only: [:edit, :update]
11
12
 
12
13
  def show
13
14
  @page = instantiate_page
@@ -10,19 +10,30 @@ module ClWiki
10
10
  end
11
11
 
12
12
  def create
13
+ auth_user_and_setup_session ?
14
+ redirect_to(root_url) :
15
+ redirect_to(login_url)
16
+ end
17
+
18
+ def destroy
19
+ reset_session
20
+ redirect_to login_url
21
+ end
22
+
23
+ private
24
+
25
+ def auth_user_and_setup_session
13
26
  @user = User.find(params[:username])
14
27
  password = params[:password]
15
- if @user&.username == $wiki_conf.owner && @user&.authenticate(password)
28
+ authenticated = @user&.username == $wiki_conf.owner && @user&.authenticate(password)
29
+ if authenticated
16
30
  session[:username] = @user.username
31
+ session[:expire_at] = 48.hours.from_now
17
32
  session[:encryption_key] = Base64.encode64(@user.derive_encryption_key(password))
18
- redirect_to root_url
19
- else
20
- redirect_to login_url
21
33
  end
34
+ authenticated
22
35
  end
23
36
 
24
- private
25
-
26
37
  def skip_all_if_not_using_authentication
27
38
  redirect_to root_url unless $wiki_conf.use_authentication
28
39
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ClWiki
4
- VERSION = '3.0.2'
4
+ VERSION = '3.0.3'
5
5
  end
@@ -36149,3 +36149,3779 @@ Processing by ClWiki::PageController#show as HTML
36149
36149
  Redirected to http://www.example.com/wiki/DotTest
36150
36150
  Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
36151
36151
  Completed 301 Moved Permanently in 1ms (Allocations: 274)
36152
+ Processing by ClWiki::PageController#edit as HTML
36153
+ Parameters: {"page_name"=>"NewPage"}
36154
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36155
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 2.8ms | Allocations: 804)
36156
+ Completed 200 OK in 124ms (Views: 71.6ms | Allocations: 25351)
36157
+ Processing by ClWiki::PageController#show as HTML
36158
+ Redirected to http://test.host/wiki/FrontPage
36159
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36160
+ Completed 302 Found in 1ms (Allocations: 316)
36161
+ Processing by ClWiki::PageController#show as HTML
36162
+ Redirected to http://test.host/wiki/FrontPage
36163
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36164
+ Completed 302 Found in 2ms (Allocations: 396)
36165
+ Processing by ClWiki::PageController#edit as HTML
36166
+ Parameters: {"page_name"=>"NewPage"}
36167
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36168
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 319)
36169
+ Completed 200 OK in 5ms (Views: 3.2ms | Allocations: 2394)
36170
+ Processing by ClWiki::PageController#update as HTML
36171
+ Parameters: {"client_mod_time"=>"1580449238", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
36172
+ Redirected to http://test.host/wiki/NewPage/edit
36173
+ Completed 302 Found in 2ms (Views: 3.2ms | Allocations: 966)
36174
+ Processing by ClWiki::PageController#show as HTML
36175
+ Redirected to http://test.host/wiki/FrontPage
36176
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36177
+ Completed 302 Found in 6ms (Allocations: 395)
36178
+ Processing by ClWiki::PageController#find as HTML
36179
+ Parameters: {"search_text"=>"sheep"}
36180
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36181
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 3.6ms | Allocations: 482)
36182
+ Completed 200 OK in 20ms (Views: 15.2ms | Allocations: 2658)
36183
+ Processing by ClWiki::PageController#show as HTML
36184
+ Redirected to http://test.host/wiki/FrontPage
36185
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36186
+ Completed 302 Found in 2ms (Allocations: 395)
36187
+ Processing by ClWiki::PageController#show as HTML
36188
+ Redirected to http://test.host/wiki/FrontPage
36189
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36190
+ Completed 302 Found in 2ms (Allocations: 394)
36191
+ Processing by ClWiki::PageController#show as HTML
36192
+ Redirected to http://test.host/wiki/FrontPage
36193
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36194
+ Completed 302 Found in 1ms (Allocations: 395)
36195
+ Processing by ClWiki::PageController#edit as HTML
36196
+ Parameters: {"page_name"=>"NewEncryptedPage"}
36197
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36198
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
36199
+ Completed 200 OK in 6ms (Views: 4.6ms | Allocations: 2389)
36200
+ Processing by ClWiki::PageController#update as HTML
36201
+ Parameters: {"client_mod_time"=>"1580449238", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36202
+ Redirected to http://test.host/wiki/NewEncryptedPage
36203
+ Completed 302 Found in 6ms (Views: 4.6ms | Allocations: 1414)
36204
+ Processing by ClWiki::PageController#update as HTML
36205
+ Parameters: {"client_mod_time"=>"1580449238", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36206
+ Redirected to http://test.host/wiki/NewEncryptedPage
36207
+ Completed 302 Found in 3ms (Views: 4.6ms | Allocations: 1114)
36208
+ Processing by ClWiki::PageController#show as HTML
36209
+ Redirected to http://test.host/wiki/FrontPage
36210
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36211
+ Completed 302 Found in 2ms (Allocations: 395)
36212
+ Processing by ClWiki::PageController#show as HTML
36213
+ Parameters: {"page_name"=>"SourcePage"}
36214
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36215
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 1.3ms | Allocations: 93)
36216
+ Completed 200 OK in 16ms (Views: 6.3ms | Allocations: 3464)
36217
+ Processing by ClWiki::PageController#show as HTML
36218
+ Redirected to http://test.host/wiki/FrontPage
36219
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36220
+ Completed 302 Found in 2ms (Allocations: 395)
36221
+ Processing by ClWiki::PageController#find as HTML
36222
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36223
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 3.5ms | Allocations: 190)
36224
+ Completed 200 OK in 9ms (Views: 8.3ms | Allocations: 2080)
36225
+ Processing by ClWiki::PageController#show as HTML
36226
+ Redirected to http://test.host/wiki/FrontPage
36227
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36228
+ Completed 302 Found in 2ms (Allocations: 395)
36229
+ Processing by ClWiki::PageController#recent as HTML
36230
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36231
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 187)
36232
+ Completed 200 OK in 5ms (Views: 2.4ms | Allocations: 3105)
36233
+ Processing by ClWiki::PageController#show as HTML
36234
+ Redirected to http://test.host/wiki/FrontPage
36235
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36236
+ Completed 302 Found in 1ms (Allocations: 395)
36237
+ Processing by ClWiki::PageController#edit as HTML
36238
+ Parameters: {"page_name"=>"ANewPage"}
36239
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36240
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 317)
36241
+ Completed 200 OK in 4ms (Views: 2.5ms | Allocations: 2394)
36242
+ Processing by ClWiki::PageController#edit as HTML
36243
+ Parameters: {"page_name"=>"AnotherNewPage"}
36244
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36245
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 311)
36246
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2380)
36247
+ Processing by ClWiki::PageController#show as HTML
36248
+ Redirected to http://test.host/wiki/FrontPage
36249
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36250
+ Completed 302 Found in 1ms (Allocations: 395)
36251
+ Processing by ClWiki::PageController#show as HTML
36252
+ Redirected to http://test.host/wiki/FrontPage
36253
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36254
+ Completed 302 Found in 2ms (Allocations: 395)
36255
+ Processing by ClWiki::PageController#show as HTML
36256
+ Redirected to http://test.host/wiki/FrontPage
36257
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36258
+ Completed 302 Found in 1ms (Allocations: 395)
36259
+ Processing by ClWiki::PageController#recent as RSS
36260
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
36261
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 11.7ms | Allocations: 3174)
36262
+ Completed 200 OK in 14ms (Views: 12.5ms | Allocations: 4304)
36263
+ Processing by ClWiki::PageController#show as HTML
36264
+ Redirected to http://test.host/wiki/FrontPage
36265
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36266
+ Completed 302 Found in 1ms (Allocations: 395)
36267
+ Processing by ClWiki::PageController#show as HTML
36268
+ Parameters: {"page_name"=>"notavalidname"}
36269
+ Redirected to http://test.host/wiki/FrontPage
36270
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36271
+ Completed 302 Found in 1ms (Allocations: 392)
36272
+ Processing by ClWiki::PageController#show as HTML
36273
+ Redirected to http://test.host/wiki/FrontPage
36274
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36275
+ Completed 302 Found in 2ms (Allocations: 395)
36276
+ Processing by ClWiki::PageController#show as HTML
36277
+ Parameters: {"page_name"=>"NewPage"}
36278
+ Redirected to http://test.host/wiki/FrontPage
36279
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36280
+ Completed 302 Found in 1ms (Allocations: 406)
36281
+ Processing by ClWiki::PageController#show as HTML
36282
+ Redirected to http://test.host/wiki/FrontPage
36283
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36284
+ Completed 302 Found in 2ms (Allocations: 395)
36285
+ Processing by ClWiki::PageController#show as HTML
36286
+ Redirected to http://test.host/wiki/FrontPage
36287
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36288
+ Completed 302 Found in 2ms (Allocations: 395)
36289
+ Processing by ClWiki::PageController#show as HTML
36290
+ Parameters: {"page_name"=>"NewPage"}
36291
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36292
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
36293
+ Completed 200 OK in 4ms (Views: 2.1ms | Allocations: 2356)
36294
+ Processing by ClWiki::PageController#show as HTML
36295
+ Redirected to http://test.host/wiki/FrontPage
36296
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36297
+ Completed 302 Found in 1ms (Allocations: 395)
36298
+ Processing by ClWiki::PageController#recent as HTML
36299
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36300
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
36301
+ Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2379)
36302
+ Processing by ClWiki::PageController#show as HTML
36303
+ Redirected to http://test.host/wiki/FrontPage
36304
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36305
+ Completed 302 Found in 1ms (Allocations: 395)
36306
+ Processing by ClWiki::PageController#edit as HTML
36307
+ Parameters: {"page_name"=>"NewPage"}
36308
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36309
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 316)
36310
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2390)
36311
+ Processing by ClWiki::PageController#update as HTML
36312
+ Parameters: {"client_mod_time"=>"1580449239", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
36313
+ Redirected to http://test.host/wiki/NewPage
36314
+ Completed 302 Found in 2ms (Views: 1.9ms | Allocations: 966)
36315
+ Processing by ClWiki::PageController#show as HTML
36316
+ Redirected to http://test.host/wiki/FrontPage
36317
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36318
+ Completed 302 Found in 1ms (Allocations: 395)
36319
+ Processing by ClWiki::PageController#edit as HTML
36320
+ Parameters: {"page_name"=>"NewPage"}
36321
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36322
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
36323
+ Completed 200 OK in 3ms (Views: 2.2ms | Allocations: 2388)
36324
+ Processing by ClWiki::PageController#show as HTML
36325
+ Redirected to http://test.host/wiki/FrontPage
36326
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36327
+ Completed 302 Found in 1ms (Allocations: 523)
36328
+ Processing by ClWiki::PageController#show as HTML
36329
+ Redirected to http://test.host/wiki/FrontPage
36330
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36331
+ Completed 302 Found in 2ms (Allocations: 395)
36332
+ Processing by ClWiki::PageController#show as HTML
36333
+ Redirected to http://test.host/wiki/FrontPage
36334
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36335
+ Completed 302 Found in 2ms (Allocations: 454)
36336
+ Processing by ClWiki::PageController#show as HTML
36337
+ Redirected to http://test.host/wiki/FrontPage
36338
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36339
+ Completed 302 Found in 1ms (Allocations: 523)
36340
+ Processing by ClWiki::PageController#show as HTML
36341
+ Redirected to http://test.host/wiki/FrontPage
36342
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36343
+ Completed 302 Found in 1ms (Allocations: 454)
36344
+ Processing by ClWiki::PageController#show as HTML
36345
+ Redirected to http://test.host/wiki/FrontPage
36346
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36347
+ Completed 302 Found in 1ms (Allocations: 395)
36348
+ Processing by ClWiki::PageController#edit as HTML
36349
+ Parameters: {"page_name"=>"DoNotKillMe"}
36350
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36351
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 3.4ms | Allocations: 950)
36352
+ Completed 200 OK in 42ms (Views: 37.2ms | Allocations: 18095)
36353
+ Processing by ClWiki::PageController#show as HTML
36354
+ Redirected to http://test.host/wiki/FrontPage
36355
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36356
+ Completed 302 Found in 1ms (Allocations: 523)
36357
+ Processing by ClWiki::PageController#show as HTML
36358
+ Redirected to http://test.host/wiki/FrontPage
36359
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36360
+ Completed 302 Found in 1ms (Allocations: 454)
36361
+ Processing by ClWiki::PageController#show as HTML
36362
+ Redirected to http://test.host/wiki/FrontPage
36363
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36364
+ Completed 302 Found in 1ms (Allocations: 395)
36365
+ Processing by ClWiki::PageController#edit as HTML
36366
+ Parameters: {"page_name"=>"DoNotKillMe"}
36367
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36368
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.8ms | Allocations: 950)
36369
+ Completed 200 OK in 33ms (Views: 28.2ms | Allocations: 18011)
36370
+ Processing by ClWiki::PageController#edit as HTML
36371
+ Parameters: {"page_name"=>"NewPage"}
36372
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36373
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.4ms | Allocations: 804)
36374
+ Completed 200 OK in 63ms (Views: 39.8ms | Allocations: 25240)
36375
+ Processing by ClWiki::PageController#show as HTML
36376
+ Redirected to http://test.host/wiki/FrontPage
36377
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36378
+ Completed 302 Found in 1ms (Allocations: 316)
36379
+ Processing by ClWiki::PageController#show as HTML
36380
+ Redirected to http://test.host/wiki/FrontPage
36381
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36382
+ Completed 302 Found in 1ms (Allocations: 396)
36383
+ Processing by ClWiki::PageController#edit as HTML
36384
+ Parameters: {"page_name"=>"ANewPage"}
36385
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36386
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 319)
36387
+ Completed 200 OK in 3ms (Views: 2.1ms | Allocations: 2394)
36388
+ Processing by ClWiki::PageController#edit as HTML
36389
+ Parameters: {"page_name"=>"AnotherNewPage"}
36390
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36391
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 311)
36392
+ Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 2380)
36393
+ Processing by ClWiki::PageController#show as HTML
36394
+ Redirected to http://test.host/wiki/FrontPage
36395
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36396
+ Completed 302 Found in 1ms (Allocations: 395)
36397
+ Processing by ClWiki::PageController#show as HTML
36398
+ Redirected to http://test.host/wiki/FrontPage
36399
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36400
+ Completed 302 Found in 1ms (Allocations: 454)
36401
+ Processing by ClWiki::PageController#show as HTML
36402
+ Redirected to http://test.host/wiki/FrontPage
36403
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36404
+ Completed 302 Found in 1ms (Allocations: 395)
36405
+ Processing by ClWiki::PageController#edit as HTML
36406
+ Parameters: {"page_name"=>"NewEncryptedPage"}
36407
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36408
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
36409
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2389)
36410
+ Processing by ClWiki::PageController#update as HTML
36411
+ Parameters: {"client_mod_time"=>"1580449645", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36412
+ Redirected to http://test.host/wiki/NewEncryptedPage
36413
+ Completed 302 Found in 5ms (Views: 2.0ms | Allocations: 1427)
36414
+ Processing by ClWiki::PageController#update as HTML
36415
+ Parameters: {"client_mod_time"=>"1580449645", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36416
+ Redirected to http://test.host/wiki/NewEncryptedPage
36417
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 1126)
36418
+ Processing by ClWiki::PageController#show as HTML
36419
+ Redirected to http://test.host/wiki/FrontPage
36420
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36421
+ Completed 302 Found in 2ms (Allocations: 395)
36422
+ Processing by ClWiki::PageController#show as HTML
36423
+ Parameters: {"page_name"=>"notavalidname"}
36424
+ Redirected to http://test.host/wiki/FrontPage
36425
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36426
+ Completed 302 Found in 1ms (Allocations: 392)
36427
+ Processing by ClWiki::PageController#show as HTML
36428
+ Redirected to http://test.host/wiki/FrontPage
36429
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36430
+ Completed 302 Found in 1ms (Allocations: 395)
36431
+ Processing by ClWiki::PageController#show as HTML
36432
+ Redirected to http://test.host/wiki/FrontPage
36433
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36434
+ Completed 302 Found in 1ms (Allocations: 395)
36435
+ Processing by ClWiki::PageController#recent as HTML
36436
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36437
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 189)
36438
+ Completed 200 OK in 6ms (Views: 2.0ms | Allocations: 3941)
36439
+ Processing by ClWiki::PageController#show as HTML
36440
+ Redirected to http://test.host/wiki/FrontPage
36441
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36442
+ Completed 302 Found in 1ms (Allocations: 395)
36443
+ Processing by ClWiki::PageController#recent as RSS
36444
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
36445
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 7.6ms | Allocations: 3173)
36446
+ Completed 200 OK in 10ms (Views: 8.4ms | Allocations: 4303)
36447
+ Processing by ClWiki::PageController#show as HTML
36448
+ Redirected to http://test.host/wiki/FrontPage
36449
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36450
+ Completed 302 Found in 1ms (Allocations: 395)
36451
+ Processing by ClWiki::PageController#recent as HTML
36452
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36453
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
36454
+ Completed 200 OK in 4ms (Views: 1.8ms | Allocations: 2380)
36455
+ Processing by ClWiki::PageController#show as HTML
36456
+ Redirected to http://test.host/wiki/FrontPage
36457
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36458
+ Completed 302 Found in 1ms (Allocations: 395)
36459
+ Processing by ClWiki::PageController#edit as HTML
36460
+ Parameters: {"page_name"=>"DoNotKillMe"}
36461
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36462
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 406)
36463
+ Completed 200 OK in 5ms (Views: 3.3ms | Allocations: 2901)
36464
+ Processing by ClWiki::PageController#show as HTML
36465
+ Redirected to http://test.host/wiki/FrontPage
36466
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36467
+ Completed 302 Found in 1ms (Allocations: 395)
36468
+ Processing by ClWiki::PageController#show as HTML
36469
+ Parameters: {"page_name"=>"NewPage"}
36470
+ Redirected to http://test.host/wiki/FrontPage
36471
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36472
+ Completed 302 Found in 2ms (Allocations: 406)
36473
+ Processing by ClWiki::PageController#show as HTML
36474
+ Redirected to http://test.host/wiki/FrontPage
36475
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36476
+ Completed 302 Found in 1ms (Allocations: 395)
36477
+ Processing by ClWiki::PageController#show as HTML
36478
+ Parameters: {"page_name"=>"NewPage"}
36479
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36480
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 93)
36481
+ Completed 200 OK in 5ms (Views: 2.6ms | Allocations: 2669)
36482
+ Processing by ClWiki::PageController#show as HTML
36483
+ Redirected to http://test.host/wiki/FrontPage
36484
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36485
+ Completed 302 Found in 3ms (Allocations: 395)
36486
+ Processing by ClWiki::PageController#find as HTML
36487
+ Parameters: {"search_text"=>"sheep"}
36488
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36489
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 477)
36490
+ Completed 200 OK in 6ms (Views: 4.5ms | Allocations: 2653)
36491
+ Processing by ClWiki::PageController#show as HTML
36492
+ Redirected to http://test.host/wiki/FrontPage
36493
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36494
+ Completed 302 Found in 1ms (Allocations: 395)
36495
+ Processing by ClWiki::PageController#edit as HTML
36496
+ Parameters: {"page_name"=>"NewPage"}
36497
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36498
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 315)
36499
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2390)
36500
+ Processing by ClWiki::PageController#update as HTML
36501
+ Parameters: {"client_mod_time"=>"1580449645", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
36502
+ Redirected to http://test.host/wiki/NewPage
36503
+ Completed 302 Found in 2ms (Views: 1.6ms | Allocations: 978)
36504
+ Processing by ClWiki::PageController#show as HTML
36505
+ Redirected to http://test.host/wiki/FrontPage
36506
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36507
+ Completed 302 Found in 1ms (Allocations: 395)
36508
+ Processing by ClWiki::PageController#find as HTML
36509
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36510
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.2ms | Allocations: 185)
36511
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2074)
36512
+ Processing by ClWiki::PageController#show as HTML
36513
+ Redirected to http://test.host/wiki/FrontPage
36514
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36515
+ Completed 302 Found in 1ms (Allocations: 395)
36516
+ Processing by ClWiki::PageController#edit as HTML
36517
+ Parameters: {"page_name"=>"NewPage"}
36518
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36519
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 314)
36520
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2388)
36521
+ Processing by ClWiki::PageController#show as HTML
36522
+ Redirected to http://test.host/wiki/FrontPage
36523
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36524
+ Completed 302 Found in 1ms (Allocations: 395)
36525
+ Processing by ClWiki::PageController#show as HTML
36526
+ Redirected to http://test.host/wiki/FrontPage
36527
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36528
+ Completed 302 Found in 1ms (Allocations: 394)
36529
+ Processing by ClWiki::PageController#show as HTML
36530
+ Redirected to http://test.host/wiki/FrontPage
36531
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36532
+ Completed 302 Found in 1ms (Allocations: 395)
36533
+ Processing by ClWiki::PageController#show as HTML
36534
+ Parameters: {"page_name"=>"SourcePage"}
36535
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36536
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
36537
+ Completed 200 OK in 2ms (Views: 1.3ms | Allocations: 2315)
36538
+ Processing by ClWiki::PageController#show as HTML
36539
+ Redirected to http://test.host/wiki/FrontPage
36540
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36541
+ Completed 302 Found in 1ms (Allocations: 395)
36542
+ Processing by ClWiki::PageController#edit as HTML
36543
+ Parameters: {"page_name"=>"NewPage"}
36544
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36545
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
36546
+ Completed 200 OK in 4ms (Views: 2.3ms | Allocations: 2388)
36547
+ Processing by ClWiki::PageController#update as HTML
36548
+ Parameters: {"client_mod_time"=>"1580449645", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
36549
+ Redirected to http://test.host/wiki/NewPage/edit
36550
+ Completed 302 Found in 2ms (Views: 2.3ms | Allocations: 977)
36551
+ Processing by ClWiki::PageController#show as HTML
36552
+ Redirected to http://test.host/wiki/FrontPage
36553
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36554
+ Completed 302 Found in 1ms (Allocations: 523)
36555
+ Processing by ClWiki::PageController#edit as HTML
36556
+ Parameters: {"page_name"=>"ANewPage"}
36557
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36558
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 3.6ms | Allocations: 860)
36559
+ Completed 200 OK in 43ms (Views: 39.6ms | Allocations: 15795)
36560
+ Processing by ClWiki::PageController#edit as HTML
36561
+ Parameters: {"page_name"=>"AnotherNewPage"}
36562
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36563
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.2ms | Allocations: 315)
36564
+ Completed 200 OK in 8ms (Views: 4.6ms | Allocations: 2385)
36565
+ Processing by ClWiki::PageController#show as HTML
36566
+ Redirected to http://test.host/wiki/FrontPage
36567
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36568
+ Completed 302 Found in 1ms (Allocations: 395)
36569
+ Processing by ClWiki::PageController#find as HTML
36570
+ Parameters: {"search_text"=>"sheep"}
36571
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36572
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 480)
36573
+ Completed 200 OK in 5ms (Views: 3.0ms | Allocations: 2655)
36574
+ Processing by ClWiki::PageController#show as HTML
36575
+ Redirected to http://test.host/wiki/FrontPage
36576
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36577
+ Completed 302 Found in 1ms (Allocations: 395)
36578
+ Processing by ClWiki::PageController#show as HTML
36579
+ Redirected to http://test.host/wiki/FrontPage
36580
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36581
+ Completed 302 Found in 1ms (Allocations: 454)
36582
+ Processing by ClWiki::PageController#show as HTML
36583
+ Redirected to http://test.host/wiki/FrontPage
36584
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36585
+ Completed 302 Found in 2ms (Allocations: 395)
36586
+ Processing by ClWiki::PageController#edit as HTML
36587
+ Parameters: {"page_name"=>"NewPage"}
36588
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36589
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 315)
36590
+ Completed 200 OK in 5ms (Views: 2.4ms | Allocations: 2391)
36591
+ Processing by ClWiki::PageController#update as HTML
36592
+ Parameters: {"client_mod_time"=>"1580449704", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
36593
+ Redirected to http://test.host/wiki/NewPage
36594
+ Completed 302 Found in 2ms (Views: 2.4ms | Allocations: 978)
36595
+ Processing by ClWiki::PageController#show as HTML
36596
+ Redirected to http://test.host/wiki/FrontPage
36597
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36598
+ Completed 302 Found in 1ms (Allocations: 395)
36599
+ Processing by ClWiki::PageController#show as HTML
36600
+ Redirected to http://test.host/wiki/FrontPage
36601
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36602
+ Completed 302 Found in 1ms (Allocations: 394)
36603
+ Processing by ClWiki::PageController#show as HTML
36604
+ Redirected to http://test.host/wiki/FrontPage
36605
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36606
+ Completed 302 Found in 1ms (Allocations: 395)
36607
+ Processing by ClWiki::PageController#edit as HTML
36608
+ Parameters: {"page_name"=>"NewEncryptedPage"}
36609
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36610
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
36611
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2388)
36612
+ Processing by ClWiki::PageController#update as HTML
36613
+ Parameters: {"client_mod_time"=>"1580449704", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36614
+ Redirected to http://test.host/wiki/NewEncryptedPage
36615
+ Completed 302 Found in 3ms (Views: 1.6ms | Allocations: 1426)
36616
+ Processing by ClWiki::PageController#update as HTML
36617
+ Parameters: {"client_mod_time"=>"1580449704", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36618
+ Redirected to http://test.host/wiki/NewEncryptedPage
36619
+ Completed 302 Found in 2ms (Views: 1.6ms | Allocations: 1126)
36620
+ Processing by ClWiki::PageController#show as HTML
36621
+ Redirected to http://test.host/wiki/FrontPage
36622
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36623
+ Completed 302 Found in 1ms (Allocations: 395)
36624
+ Processing by ClWiki::PageController#show as HTML
36625
+ Redirected to http://test.host/wiki/FrontPage
36626
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36627
+ Completed 302 Found in 1ms (Allocations: 395)
36628
+ Processing by ClWiki::PageController#show as HTML
36629
+ Parameters: {"page_name"=>"NewPage"}
36630
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36631
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 96)
36632
+ Completed 200 OK in 7ms (Views: 2.1ms | Allocations: 3505)
36633
+ Processing by ClWiki::PageController#show as HTML
36634
+ Redirected to http://test.host/wiki/FrontPage
36635
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36636
+ Completed 302 Found in 1ms (Allocations: 395)
36637
+ Processing by ClWiki::PageController#recent as RSS
36638
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
36639
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 8.7ms | Allocations: 3174)
36640
+ Completed 200 OK in 11ms (Views: 9.7ms | Allocations: 4313)
36641
+ Processing by ClWiki::PageController#show as HTML
36642
+ Redirected to http://test.host/wiki/FrontPage
36643
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36644
+ Completed 302 Found in 1ms (Allocations: 395)
36645
+ Processing by ClWiki::PageController#edit as HTML
36646
+ Parameters: {"page_name"=>"DoNotKillMe"}
36647
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36648
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 407)
36649
+ Completed 200 OK in 4ms (Views: 2.3ms | Allocations: 2903)
36650
+ Processing by ClWiki::PageController#show as HTML
36651
+ Redirected to http://test.host/wiki/FrontPage
36652
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36653
+ Completed 302 Found in 1ms (Allocations: 395)
36654
+ Processing by ClWiki::PageController#find as HTML
36655
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36656
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 186)
36657
+ Completed 200 OK in 3ms (Views: 2.1ms | Allocations: 2075)
36658
+ Processing by ClWiki::PageController#show as HTML
36659
+ Redirected to http://test.host/wiki/FrontPage
36660
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36661
+ Completed 302 Found in 1ms (Allocations: 395)
36662
+ Processing by ClWiki::PageController#recent as HTML
36663
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36664
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 168)
36665
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2755)
36666
+ Processing by ClWiki::PageController#show as HTML
36667
+ Redirected to http://test.host/wiki/FrontPage
36668
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36669
+ Completed 302 Found in 1ms (Allocations: 395)
36670
+ Processing by ClWiki::PageController#edit as HTML
36671
+ Parameters: {"page_name"=>"NewPage"}
36672
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36673
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 318)
36674
+ Completed 200 OK in 4ms (Views: 2.2ms | Allocations: 2393)
36675
+ Processing by ClWiki::PageController#update as HTML
36676
+ Parameters: {"client_mod_time"=>"1580449705", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
36677
+ Redirected to http://test.host/wiki/NewPage/edit
36678
+ Completed 302 Found in 2ms (Views: 2.2ms | Allocations: 977)
36679
+ Processing by ClWiki::PageController#show as HTML
36680
+ Redirected to http://test.host/wiki/FrontPage
36681
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36682
+ Completed 302 Found in 1ms (Allocations: 395)
36683
+ Processing by ClWiki::PageController#show as HTML
36684
+ Parameters: {"page_name"=>"NewPage"}
36685
+ Redirected to http://test.host/wiki/FrontPage
36686
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36687
+ Completed 302 Found in 1ms (Allocations: 406)
36688
+ Processing by ClWiki::PageController#show as HTML
36689
+ Redirected to http://test.host/wiki/FrontPage
36690
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36691
+ Completed 302 Found in 1ms (Allocations: 395)
36692
+ Processing by ClWiki::PageController#recent as HTML
36693
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36694
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
36695
+ Completed 200 OK in 4ms (Views: 1.6ms | Allocations: 2715)
36696
+ Processing by ClWiki::PageController#show as HTML
36697
+ Redirected to http://test.host/wiki/FrontPage
36698
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36699
+ Completed 302 Found in 1ms (Allocations: 395)
36700
+ Processing by ClWiki::PageController#edit as HTML
36701
+ Parameters: {"page_name"=>"NewPage"}
36702
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36703
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
36704
+ Completed 200 OK in 4ms (Views: 2.0ms | Allocations: 2388)
36705
+ Processing by ClWiki::PageController#show as HTML
36706
+ Redirected to http://test.host/wiki/FrontPage
36707
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36708
+ Completed 302 Found in 1ms (Allocations: 395)
36709
+ Processing by ClWiki::PageController#show as HTML
36710
+ Parameters: {"page_name"=>"SourcePage"}
36711
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36712
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
36713
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2315)
36714
+ Processing by ClWiki::PageController#show as HTML
36715
+ Redirected to http://test.host/wiki/FrontPage
36716
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36717
+ Completed 302 Found in 2ms (Allocations: 395)
36718
+ Processing by ClWiki::PageController#show as HTML
36719
+ Parameters: {"page_name"=>"notavalidname"}
36720
+ Redirected to http://test.host/wiki/FrontPage
36721
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36722
+ Completed 302 Found in 1ms (Allocations: 392)
36723
+ Processing by ClWiki::PageController#show as HTML
36724
+ Redirected to http://test.host/wiki/FrontPage
36725
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36726
+ Completed 302 Found in 1ms (Allocations: 299)
36727
+ Processing by ClWiki::PageController#edit as HTML
36728
+ Parameters: {"page_name"=>"NewPage"}
36729
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36730
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 257)
36731
+ Completed 200 OK in 4ms (Views: 2.5ms | Allocations: 2215)
36732
+ Processing by ClWiki::PageController#show as HTML
36733
+ Redirected to http://test.host/wiki/FrontPage
36734
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36735
+ Completed 302 Found in 2ms (Allocations: 523)
36736
+ Processing by ClWiki::PageController#edit as HTML
36737
+ Parameters: {"page_name"=>"NewPage"}
36738
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36739
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 3.6ms | Allocations: 860)
36740
+ Completed 200 OK in 52ms (Views: 45.5ms | Allocations: 15940)
36741
+ Processing by ClWiki::PageController#update as HTML
36742
+ Parameters: {"client_mod_time"=>"1580449807", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
36743
+ Redirected to http://test.host/wiki/NewPage/edit
36744
+ Completed 302 Found in 3ms (Views: 45.5ms | Allocations: 978)
36745
+ Processing by ClWiki::PageController#show as HTML
36746
+ Redirected to http://test.host/wiki/FrontPage
36747
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36748
+ Completed 302 Found in 1ms (Allocations: 395)
36749
+ Processing by ClWiki::PageController#show as HTML
36750
+ Parameters: {"page_name"=>"notavalidname"}
36751
+ Redirected to http://test.host/wiki/FrontPage
36752
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36753
+ Completed 302 Found in 1ms (Allocations: 392)
36754
+ Processing by ClWiki::PageController#show as HTML
36755
+ Redirected to http://test.host/wiki/FrontPage
36756
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36757
+ Completed 302 Found in 1ms (Allocations: 395)
36758
+ Processing by ClWiki::PageController#show as HTML
36759
+ Redirected to http://test.host/wiki/FrontPage
36760
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36761
+ Completed 302 Found in 1ms (Allocations: 454)
36762
+ Processing by ClWiki::PageController#show as HTML
36763
+ Redirected to http://test.host/wiki/FrontPage
36764
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36765
+ Completed 302 Found in 2ms (Allocations: 395)
36766
+ Processing by ClWiki::PageController#show as HTML
36767
+ Parameters: {"page_name"=>"NewPage"}
36768
+ Redirected to http://test.host/wiki/FrontPage
36769
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36770
+ Completed 302 Found in 2ms (Allocations: 406)
36771
+ Processing by ClWiki::PageController#show as HTML
36772
+ Redirected to http://test.host/wiki/FrontPage
36773
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36774
+ Completed 302 Found in 1ms (Allocations: 395)
36775
+ Processing by ClWiki::PageController#recent as HTML
36776
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36777
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 1.4ms | Allocations: 172)
36778
+ Completed 200 OK in 14ms (Views: 5.2ms | Allocations: 3607)
36779
+ Processing by ClWiki::PageController#show as HTML
36780
+ Redirected to http://test.host/wiki/FrontPage
36781
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36782
+ Completed 302 Found in 1ms (Allocations: 395)
36783
+ Processing by ClWiki::PageController#edit as HTML
36784
+ Parameters: {"page_name"=>"NewEncryptedPage"}
36785
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36786
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 317)
36787
+ Completed 200 OK in 6ms (Views: 4.5ms | Allocations: 2392)
36788
+ Processing by ClWiki::PageController#update as HTML
36789
+ Parameters: {"client_mod_time"=>"1580449807", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36790
+ Redirected to http://test.host/wiki/NewEncryptedPage
36791
+ Completed 302 Found in 5ms (Views: 4.5ms | Allocations: 1426)
36792
+ Processing by ClWiki::PageController#update as HTML
36793
+ Parameters: {"client_mod_time"=>"1580449807", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
36794
+ Redirected to http://test.host/wiki/NewEncryptedPage
36795
+ Completed 302 Found in 3ms (Views: 4.5ms | Allocations: 1126)
36796
+ Processing by ClWiki::PageController#show as HTML
36797
+ Redirected to http://test.host/wiki/FrontPage
36798
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36799
+ Completed 302 Found in 1ms (Allocations: 395)
36800
+ Processing by ClWiki::PageController#recent as RSS
36801
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
36802
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 25.4ms | Allocations: 3173)
36803
+ Completed 200 OK in 53ms (Views: 50.9ms | Allocations: 4303)
36804
+ Processing by ClWiki::PageController#show as HTML
36805
+ Redirected to http://test.host/wiki/FrontPage
36806
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36807
+ Completed 302 Found in 1ms (Allocations: 395)
36808
+ Processing by ClWiki::PageController#edit as HTML
36809
+ Parameters: {"page_name"=>"NewPage"}
36810
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36811
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 316)
36812
+ Completed 200 OK in 4ms (Views: 2.5ms | Allocations: 2391)
36813
+ Processing by ClWiki::PageController#update as HTML
36814
+ Parameters: {"client_mod_time"=>"1580449808", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
36815
+ Redirected to http://test.host/wiki/NewPage
36816
+ Completed 302 Found in 2ms (Views: 2.5ms | Allocations: 978)
36817
+ Processing by ClWiki::PageController#show as HTML
36818
+ Redirected to http://test.host/wiki/FrontPage
36819
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36820
+ Completed 302 Found in 1ms (Allocations: 395)
36821
+ Processing by ClWiki::PageController#edit as HTML
36822
+ Parameters: {"page_name"=>"DoNotKillMe"}
36823
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36824
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 403)
36825
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2899)
36826
+ Processing by ClWiki::PageController#show as HTML
36827
+ Redirected to http://test.host/wiki/FrontPage
36828
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36829
+ Completed 302 Found in 1ms (Allocations: 395)
36830
+ Processing by ClWiki::PageController#edit as HTML
36831
+ Parameters: {"page_name"=>"DoNotKillMe"}
36832
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36833
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 403)
36834
+ Completed 200 OK in 3ms (Views: 2.2ms | Allocations: 2897)
36835
+ Processing by ClWiki::PageController#update as HTML
36836
+ Parameters: {"client_mod_time"=>"1580709008", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
36837
+ Redirected to http://test.host/wiki/DoNotKillMe
36838
+ Completed 302 Found in 3ms (Views: 2.2ms | Allocations: 1457)
36839
+ Processing by ClWiki::PageController#show as HTML
36840
+ Redirected to http://test.host/wiki/FrontPage
36841
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36842
+ Completed 302 Found in 2ms (Allocations: 395)
36843
+ Processing by ClWiki::PageController#show as HTML
36844
+ Redirected to http://test.host/wiki/FrontPage
36845
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36846
+ Completed 302 Found in 1ms (Allocations: 394)
36847
+ Processing by ClWiki::PageController#show as HTML
36848
+ Redirected to http://test.host/wiki/FrontPage
36849
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36850
+ Completed 302 Found in 1ms (Allocations: 395)
36851
+ Processing by ClWiki::PageController#find as HTML
36852
+ Parameters: {"search_text"=>"sheep"}
36853
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36854
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.7ms | Allocations: 480)
36855
+ Completed 200 OK in 4ms (Views: 3.3ms | Allocations: 2655)
36856
+ Processing by ClWiki::PageController#show as HTML
36857
+ Redirected to http://test.host/wiki/FrontPage
36858
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36859
+ Completed 302 Found in 1ms (Allocations: 395)
36860
+ Processing by ClWiki::PageController#show as HTML
36861
+ Parameters: {"page_name"=>"NewPage"}
36862
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36863
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 93)
36864
+ Completed 200 OK in 8ms (Views: 3.7ms | Allocations: 2670)
36865
+ Processing by ClWiki::PageController#show as HTML
36866
+ Redirected to http://test.host/wiki/FrontPage
36867
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36868
+ Completed 302 Found in 1ms (Allocations: 395)
36869
+ Processing by ClWiki::PageController#show as HTML
36870
+ Parameters: {"page_name"=>"SourcePage"}
36871
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
36872
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
36873
+ Completed 200 OK in 2ms (Views: 1.4ms | Allocations: 2316)
36874
+ Processing by ClWiki::PageController#show as HTML
36875
+ Redirected to http://test.host/wiki/FrontPage
36876
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36877
+ Completed 302 Found in 1ms (Allocations: 395)
36878
+ Processing by ClWiki::PageController#edit as HTML
36879
+ Parameters: {"page_name"=>"ANewPage"}
36880
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36881
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 317)
36882
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2391)
36883
+ Processing by ClWiki::PageController#edit as HTML
36884
+ Parameters: {"page_name"=>"AnotherNewPage"}
36885
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36886
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 311)
36887
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2380)
36888
+ Processing by ClWiki::PageController#show as HTML
36889
+ Redirected to http://test.host/wiki/FrontPage
36890
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36891
+ Completed 302 Found in 1ms (Allocations: 395)
36892
+ Processing by ClWiki::PageController#find as HTML
36893
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
36894
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 187)
36895
+ Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 2076)
36896
+ Processing by ClWiki::PageController#show as HTML
36897
+ Redirected to http://test.host/wiki/FrontPage
36898
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36899
+ Completed 302 Found in 2ms (Allocations: 395)
36900
+ Processing by ClWiki::PageController#recent as HTML
36901
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
36902
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
36903
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2715)
36904
+ Processing by ClWiki::PageController#show as HTML
36905
+ Redirected to http://test.host/wiki/FrontPage
36906
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36907
+ Completed 302 Found in 1ms (Allocations: 395)
36908
+ Processing by ClWiki::PageController#edit as HTML
36909
+ Parameters: {"page_name"=>"NewPage"}
36910
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36911
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
36912
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2388)
36913
+ Processing by ClWiki::PageController#show as HTML
36914
+ Redirected to http://test.host/wiki/FrontPage
36915
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36916
+ Completed 302 Found in 1ms (Allocations: 299)
36917
+ Processing by ClWiki::PageController#edit as HTML
36918
+ Parameters: {"page_name"=>"NewPage"}
36919
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36920
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 257)
36921
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2215)
36922
+ Processing by ClWiki::PageController#show as HTML
36923
+ Redirected to http://test.host/wiki/FrontPage
36924
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36925
+ Completed 302 Found in 1ms (Allocations: 523)
36926
+ Processing by ClWiki::PageController#show as HTML
36927
+ Redirected to http://test.host/wiki/FrontPage
36928
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36929
+ Completed 302 Found in 1ms (Allocations: 452)
36930
+ Processing by ClWiki::PageController#show as HTML
36931
+ Redirected to http://test.host/wiki/FrontPage
36932
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36933
+ Completed 302 Found in 1ms (Allocations: 523)
36934
+ Processing by ClWiki::PageController#show as HTML
36935
+ Redirected to http://test.host/wiki/FrontPage
36936
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36937
+ Completed 302 Found in 1ms (Allocations: 452)
36938
+ Processing by ClWiki::PageController#show as HTML
36939
+ Redirected to http://test.host/wiki/FrontPage
36940
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36941
+ Completed 302 Found in 2ms (Allocations: 523)
36942
+ Processing by ClWiki::PageController#show as HTML
36943
+ Redirected to http://test.host/wiki/FrontPage
36944
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36945
+ Completed 302 Found in 1ms (Allocations: 452)
36946
+ Processing by ClWiki::PageController#show as HTML
36947
+ Completed 500 Internal Server Error in 2ms (Allocations: 612)
36948
+ Processing by ClWiki::PageController#show as HTML
36949
+ Completed 500 Internal Server Error in 1ms (Allocations: 603)
36950
+ Processing by ClWiki::PageController#show as HTML
36951
+ Completed 500 Internal Server Error in 1ms (Allocations: 603)
36952
+ Processing by ClWiki::PageController#edit as HTML
36953
+ Parameters: {"page_name"=>"NewPage"}
36954
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
36955
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 2.0ms | Allocations: 804)
36956
+ Completed 200 OK in 74ms (Views: 46.4ms | Allocations: 25119)
36957
+ Processing by ClWiki::PageController#show as HTML
36958
+ Redirected to http://test.host/wiki/FrontPage
36959
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
36960
+ Completed 302 Found in 1ms (Allocations: 322)
36961
+ Processing by ClWiki::PageController#show as HTML
36962
+ Completed 500 Internal Server Error in 1ms (Allocations: 498)
36963
+ Processing by ClWiki::PageController#show as HTML
36964
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36965
+ Processing by ClWiki::PageController#show as HTML
36966
+ Completed 500 Internal Server Error in 5ms (Allocations: 487)
36967
+ Processing by ClWiki::PageController#show as HTML
36968
+ Completed 500 Internal Server Error in 2ms (Allocations: 487)
36969
+ Processing by ClWiki::PageController#show as HTML
36970
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36971
+ Processing by ClWiki::PageController#show as HTML
36972
+ Completed 500 Internal Server Error in 3ms (Allocations: 487)
36973
+ Processing by ClWiki::PageController#show as HTML
36974
+ Completed 500 Internal Server Error in 3ms (Allocations: 487)
36975
+ Processing by ClWiki::PageController#show as HTML
36976
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36977
+ Processing by ClWiki::PageController#show as HTML
36978
+ Completed 500 Internal Server Error in 2ms (Allocations: 487)
36979
+ Processing by ClWiki::PageController#show as HTML
36980
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36981
+ Processing by ClWiki::PageController#show as HTML
36982
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36983
+ Processing by ClWiki::PageController#show as HTML
36984
+ Completed 500 Internal Server Error in 2ms (Allocations: 487)
36985
+ Processing by ClWiki::PageController#show as HTML
36986
+ Completed 500 Internal Server Error in 2ms (Allocations: 487)
36987
+ Processing by ClWiki::PageController#show as HTML
36988
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36989
+ Processing by ClWiki::PageController#show as HTML
36990
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36991
+ Processing by ClWiki::PageController#show as HTML
36992
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36993
+ Processing by ClWiki::PageController#show as HTML
36994
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36995
+ Processing by ClWiki::PageController#show as HTML
36996
+ Completed 500 Internal Server Error in 1ms (Allocations: 487)
36997
+ Processing by ClWiki::PageController#show as HTML
36998
+ Redirected to http://test.host/wiki/FrontPage
36999
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37000
+ Completed 302 Found in 1ms (Allocations: 449)
37001
+ Processing by ClWiki::PageController#edit as HTML
37002
+ Parameters: {"page_name"=>"NewPage"}
37003
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37004
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 2.6ms | Allocations: 802)
37005
+ Completed 200 OK in 88ms (Views: 51.0ms | Allocations: 25288)
37006
+ Processing by ClWiki::PageController#show as HTML
37007
+ Redirected to http://test.host/wiki/FrontPage
37008
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37009
+ Completed 302 Found in 2ms (Allocations: 411)
37010
+ Processing by ClWiki::PageController#edit as HTML
37011
+ Parameters: {"page_name"=>"DoNotKillMe"}
37012
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37013
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 406)
37014
+ Completed 200 OK in 6ms (Views: 3.9ms | Allocations: 2906)
37015
+ Processing by ClWiki::PageController#update as HTML
37016
+ Parameters: {"client_mod_time"=>"1580709347", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
37017
+ Redirected to http://test.host/wiki/DoNotKillMe
37018
+ Completed 302 Found in 2ms (Views: 3.9ms | Allocations: 1462)
37019
+ Processing by ClWiki::PageController#show as HTML
37020
+ Redirected to http://test.host/wiki/FrontPage
37021
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37022
+ Completed 302 Found in 1ms (Allocations: 410)
37023
+ Processing by ClWiki::PageController#find as HTML
37024
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37025
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.8ms | Allocations: 478)
37026
+ Completed 200 OK in 8ms (Views: 6.4ms | Allocations: 2616)
37027
+ Processing by ClWiki::PageController#show as HTML
37028
+ Redirected to http://test.host/wiki/FrontPage
37029
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37030
+ Completed 302 Found in 3ms (Allocations: 410)
37031
+ Processing by ClWiki::PageController#edit as HTML
37032
+ Parameters: {"page_name"=>"NewEncryptedPage"}
37033
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37034
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.8ms | Allocations: 314)
37035
+ Completed 200 OK in 9ms (Views: 5.4ms | Allocations: 2398)
37036
+ Processing by ClWiki::PageController#update as HTML
37037
+ Parameters: {"client_mod_time"=>"1580450147", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37038
+ Redirected to http://test.host/wiki/NewEncryptedPage
37039
+ Completed 302 Found in 5ms (Views: 5.4ms | Allocations: 1435)
37040
+ Processing by ClWiki::PageController#update as HTML
37041
+ Parameters: {"client_mod_time"=>"1580450147", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37042
+ Redirected to http://test.host/wiki/NewEncryptedPage
37043
+ Completed 302 Found in 4ms (Views: 5.4ms | Allocations: 1135)
37044
+ Processing by ClWiki::PageController#show as HTML
37045
+ Redirected to http://test.host/wiki/FrontPage
37046
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37047
+ Completed 302 Found in 2ms (Allocations: 410)
37048
+ Processing by ClWiki::PageController#edit as HTML
37049
+ Parameters: {"page_name"=>"NewPage"}
37050
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37051
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.6ms | Allocations: 313)
37052
+ Completed 200 OK in 9ms (Views: 6.4ms | Allocations: 2396)
37053
+ Processing by ClWiki::PageController#update as HTML
37054
+ Parameters: {"client_mod_time"=>"1580450147", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
37055
+ Redirected to http://test.host/wiki/NewPage
37056
+ Completed 302 Found in 2ms (Views: 6.4ms | Allocations: 987)
37057
+ Processing by ClWiki::PageController#show as HTML
37058
+ Redirected to http://test.host/wiki/FrontPage
37059
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37060
+ Completed 302 Found in 3ms (Allocations: 410)
37061
+ Processing by ClWiki::PageController#show as HTML
37062
+ Parameters: {"page_name"=>"NewPage"}
37063
+ Redirected to http://test.host/wiki/FrontPage
37064
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37065
+ Completed 302 Found in 4ms (Allocations: 421)
37066
+ Processing by ClWiki::PageController#show as HTML
37067
+ Redirected to http://test.host/wiki/FrontPage
37068
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37069
+ Completed 302 Found in 2ms (Allocations: 410)
37070
+ Processing by ClWiki::PageController#recent as HTML
37071
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37072
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 185)
37073
+ Completed 200 OK in 8ms (Views: 2.1ms | Allocations: 3949)
37074
+ Processing by ClWiki::PageController#show as HTML
37075
+ Redirected to http://test.host/wiki/FrontPage
37076
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37077
+ Completed 302 Found in 1ms (Allocations: 410)
37078
+ Processing by ClWiki::PageController#edit as HTML
37079
+ Parameters: {"page_name"=>"NewPage"}
37080
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37081
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 317)
37082
+ Completed 200 OK in 3ms (Views: 2.1ms | Allocations: 2401)
37083
+ Processing by ClWiki::PageController#update as HTML
37084
+ Parameters: {"client_mod_time"=>"1580450147", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
37085
+ Redirected to http://test.host/wiki/NewPage/edit
37086
+ Completed 302 Found in 2ms (Views: 2.1ms | Allocations: 986)
37087
+ Processing by ClWiki::PageController#show as HTML
37088
+ Redirected to http://test.host/wiki/FrontPage
37089
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37090
+ Completed 302 Found in 1ms (Allocations: 410)
37091
+ Processing by ClWiki::PageController#find as HTML
37092
+ Parameters: {"search_text"=>"sheep"}
37093
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37094
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 193)
37095
+ Completed 200 OK in 4ms (Views: 3.3ms | Allocations: 2152)
37096
+ Processing by ClWiki::PageController#show as HTML
37097
+ Redirected to http://test.host/wiki/FrontPage
37098
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37099
+ Completed 302 Found in 1ms (Allocations: 410)
37100
+ Processing by ClWiki::PageController#show as HTML
37101
+ Redirected to http://test.host/wiki/FrontPage
37102
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37103
+ Completed 302 Found in 1ms (Allocations: 467)
37104
+ Processing by ClWiki::PageController#show as HTML
37105
+ Redirected to http://test.host/wiki/FrontPage
37106
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37107
+ Completed 302 Found in 1ms (Allocations: 410)
37108
+ Processing by ClWiki::PageController#edit as HTML
37109
+ Parameters: {"page_name"=>"ANewPage"}
37110
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37111
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 313)
37112
+ Completed 200 OK in 5ms (Views: 2.8ms | Allocations: 2396)
37113
+ Processing by ClWiki::PageController#edit as HTML
37114
+ Parameters: {"page_name"=>"AnotherNewPage"}
37115
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37116
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 311)
37117
+ Completed 200 OK in 3ms (Views: 1.5ms | Allocations: 2389)
37118
+ Processing by ClWiki::PageController#show as HTML
37119
+ Redirected to http://test.host/wiki/FrontPage
37120
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37121
+ Completed 302 Found in 1ms (Allocations: 410)
37122
+ Processing by ClWiki::PageController#show as HTML
37123
+ Parameters: {"page_name"=>"NewPage"}
37124
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37125
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 96)
37126
+ Completed 200 OK in 6ms (Views: 3.1ms | Allocations: 2687)
37127
+ Processing by ClWiki::PageController#show as HTML
37128
+ Redirected to http://test.host/wiki/FrontPage
37129
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37130
+ Completed 302 Found in 1ms (Allocations: 410)
37131
+ Processing by ClWiki::PageController#edit as HTML
37132
+ Parameters: {"page_name"=>"DoNotKillMe"}
37133
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37134
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 405)
37135
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2902)
37136
+ Processing by ClWiki::PageController#show as HTML
37137
+ Redirected to http://test.host/wiki/FrontPage
37138
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37139
+ Completed 302 Found in 1ms (Allocations: 410)
37140
+ Processing by ClWiki::PageController#show as HTML
37141
+ Parameters: {"page_name"=>"SourcePage"}
37142
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37143
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
37144
+ Completed 200 OK in 4ms (Views: 2.0ms | Allocations: 2330)
37145
+ Processing by ClWiki::PageController#show as HTML
37146
+ Redirected to http://test.host/wiki/FrontPage
37147
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37148
+ Completed 302 Found in 1ms (Allocations: 410)
37149
+ Processing by ClWiki::PageController#edit as HTML
37150
+ Parameters: {"page_name"=>"NewPage"}
37151
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37152
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
37153
+ Completed 200 OK in 3ms (Views: 2.2ms | Allocations: 2397)
37154
+ Processing by ClWiki::PageController#show as HTML
37155
+ Redirected to http://test.host/wiki/FrontPage
37156
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37157
+ Completed 302 Found in 1ms (Allocations: 410)
37158
+ Processing by ClWiki::PageController#show as HTML
37159
+ Redirected to http://test.host/wiki/FrontPage
37160
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37161
+ Completed 302 Found in 1ms (Allocations: 409)
37162
+ Processing by ClWiki::PageController#show as HTML
37163
+ Redirected to http://test.host/wiki/FrontPage
37164
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37165
+ Completed 302 Found in 3ms (Allocations: 410)
37166
+ Processing by ClWiki::PageController#show as HTML
37167
+ Parameters: {"page_name"=>"notavalidname"}
37168
+ Redirected to http://test.host/wiki/FrontPage
37169
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37170
+ Completed 302 Found in 1ms (Allocations: 407)
37171
+ Processing by ClWiki::PageController#show as HTML
37172
+ Redirected to http://test.host/wiki/FrontPage
37173
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37174
+ Completed 302 Found in 1ms (Allocations: 410)
37175
+ Processing by ClWiki::PageController#recent as HTML
37176
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37177
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
37178
+ Completed 200 OK in 4ms (Views: 1.7ms | Allocations: 2394)
37179
+ Processing by ClWiki::PageController#show as HTML
37180
+ Redirected to http://test.host/wiki/FrontPage
37181
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37182
+ Completed 302 Found in 1ms (Allocations: 410)
37183
+ Processing by ClWiki::PageController#recent as RSS
37184
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
37185
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 11.8ms | Allocations: 3173)
37186
+ Completed 200 OK in 15ms (Views: 12.9ms | Allocations: 4316)
37187
+ Processing by ClWiki::PageController#edit as HTML
37188
+ Parameters: {"page_name"=>"NewPage"}
37189
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37190
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.6ms | Allocations: 804)
37191
+ Completed 200 OK in 66ms (Views: 36.9ms | Allocations: 25225)
37192
+ Processing by ClWiki::PageController#show as HTML
37193
+ Redirected to http://test.host/wiki/FrontPage
37194
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37195
+ Completed 302 Found in 1ms (Allocations: 322)
37196
+ Processing by ClWiki::PageController#show as HTML
37197
+ Redirected to http://test.host/wiki/FrontPage
37198
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37199
+ Completed 302 Found in 2ms (Allocations: 411)
37200
+ Processing by ClWiki::PageController#show as HTML
37201
+ Parameters: {"page_name"=>"notavalidname"}
37202
+ Redirected to http://test.host/wiki/FrontPage
37203
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37204
+ Completed 302 Found in 2ms (Allocations: 407)
37205
+ Processing by ClWiki::PageController#show as HTML
37206
+ Redirected to http://test.host/wiki/FrontPage
37207
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37208
+ Completed 302 Found in 34ms (Allocations: 410)
37209
+ Processing by ClWiki::PageController#show as HTML
37210
+ Parameters: {"page_name"=>"SourcePage"}
37211
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37212
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 96)
37213
+ Completed 200 OK in 17ms (Views: 11.2ms | Allocations: 3483)
37214
+ Processing by ClWiki::PageController#show as HTML
37215
+ Redirected to http://test.host/wiki/FrontPage
37216
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37217
+ Completed 302 Found in 1ms (Allocations: 410)
37218
+ Processing by ClWiki::PageController#edit as HTML
37219
+ Parameters: {"page_name"=>"NewEncryptedPage"}
37220
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37221
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 319)
37222
+ Completed 200 OK in 4ms (Views: 2.6ms | Allocations: 2403)
37223
+ Processing by ClWiki::PageController#update as HTML
37224
+ Parameters: {"client_mod_time"=>"1580450170", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37225
+ Redirected to http://test.host/wiki/NewEncryptedPage
37226
+ Completed 302 Found in 3ms (Views: 2.6ms | Allocations: 1435)
37227
+ Processing by ClWiki::PageController#update as HTML
37228
+ Parameters: {"client_mod_time"=>"1580450170", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37229
+ Redirected to http://test.host/wiki/NewEncryptedPage
37230
+ Completed 302 Found in 4ms (Views: 2.6ms | Allocations: 1135)
37231
+ Processing by ClWiki::PageController#show as HTML
37232
+ Redirected to http://test.host/wiki/FrontPage
37233
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37234
+ Completed 302 Found in 2ms (Allocations: 410)
37235
+ Processing by ClWiki::PageController#find as HTML
37236
+ Parameters: {"search_text"=>"sheep"}
37237
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37238
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.6ms | Allocations: 478)
37239
+ Completed 200 OK in 8ms (Views: 6.0ms | Allocations: 2669)
37240
+ Processing by ClWiki::PageController#show as HTML
37241
+ Redirected to http://test.host/wiki/FrontPage
37242
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37243
+ Completed 302 Found in 1ms (Allocations: 410)
37244
+ Processing by ClWiki::PageController#edit as HTML
37245
+ Parameters: {"page_name"=>"ANewPage"}
37246
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37247
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 314)
37248
+ Completed 200 OK in 6ms (Views: 4.0ms | Allocations: 2398)
37249
+ Processing by ClWiki::PageController#edit as HTML
37250
+ Parameters: {"page_name"=>"AnotherNewPage"}
37251
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37252
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 311)
37253
+ Completed 200 OK in 6ms (Views: 4.2ms | Allocations: 2389)
37254
+ Processing by ClWiki::PageController#show as HTML
37255
+ Redirected to http://test.host/wiki/FrontPage
37256
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37257
+ Completed 302 Found in 2ms (Allocations: 410)
37258
+ Processing by ClWiki::PageController#edit as HTML
37259
+ Parameters: {"page_name"=>"DoNotKillMe"}
37260
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37261
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.2ms | Allocations: 401)
37262
+ Completed 200 OK in 9ms (Views: 6.4ms | Allocations: 2900)
37263
+ Processing by ClWiki::PageController#update as HTML
37264
+ Parameters: {"client_mod_time"=>"1580709370", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
37265
+ Redirected to http://test.host/wiki/DoNotKillMe
37266
+ Completed 302 Found in 6ms (Views: 6.4ms | Allocations: 1461)
37267
+ Processing by ClWiki::PageController#show as HTML
37268
+ Redirected to http://test.host/wiki/FrontPage
37269
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37270
+ Completed 302 Found in 1ms (Allocations: 410)
37271
+ Processing by ClWiki::PageController#recent as RSS
37272
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
37273
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 8.0ms | Allocations: 3175)
37274
+ Completed 200 OK in 11ms (Views: 9.0ms | Allocations: 4329)
37275
+ Processing by ClWiki::PageController#show as HTML
37276
+ Redirected to http://test.host/wiki/FrontPage
37277
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37278
+ Completed 302 Found in 1ms (Allocations: 410)
37279
+ Processing by ClWiki::PageController#show as HTML
37280
+ Parameters: {"page_name"=>"NewPage"}
37281
+ Redirected to http://test.host/wiki/FrontPage
37282
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37283
+ Completed 302 Found in 1ms (Allocations: 421)
37284
+ Processing by ClWiki::PageController#show as HTML
37285
+ Redirected to http://test.host/wiki/FrontPage
37286
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37287
+ Completed 302 Found in 1ms (Allocations: 410)
37288
+ Processing by ClWiki::PageController#recent as HTML
37289
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37290
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 168)
37291
+ Completed 200 OK in 4ms (Views: 2.1ms | Allocations: 2772)
37292
+ Processing by ClWiki::PageController#show as HTML
37293
+ Redirected to http://test.host/wiki/FrontPage
37294
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37295
+ Completed 302 Found in 1ms (Allocations: 410)
37296
+ Processing by ClWiki::PageController#edit as HTML
37297
+ Parameters: {"page_name"=>"DoNotKillMe"}
37298
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37299
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 405)
37300
+ Completed 200 OK in 4ms (Views: 2.4ms | Allocations: 2902)
37301
+ Processing by ClWiki::PageController#show as HTML
37302
+ Redirected to http://test.host/wiki/FrontPage
37303
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37304
+ Completed 302 Found in 1ms (Allocations: 410)
37305
+ Processing by ClWiki::PageController#show as HTML
37306
+ Parameters: {"page_name"=>"NewPage"}
37307
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37308
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
37309
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2368)
37310
+ Processing by ClWiki::PageController#show as HTML
37311
+ Redirected to http://test.host/wiki/FrontPage
37312
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37313
+ Completed 302 Found in 1ms (Allocations: 410)
37314
+ Processing by ClWiki::PageController#show as HTML
37315
+ Redirected to http://test.host/wiki/FrontPage
37316
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37317
+ Completed 302 Found in 1ms (Allocations: 467)
37318
+ Processing by ClWiki::PageController#show as HTML
37319
+ Redirected to http://test.host/wiki/FrontPage
37320
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37321
+ Completed 302 Found in 1ms (Allocations: 410)
37322
+ Processing by ClWiki::PageController#edit as HTML
37323
+ Parameters: {"page_name"=>"NewPage"}
37324
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37325
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
37326
+ Completed 200 OK in 4ms (Views: 2.1ms | Allocations: 2397)
37327
+ Processing by ClWiki::PageController#update as HTML
37328
+ Parameters: {"client_mod_time"=>"1580450170", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
37329
+ Redirected to http://test.host/wiki/NewPage
37330
+ Completed 302 Found in 2ms (Views: 2.1ms | Allocations: 987)
37331
+ Processing by ClWiki::PageController#show as HTML
37332
+ Redirected to http://test.host/wiki/FrontPage
37333
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37334
+ Completed 302 Found in 1ms (Allocations: 410)
37335
+ Processing by ClWiki::PageController#find as HTML
37336
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37337
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 187)
37338
+ Completed 200 OK in 3ms (Views: 2.7ms | Allocations: 2091)
37339
+ Processing by ClWiki::PageController#show as HTML
37340
+ Redirected to http://test.host/wiki/FrontPage
37341
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37342
+ Completed 302 Found in 1ms (Allocations: 410)
37343
+ Processing by ClWiki::PageController#show as HTML
37344
+ Redirected to http://test.host/wiki/FrontPage
37345
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37346
+ Completed 302 Found in 1ms (Allocations: 409)
37347
+ Processing by ClWiki::PageController#show as HTML
37348
+ Redirected to http://test.host/wiki/FrontPage
37349
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37350
+ Completed 302 Found in 2ms (Allocations: 410)
37351
+ Processing by ClWiki::PageController#edit as HTML
37352
+ Parameters: {"page_name"=>"NewPage"}
37353
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37354
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
37355
+ Completed 200 OK in 5ms (Views: 2.6ms | Allocations: 2397)
37356
+ Processing by ClWiki::PageController#show as HTML
37357
+ Redirected to http://test.host/wiki/FrontPage
37358
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37359
+ Completed 302 Found in 2ms (Allocations: 410)
37360
+ Processing by ClWiki::PageController#edit as HTML
37361
+ Parameters: {"page_name"=>"NewPage"}
37362
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37363
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 314)
37364
+ Completed 200 OK in 7ms (Views: 3.7ms | Allocations: 2397)
37365
+ Processing by ClWiki::PageController#update as HTML
37366
+ Parameters: {"client_mod_time"=>"1580450170", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
37367
+ Redirected to http://test.host/wiki/NewPage/edit
37368
+ Completed 302 Found in 2ms (Views: 3.7ms | Allocations: 986)
37369
+ Processing by ClWiki::PageController#show as HTML
37370
+ Redirected to http://test.host/wiki/FrontPage
37371
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37372
+ Completed 302 Found in 2ms (Allocations: 410)
37373
+ Processing by ClWiki::PageController#recent as HTML
37374
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37375
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
37376
+ Completed 200 OK in 5ms (Views: 1.8ms | Allocations: 2730)
37377
+ Processing by ClWiki::PageController#show as HTML
37378
+ Redirected to http://test.host/wiki/FrontPage
37379
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37380
+ Completed 302 Found in 1ms (Allocations: 555)
37381
+ Processing by ClWiki::PageController#edit as HTML
37382
+ Parameters: {"page_name"=>"DoNotKillMe"}
37383
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37384
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.7ms | Allocations: 947)
37385
+ Completed 200 OK in 41ms (Views: 37.6ms | Allocations: 17983)
37386
+ Processing by ClWiki::PageController#show as HTML
37387
+ Redirected to http://test.host/wiki/FrontPage
37388
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37389
+ Completed 302 Found in 2ms (Allocations: 410)
37390
+ Processing by ClWiki::PageController#edit as HTML
37391
+ Parameters: {"page_name"=>"NewPage"}
37392
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37393
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 317)
37394
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2401)
37395
+ Processing by ClWiki::PageController#update as HTML
37396
+ Parameters: {"client_mod_time"=>"1580450192", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
37397
+ Redirected to http://test.host/wiki/NewPage
37398
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 988)
37399
+ Processing by ClWiki::PageController#show as HTML
37400
+ Redirected to http://test.host/wiki/FrontPage
37401
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37402
+ Completed 302 Found in 4ms (Allocations: 410)
37403
+ Processing by ClWiki::PageController#show as HTML
37404
+ Parameters: {"page_name"=>"NewPage"}
37405
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37406
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 96)
37407
+ Completed 200 OK in 9ms (Views: 2.7ms | Allocations: 3521)
37408
+ Processing by ClWiki::PageController#show as HTML
37409
+ Redirected to http://test.host/wiki/FrontPage
37410
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37411
+ Completed 302 Found in 1ms (Allocations: 410)
37412
+ Processing by ClWiki::PageController#edit as HTML
37413
+ Parameters: {"page_name"=>"NewEncryptedPage"}
37414
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37415
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 317)
37416
+ Completed 200 OK in 4ms (Views: 3.2ms | Allocations: 2402)
37417
+ Processing by ClWiki::PageController#update as HTML
37418
+ Parameters: {"client_mod_time"=>"1580450192", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37419
+ Redirected to http://test.host/wiki/NewEncryptedPage
37420
+ Completed 302 Found in 6ms (Views: 3.2ms | Allocations: 1435)
37421
+ Processing by ClWiki::PageController#update as HTML
37422
+ Parameters: {"client_mod_time"=>"1580450192", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37423
+ Redirected to http://test.host/wiki/NewEncryptedPage
37424
+ Completed 302 Found in 29ms (Views: 3.2ms | Allocations: 1135)
37425
+ Processing by ClWiki::PageController#show as HTML
37426
+ Redirected to http://test.host/wiki/FrontPage
37427
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37428
+ Completed 302 Found in 2ms (Allocations: 410)
37429
+ Processing by ClWiki::PageController#show as HTML
37430
+ Parameters: {"page_name"=>"SourcePage"}
37431
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37432
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
37433
+ Completed 200 OK in 10ms (Views: 6.9ms | Allocations: 2330)
37434
+ Processing by ClWiki::PageController#show as HTML
37435
+ Redirected to http://test.host/wiki/FrontPage
37436
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37437
+ Completed 302 Found in 2ms (Allocations: 410)
37438
+ Processing by ClWiki::PageController#show as HTML
37439
+ Parameters: {"page_name"=>"notavalidname"}
37440
+ Redirected to http://test.host/wiki/FrontPage
37441
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37442
+ Completed 302 Found in 1ms (Allocations: 407)
37443
+ Processing by ClWiki::PageController#show as HTML
37444
+ Redirected to http://test.host/wiki/FrontPage
37445
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37446
+ Completed 302 Found in 2ms (Allocations: 410)
37447
+ Processing by ClWiki::PageController#edit as HTML
37448
+ Parameters: {"page_name"=>"NewPage"}
37449
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37450
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 2.1ms | Allocations: 313)
37451
+ Completed 200 OK in 8ms (Views: 5.7ms | Allocations: 2396)
37452
+ Processing by ClWiki::PageController#show as HTML
37453
+ Redirected to http://test.host/wiki/FrontPage
37454
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37455
+ Completed 302 Found in 2ms (Allocations: 410)
37456
+ Processing by ClWiki::PageController#edit as HTML
37457
+ Parameters: {"page_name"=>"ANewPage"}
37458
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37459
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 313)
37460
+ Completed 200 OK in 11ms (Views: 9.0ms | Allocations: 2396)
37461
+ Processing by ClWiki::PageController#edit as HTML
37462
+ Parameters: {"page_name"=>"AnotherNewPage"}
37463
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37464
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.3ms | Allocations: 311)
37465
+ Completed 200 OK in 9ms (Views: 6.4ms | Allocations: 2389)
37466
+ Processing by ClWiki::PageController#show as HTML
37467
+ Redirected to http://test.host/wiki/FrontPage
37468
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37469
+ Completed 302 Found in 2ms (Allocations: 410)
37470
+ Processing by ClWiki::PageController#edit as HTML
37471
+ Parameters: {"page_name"=>"NewPage"}
37472
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37473
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
37474
+ Completed 200 OK in 6ms (Views: 4.0ms | Allocations: 2398)
37475
+ Processing by ClWiki::PageController#update as HTML
37476
+ Parameters: {"client_mod_time"=>"1580450192", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
37477
+ Redirected to http://test.host/wiki/NewPage/edit
37478
+ Completed 302 Found in 3ms (Views: 4.0ms | Allocations: 986)
37479
+ Processing by ClWiki::PageController#show as HTML
37480
+ Redirected to http://test.host/wiki/FrontPage
37481
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37482
+ Completed 302 Found in 1ms (Allocations: 410)
37483
+ Processing by ClWiki::PageController#recent as HTML
37484
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37485
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 170)
37486
+ Completed 200 OK in 5ms (Views: 2.5ms | Allocations: 2786)
37487
+ Processing by ClWiki::PageController#show as HTML
37488
+ Redirected to http://test.host/wiki/FrontPage
37489
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37490
+ Completed 302 Found in 1ms (Allocations: 410)
37491
+ Processing by ClWiki::PageController#recent as HTML
37492
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37493
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.2ms | Allocations: 44)
37494
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2731)
37495
+ Processing by ClWiki::PageController#show as HTML
37496
+ Redirected to http://test.host/wiki/FrontPage
37497
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37498
+ Completed 302 Found in 1ms (Allocations: 410)
37499
+ Processing by ClWiki::PageController#recent as RSS
37500
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
37501
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 9.6ms | Allocations: 3174)
37502
+ Completed 200 OK in 13ms (Views: 10.7ms | Allocations: 4318)
37503
+ Processing by ClWiki::PageController#show as HTML
37504
+ Redirected to http://test.host/wiki/FrontPage
37505
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37506
+ Completed 302 Found in 1ms (Allocations: 410)
37507
+ Processing by ClWiki::PageController#show as HTML
37508
+ Redirected to http://test.host/wiki/FrontPage
37509
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37510
+ Completed 302 Found in 1ms (Allocations: 467)
37511
+ Processing by ClWiki::PageController#show as HTML
37512
+ Redirected to http://test.host/wiki/FrontPage
37513
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37514
+ Completed 302 Found in 1ms (Allocations: 410)
37515
+ Processing by ClWiki::PageController#find as HTML
37516
+ Parameters: {"search_text"=>"sheep"}
37517
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37518
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 480)
37519
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2672)
37520
+ Processing by ClWiki::PageController#show as HTML
37521
+ Redirected to http://test.host/wiki/FrontPage
37522
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37523
+ Completed 302 Found in 2ms (Allocations: 410)
37524
+ Processing by ClWiki::PageController#show as HTML
37525
+ Parameters: {"page_name"=>"NewPage"}
37526
+ Redirected to http://test.host/wiki/FrontPage
37527
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37528
+ Completed 302 Found in 1ms (Allocations: 421)
37529
+ Processing by ClWiki::PageController#show as HTML
37530
+ Redirected to http://test.host/wiki/FrontPage
37531
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37532
+ Completed 302 Found in 2ms (Allocations: 410)
37533
+ Processing by ClWiki::PageController#find as HTML
37534
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37535
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 185)
37536
+ Completed 200 OK in 5ms (Views: 3.3ms | Allocations: 2090)
37537
+ Processing by ClWiki::PageController#show as HTML
37538
+ Redirected to http://test.host/wiki/FrontPage
37539
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37540
+ Completed 302 Found in 1ms (Allocations: 410)
37541
+ Processing by ClWiki::PageController#show as HTML
37542
+ Redirected to http://test.host/wiki/FrontPage
37543
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37544
+ Completed 302 Found in 1ms (Allocations: 409)
37545
+ Processing by ClWiki::PageController#show as HTML
37546
+ Redirected to http://test.host/wiki/FrontPage
37547
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37548
+ Completed 302 Found in 1ms (Allocations: 410)
37549
+ Processing by ClWiki::PageController#edit as HTML
37550
+ Parameters: {"page_name"=>"DoNotKillMe"}
37551
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37552
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 402)
37553
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2898)
37554
+ Processing by ClWiki::PageController#update as HTML
37555
+ Parameters: {"client_mod_time"=>"1580709393", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
37556
+ Redirected to http://test.host/wiki/DoNotKillMe
37557
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 1461)
37558
+ Processing by ClWiki::PageController#edit as HTML
37559
+ Parameters: {"page_name"=>"NewPage"}
37560
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37561
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 257)
37562
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2221)
37563
+ Processing by ClWiki::PageController#show as HTML
37564
+ Redirected to http://test.host/wiki/FrontPage
37565
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37566
+ Completed 302 Found in 1ms (Allocations: 305)
37567
+ Processing by ClWiki::PageController#show as HTML
37568
+ Redirected to http://test.host/wiki/FrontPage
37569
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37570
+ Completed 302 Found in 1ms (Allocations: 555)
37571
+ Processing by ClWiki::PageController#edit as HTML
37572
+ Parameters: {"page_name"=>"DoNotKillMe"}
37573
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37574
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.6ms | Allocations: 947)
37575
+ Completed 200 OK in 47ms (Views: 43.9ms | Allocations: 17990)
37576
+ Processing by ClWiki::PageController#update as HTML
37577
+ Parameters: {"client_mod_time"=>"1580709428", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
37578
+ Redirected to http://test.host/wiki/DoNotKillMe
37579
+ Completed 302 Found in 3ms (Views: 43.9ms | Allocations: 1462)
37580
+ Processing by ClWiki::PageController#show as HTML
37581
+ Redirected to http://test.host/wiki/FrontPage
37582
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37583
+ Completed 302 Found in 1ms (Allocations: 410)
37584
+ Processing by ClWiki::PageController#show as HTML
37585
+ Parameters: {"page_name"=>"notavalidname"}
37586
+ Redirected to http://test.host/wiki/FrontPage
37587
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37588
+ Completed 302 Found in 1ms (Allocations: 407)
37589
+ Processing by ClWiki::PageController#show as HTML
37590
+ Redirected to http://test.host/wiki/FrontPage
37591
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37592
+ Completed 302 Found in 1ms (Allocations: 410)
37593
+ Processing by ClWiki::PageController#show as HTML
37594
+ Parameters: {"page_name"=>"NewPage"}
37595
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37596
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 96)
37597
+ Completed 200 OK in 7ms (Views: 2.8ms | Allocations: 3521)
37598
+ Processing by ClWiki::PageController#show as HTML
37599
+ Redirected to http://test.host/wiki/FrontPage
37600
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37601
+ Completed 302 Found in 2ms (Allocations: 410)
37602
+ Processing by ClWiki::PageController#show as HTML
37603
+ Redirected to http://test.host/wiki/FrontPage
37604
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37605
+ Completed 302 Found in 1ms (Allocations: 409)
37606
+ Processing by ClWiki::PageController#show as HTML
37607
+ Redirected to http://test.host/wiki/FrontPage
37608
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37609
+ Completed 302 Found in 1ms (Allocations: 410)
37610
+ Processing by ClWiki::PageController#recent as HTML
37611
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37612
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 169)
37613
+ Completed 200 OK in 8ms (Views: 4.8ms | Allocations: 2783)
37614
+ Processing by ClWiki::PageController#show as HTML
37615
+ Redirected to http://test.host/wiki/FrontPage
37616
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37617
+ Completed 302 Found in 1ms (Allocations: 410)
37618
+ Processing by ClWiki::PageController#edit as HTML
37619
+ Parameters: {"page_name"=>"NewPage"}
37620
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37621
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 317)
37622
+ Completed 200 OK in 7ms (Views: 4.9ms | Allocations: 2401)
37623
+ Processing by ClWiki::PageController#update as HTML
37624
+ Parameters: {"client_mod_time"=>"1580450229", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
37625
+ Redirected to http://test.host/wiki/NewPage/edit
37626
+ Completed 302 Found in 3ms (Views: 4.9ms | Allocations: 986)
37627
+ Processing by ClWiki::PageController#show as HTML
37628
+ Redirected to http://test.host/wiki/FrontPage
37629
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37630
+ Completed 302 Found in 1ms (Allocations: 410)
37631
+ Processing by ClWiki::PageController#edit as HTML
37632
+ Parameters: {"page_name"=>"ANewPage"}
37633
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37634
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.2ms | Allocations: 313)
37635
+ Completed 200 OK in 7ms (Views: 4.8ms | Allocations: 2396)
37636
+ Processing by ClWiki::PageController#edit as HTML
37637
+ Parameters: {"page_name"=>"AnotherNewPage"}
37638
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37639
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 311)
37640
+ Completed 200 OK in 8ms (Views: 4.9ms | Allocations: 2389)
37641
+ Processing by ClWiki::PageController#show as HTML
37642
+ Redirected to http://test.host/wiki/FrontPage
37643
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37644
+ Completed 302 Found in 2ms (Allocations: 410)
37645
+ Processing by ClWiki::PageController#find as HTML
37646
+ Parameters: {"search_text"=>"sheep"}
37647
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37648
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.3ms | Allocations: 477)
37649
+ Completed 200 OK in 6ms (Views: 4.1ms | Allocations: 2667)
37650
+ Processing by ClWiki::PageController#show as HTML
37651
+ Redirected to http://test.host/wiki/FrontPage
37652
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37653
+ Completed 302 Found in 2ms (Allocations: 410)
37654
+ Processing by ClWiki::PageController#recent as RSS
37655
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
37656
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 8.0ms | Allocations: 3174)
37657
+ Completed 200 OK in 10ms (Views: 9.0ms | Allocations: 4321)
37658
+ Processing by ClWiki::PageController#show as HTML
37659
+ Redirected to http://test.host/wiki/FrontPage
37660
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37661
+ Completed 302 Found in 1ms (Allocations: 410)
37662
+ Processing by ClWiki::PageController#show as HTML
37663
+ Parameters: {"page_name"=>"NewPage"}
37664
+ Redirected to http://test.host/wiki/FrontPage
37665
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37666
+ Completed 302 Found in 1ms (Allocations: 421)
37667
+ Processing by ClWiki::PageController#show as HTML
37668
+ Redirected to http://test.host/wiki/FrontPage
37669
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37670
+ Completed 302 Found in 1ms (Allocations: 410)
37671
+ Processing by ClWiki::PageController#show as HTML
37672
+ Redirected to http://test.host/wiki/FrontPage
37673
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37674
+ Completed 302 Found in 1ms (Allocations: 467)
37675
+ Processing by ClWiki::PageController#show as HTML
37676
+ Redirected to http://test.host/wiki/FrontPage
37677
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37678
+ Completed 302 Found in 1ms (Allocations: 410)
37679
+ Processing by ClWiki::PageController#find as HTML
37680
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37681
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 188)
37682
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2094)
37683
+ Processing by ClWiki::PageController#show as HTML
37684
+ Redirected to http://test.host/wiki/FrontPage
37685
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37686
+ Completed 302 Found in 1ms (Allocations: 410)
37687
+ Processing by ClWiki::PageController#show as HTML
37688
+ Parameters: {"page_name"=>"SourcePage"}
37689
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37690
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
37691
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2331)
37692
+ Processing by ClWiki::PageController#show as HTML
37693
+ Redirected to http://test.host/wiki/FrontPage
37694
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37695
+ Completed 302 Found in 2ms (Allocations: 410)
37696
+ Processing by ClWiki::PageController#edit as HTML
37697
+ Parameters: {"page_name"=>"NewEncryptedPage"}
37698
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37699
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 315)
37700
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2398)
37701
+ Processing by ClWiki::PageController#update as HTML
37702
+ Parameters: {"client_mod_time"=>"1580450229", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37703
+ Redirected to http://test.host/wiki/NewEncryptedPage
37704
+ Completed 302 Found in 3ms (Views: 1.7ms | Allocations: 1435)
37705
+ Processing by ClWiki::PageController#update as HTML
37706
+ Parameters: {"client_mod_time"=>"1580450229", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
37707
+ Redirected to http://test.host/wiki/NewEncryptedPage
37708
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 1135)
37709
+ Processing by ClWiki::PageController#show as HTML
37710
+ Redirected to http://test.host/wiki/FrontPage
37711
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37712
+ Completed 302 Found in 1ms (Allocations: 410)
37713
+ Processing by ClWiki::PageController#edit as HTML
37714
+ Parameters: {"page_name"=>"DoNotKillMe"}
37715
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37716
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 401)
37717
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2897)
37718
+ Processing by ClWiki::PageController#show as HTML
37719
+ Redirected to http://test.host/wiki/FrontPage
37720
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37721
+ Completed 302 Found in 2ms (Allocations: 410)
37722
+ Processing by ClWiki::PageController#edit as HTML
37723
+ Parameters: {"page_name"=>"NewPage"}
37724
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37725
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
37726
+ Completed 200 OK in 4ms (Views: 2.3ms | Allocations: 2397)
37727
+ Processing by ClWiki::PageController#show as HTML
37728
+ Redirected to http://test.host/wiki/FrontPage
37729
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37730
+ Completed 302 Found in 1ms (Allocations: 410)
37731
+ Processing by ClWiki::PageController#edit as HTML
37732
+ Parameters: {"page_name"=>"NewPage"}
37733
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37734
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
37735
+ Completed 200 OK in 4ms (Views: 2.2ms | Allocations: 2397)
37736
+ Processing by ClWiki::PageController#update as HTML
37737
+ Parameters: {"client_mod_time"=>"1580450229", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
37738
+ Redirected to http://test.host/wiki/NewPage
37739
+ Completed 302 Found in 3ms (Views: 2.2ms | Allocations: 987)
37740
+ Processing by ClWiki::PageController#show as HTML
37741
+ Redirected to http://test.host/wiki/FrontPage
37742
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37743
+ Completed 302 Found in 1ms (Allocations: 410)
37744
+ Processing by ClWiki::PageController#recent as HTML
37745
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37746
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
37747
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2732)
37748
+ Processing by ClWiki::PageController#show as HTML
37749
+ Redirected to http://test.host/wiki/FrontPage
37750
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37751
+ Completed 302 Found in 1ms (Allocations: 305)
37752
+ Processing by ClWiki::PageController#edit as HTML
37753
+ Parameters: {"page_name"=>"NewPage"}
37754
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37755
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 257)
37756
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2221)
37757
+ Processing by ClWiki::PageController#edit as HTML
37758
+ Parameters: {"page_name"=>"NewPage"}
37759
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37760
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.6ms | Allocations: 804)
37761
+ Completed 200 OK in 71ms (Views: 39.9ms | Allocations: 25391)
37762
+ Processing by ClWiki::PageController#show as HTML
37763
+ Redirected to http://test.host/wiki/FrontPage
37764
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37765
+ Completed 302 Found in 2ms (Allocations: 322)
37766
+ Processing by ClWiki::PageController#edit as HTML
37767
+ Parameters: {"page_name"=>"DoNotKillMe"}
37768
+ Redirected to http://test.host/wiki/login
37769
+ Filter chain halted as :authorized rendered or redirected
37770
+ Completed 302 Found in 1ms (Allocations: 283)
37771
+ Processing by ClWiki::PageController#show as HTML
37772
+ Redirected to http://test.host/wiki/login
37773
+ Filter chain halted as :authorized rendered or redirected
37774
+ Completed 302 Found in 1ms (Allocations: 230)
37775
+ Processing by ClWiki::PageController#recent as HTML
37776
+ Redirected to http://test.host/wiki/login
37777
+ Filter chain halted as :authorized rendered or redirected
37778
+ Completed 302 Found in 1ms (Allocations: 230)
37779
+ Processing by ClWiki::PageController#show as HTML
37780
+ Parameters: {"page_name"=>"notavalidname"}
37781
+ Redirected to http://test.host/wiki/login
37782
+ Filter chain halted as :authorized rendered or redirected
37783
+ Completed 302 Found in 0ms (Allocations: 230)
37784
+ Processing by ClWiki::PageController#show as HTML
37785
+ Redirected to http://test.host/wiki/login
37786
+ Filter chain halted as :authorized rendered or redirected
37787
+ Completed 302 Found in 2ms (Allocations: 288)
37788
+ Processing by ClWiki::PageController#recent as RSS
37789
+ Redirected to http://test.host/wiki/login
37790
+ Filter chain halted as :authorized rendered or redirected
37791
+ Completed 302 Found in 1ms (Allocations: 230)
37792
+ Processing by ClWiki::PageController#edit as HTML
37793
+ Parameters: {"page_name"=>"ANewPage"}
37794
+ Redirected to http://test.host/wiki/login
37795
+ Filter chain halted as :authorized rendered or redirected
37796
+ Completed 302 Found in 1ms (Allocations: 224)
37797
+ Processing by ClWiki::PageController#edit as HTML
37798
+ Parameters: {"page_name"=>"NewPage"}
37799
+ Redirected to http://test.host/wiki/login
37800
+ Filter chain halted as :authorized rendered or redirected
37801
+ Completed 302 Found in 1ms (Allocations: 224)
37802
+ Processing by ClWiki::PageController#edit as HTML
37803
+ Parameters: {"page_name"=>"NewPage"}
37804
+ Redirected to http://test.host/wiki/login
37805
+ Filter chain halted as :authorized rendered or redirected
37806
+ Completed 302 Found in 1ms (Allocations: 224)
37807
+ Processing by ClWiki::PageController#find as HTML
37808
+ Redirected to http://test.host/wiki/login
37809
+ Filter chain halted as :authorized rendered or redirected
37810
+ Completed 302 Found in 1ms (Allocations: 230)
37811
+ Processing by ClWiki::PageController#edit as HTML
37812
+ Parameters: {"page_name"=>"NewEncryptedPage"}
37813
+ Redirected to http://test.host/wiki/login
37814
+ Filter chain halted as :authorized rendered or redirected
37815
+ Completed 302 Found in 1ms (Allocations: 229)
37816
+ Processing by ClWiki::PageController#show as HTML
37817
+ Parameters: {"page_name"=>"SourcePage"}
37818
+ Redirected to http://test.host/wiki/login
37819
+ Filter chain halted as :authorized rendered or redirected
37820
+ Completed 302 Found in 1ms (Allocations: 230)
37821
+ Processing by ClWiki::PageController#show as HTML
37822
+ Parameters: {"page_name"=>"NewPage"}
37823
+ Redirected to http://test.host/wiki/login
37824
+ Filter chain halted as :authorized rendered or redirected
37825
+ Completed 302 Found in 1ms (Allocations: 230)
37826
+ Processing by ClWiki::PageController#show as HTML
37827
+ Parameters: {"page_name"=>"NewPage"}
37828
+ Redirected to http://test.host/wiki/login
37829
+ Filter chain halted as :authorized rendered or redirected
37830
+ Completed 302 Found in 1ms (Allocations: 230)
37831
+ Processing by ClWiki::PageController#recent as HTML
37832
+ Redirected to http://test.host/wiki/login
37833
+ Filter chain halted as :authorized rendered or redirected
37834
+ Completed 302 Found in 1ms (Allocations: 230)
37835
+ Processing by ClWiki::PageController#edit as HTML
37836
+ Parameters: {"page_name"=>"NewPage"}
37837
+ Redirected to http://test.host/wiki/login
37838
+ Filter chain halted as :authorized rendered or redirected
37839
+ Completed 302 Found in 0ms (Allocations: 224)
37840
+ Processing by ClWiki::PageController#find as HTML
37841
+ Parameters: {"search_text"=>"sheep"}
37842
+ Redirected to http://test.host/wiki/login
37843
+ Filter chain halted as :authorized rendered or redirected
37844
+ Completed 302 Found in 1ms (Allocations: 230)
37845
+ Processing by ClWiki::PageController#edit as HTML
37846
+ Parameters: {"page_name"=>"DoNotKillMe"}
37847
+ Redirected to http://test.host/wiki/login
37848
+ Filter chain halted as :authorized rendered or redirected
37849
+ Completed 302 Found in 1ms (Allocations: 282)
37850
+ Processing by ClWiki::PageController#show as HTML
37851
+ Redirected to http://test.host/wiki/FrontPage
37852
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37853
+ Completed 302 Found in 1ms (Allocations: 583)
37854
+ Processing by ClWiki::PageController#show as HTML
37855
+ Redirected to http://test.host/wiki/FrontPage
37856
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37857
+ Completed 302 Found in 2ms (Allocations: 495)
37858
+ Processing by ClWiki::PageController#show as HTML
37859
+ Redirected to http://test.host/wiki/FrontPage
37860
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37861
+ Completed 302 Found in 1ms (Allocations: 583)
37862
+ Processing by ClWiki::PageController#show as HTML
37863
+ Redirected to http://test.host/wiki/FrontPage
37864
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37865
+ Completed 302 Found in 1ms (Allocations: 495)
37866
+ Processing by ClWiki::PageController#show as HTML
37867
+ Redirected to http://test.host/wiki/FrontPage
37868
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37869
+ Completed 302 Found in 2ms (Allocations: 583)
37870
+ Processing by ClWiki::PageController#show as HTML
37871
+ Redirected to http://test.host/wiki/FrontPage
37872
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37873
+ Completed 302 Found in 2ms (Allocations: 495)
37874
+ Processing by ClWiki::PageController#show as HTML
37875
+ Redirected to http://test.host/wiki/FrontPage
37876
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37877
+ Completed 302 Found in 1ms (Allocations: 559)
37878
+ Processing by ClWiki::PageController#show as HTML
37879
+ Redirected to http://test.host/wiki/login
37880
+ Filter chain halted as :authorized rendered or redirected
37881
+ Completed 302 Found in 1ms (Allocations: 327)
37882
+ Processing by ClWiki::PageController#edit as HTML
37883
+ Parameters: {"page_name"=>"NewPage"}
37884
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37885
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 2.1ms | Allocations: 804)
37886
+ Completed 200 OK in 77ms (Views: 49.1ms | Allocations: 25110)
37887
+ Processing by ClWiki::PageController#show as HTML
37888
+ Redirected to http://test.host/wiki/FrontPage
37889
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37890
+ Completed 302 Found in 1ms (Allocations: 322)
37891
+ Processing by ClWiki::PageController#show as HTML
37892
+ Redirected to http://test.host/wiki/FrontPage
37893
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37894
+ Completed 302 Found in 1ms (Allocations: 415)
37895
+ Processing by ClWiki::PageController#recent as HTML
37896
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
37897
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 187)
37898
+ Completed 200 OK in 9ms (Views: 3.2ms | Allocations: 3958)
37899
+ Processing by ClWiki::PageController#show as HTML
37900
+ Redirected to http://test.host/wiki/FrontPage
37901
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37902
+ Completed 302 Found in 1ms (Allocations: 413)
37903
+ Processing by ClWiki::PageController#edit as HTML
37904
+ Parameters: {"page_name"=>"ANewPage"}
37905
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37906
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 319)
37907
+ Completed 200 OK in 4ms (Views: 2.5ms | Allocations: 2403)
37908
+ Processing by ClWiki::PageController#edit as HTML
37909
+ Parameters: {"page_name"=>"AnotherNewPage"}
37910
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37911
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 311)
37912
+ Completed 200 OK in 3ms (Views: 2.2ms | Allocations: 2389)
37913
+ Processing by ClWiki::PageController#show as HTML
37914
+ Redirected to http://test.host/wiki/FrontPage
37915
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37916
+ Completed 302 Found in 1ms (Allocations: 413)
37917
+ Processing by ClWiki::PageController#show as HTML
37918
+ Parameters: {"page_name"=>"notavalidname"}
37919
+ Redirected to http://test.host/wiki/FrontPage
37920
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37921
+ Completed 302 Found in 1ms (Allocations: 410)
37922
+ Processing by ClWiki::PageController#show as HTML
37923
+ Redirected to http://test.host/wiki/FrontPage
37924
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37925
+ Completed 302 Found in 4ms (Allocations: 413)
37926
+ Processing by ClWiki::PageController#recent as RSS
37927
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
37928
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 18.0ms | Allocations: 3174)
37929
+ Completed 200 OK in 22ms (Views: 19.5ms | Allocations: 4321)
37930
+ Processing by ClWiki::PageController#show as HTML
37931
+ Redirected to http://test.host/wiki/FrontPage
37932
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37933
+ Completed 302 Found in 3ms (Allocations: 413)
37934
+ Processing by ClWiki::PageController#edit as HTML
37935
+ Parameters: {"page_name"=>"DoNotKillMe"}
37936
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37937
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 404)
37938
+ Completed 200 OK in 7ms (Views: 5.1ms | Allocations: 2905)
37939
+ Processing by ClWiki::PageController#show as HTML
37940
+ Redirected to http://test.host/wiki/FrontPage
37941
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37942
+ Completed 302 Found in 2ms (Allocations: 413)
37943
+ Processing by ClWiki::PageController#show as HTML
37944
+ Parameters: {"page_name"=>"SourcePage"}
37945
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37946
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 93)
37947
+ Completed 200 OK in 8ms (Views: 4.2ms | Allocations: 2649)
37948
+ Processing by ClWiki::PageController#show as HTML
37949
+ Redirected to http://test.host/wiki/FrontPage
37950
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37951
+ Completed 302 Found in 2ms (Allocations: 413)
37952
+ Processing by ClWiki::PageController#edit as HTML
37953
+ Parameters: {"page_name"=>"NewPage"}
37954
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
37955
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 318)
37956
+ Completed 200 OK in 6ms (Views: 4.0ms | Allocations: 2402)
37957
+ Processing by ClWiki::PageController#update as HTML
37958
+ Parameters: {"client_mod_time"=>"1580450519", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
37959
+ Redirected to http://test.host/wiki/NewPage/edit
37960
+ Completed 302 Found in 8ms (Views: 4.0ms | Allocations: 986)
37961
+ Processing by ClWiki::PageController#show as HTML
37962
+ Redirected to http://test.host/wiki/FrontPage
37963
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37964
+ Completed 302 Found in 1ms (Allocations: 413)
37965
+ Processing by ClWiki::PageController#show as HTML
37966
+ Parameters: {"page_name"=>"NewPage"}
37967
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
37968
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
37969
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2372)
37970
+ Processing by ClWiki::PageController#show as HTML
37971
+ Redirected to http://test.host/wiki/FrontPage
37972
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37973
+ Completed 302 Found in 1ms (Allocations: 413)
37974
+ Processing by ClWiki::PageController#show as HTML
37975
+ Redirected to http://test.host/wiki/FrontPage
37976
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37977
+ Completed 302 Found in 1ms (Allocations: 412)
37978
+ Processing by ClWiki::PageController#show as HTML
37979
+ Redirected to http://test.host/wiki/FrontPage
37980
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37981
+ Completed 302 Found in 1ms (Allocations: 413)
37982
+ Processing by ClWiki::PageController#find as HTML
37983
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
37984
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 474)
37985
+ Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 2615)
37986
+ Processing by ClWiki::PageController#show as HTML
37987
+ Redirected to http://test.host/wiki/FrontPage
37988
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37989
+ Completed 302 Found in 1ms (Allocations: 413)
37990
+ Processing by ClWiki::PageController#show as HTML
37991
+ Parameters: {"page_name"=>"NewPage"}
37992
+ Redirected to http://test.host/wiki/FrontPage
37993
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37994
+ Completed 302 Found in 1ms (Allocations: 424)
37995
+ Processing by ClWiki::PageController#show as HTML
37996
+ Redirected to http://test.host/wiki/FrontPage
37997
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
37998
+ Completed 302 Found in 1ms (Allocations: 413)
37999
+ Processing by ClWiki::PageController#edit as HTML
38000
+ Parameters: {"page_name"=>"DoNotKillMe"}
38001
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38002
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 402)
38003
+ Completed 200 OK in 4ms (Views: 2.4ms | Allocations: 2899)
38004
+ Processing by ClWiki::PageController#update as HTML
38005
+ Parameters: {"client_mod_time"=>"1580709719", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
38006
+ Redirected to http://test.host/wiki/DoNotKillMe
38007
+ Completed 302 Found in 3ms (Views: 2.4ms | Allocations: 1461)
38008
+ Processing by ClWiki::PageController#show as HTML
38009
+ Redirected to http://test.host/wiki/FrontPage
38010
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38011
+ Completed 302 Found in 1ms (Allocations: 413)
38012
+ Processing by ClWiki::PageController#edit as HTML
38013
+ Parameters: {"page_name"=>"NewPage"}
38014
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38015
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
38016
+ Completed 200 OK in 4ms (Views: 3.2ms | Allocations: 2398)
38017
+ Processing by ClWiki::PageController#update as HTML
38018
+ Parameters: {"client_mod_time"=>"1580450519", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
38019
+ Redirected to http://test.host/wiki/NewPage
38020
+ Completed 302 Found in 3ms (Views: 3.2ms | Allocations: 987)
38021
+ Processing by ClWiki::PageController#show as HTML
38022
+ Redirected to http://test.host/wiki/FrontPage
38023
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38024
+ Completed 302 Found in 1ms (Allocations: 413)
38025
+ Processing by ClWiki::PageController#find as HTML
38026
+ Parameters: {"search_text"=>"sheep"}
38027
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
38028
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 191)
38029
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2151)
38030
+ Processing by ClWiki::PageController#show as HTML
38031
+ Redirected to http://test.host/wiki/FrontPage
38032
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38033
+ Completed 302 Found in 1ms (Allocations: 413)
38034
+ Processing by ClWiki::PageController#edit as HTML
38035
+ Parameters: {"page_name"=>"NewPage"}
38036
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38037
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
38038
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2397)
38039
+ Processing by ClWiki::PageController#show as HTML
38040
+ Redirected to http://test.host/wiki/FrontPage
38041
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38042
+ Completed 302 Found in 2ms (Allocations: 413)
38043
+ Processing by ClWiki::PageController#edit as HTML
38044
+ Parameters: {"page_name"=>"NewEncryptedPage"}
38045
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38046
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
38047
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2397)
38048
+ Processing by ClWiki::PageController#update as HTML
38049
+ Parameters: {"client_mod_time"=>"1580450519", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38050
+ Redirected to http://test.host/wiki/NewEncryptedPage
38051
+ Completed 302 Found in 4ms (Views: 1.9ms | Allocations: 1435)
38052
+ Processing by ClWiki::PageController#update as HTML
38053
+ Parameters: {"client_mod_time"=>"1580450519", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38054
+ Redirected to http://test.host/wiki/NewEncryptedPage
38055
+ Completed 302 Found in 2ms (Views: 1.9ms | Allocations: 1135)
38056
+ Processing by ClWiki::PageController#show as HTML
38057
+ Redirected to http://test.host/wiki/FrontPage
38058
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38059
+ Completed 302 Found in 1ms (Allocations: 413)
38060
+ Processing by ClWiki::PageController#show as HTML
38061
+ Redirected to http://test.host/wiki/login
38062
+ Filter chain halted as :authorized rendered or redirected
38063
+ Completed 302 Found in 0ms (Allocations: 327)
38064
+ Processing by ClWiki::PageController#show as HTML
38065
+ Redirected to http://test.host/wiki/FrontPage
38066
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38067
+ Completed 302 Found in 1ms (Allocations: 413)
38068
+ Processing by ClWiki::PageController#recent as HTML
38069
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38070
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
38071
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2397)
38072
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-02-01 20:57:49 -0600
38073
+ Processing by ClWiki::PageController#show as HTML
38074
+ Parameters: {"page_name"=>"FrontPage"}
38075
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38076
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 1.4ms | Allocations: 349)
38077
+ Completed 200 OK in 46ms (Views: 35.2ms | Allocations: 16830)
38078
+ Started GET "/wiki/" for 127.0.0.1 at 2020-02-01 20:57:49 -0600
38079
+ Processing by ClWiki::PageController#show as HTML
38080
+ Completed 500 Internal Server Error in 1ms (Allocations: 581)
38081
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-02-01 20:57:49 -0600
38082
+ Processing by ClWiki::SessionsController#new as HTML
38083
+ Completed 500 Internal Server Error in 1ms (Allocations: 638)
38084
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:57:49 -0600
38085
+ Processing by ClWiki::SessionsController#create as HTML
38086
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38087
+ Completed 500 Internal Server Error in 1ms (Allocations: 574)
38088
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:57:49 -0600
38089
+ Processing by ClWiki::SessionsController#create as HTML
38090
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38091
+ Completed 500 Internal Server Error in 1ms (Allocations: 574)
38092
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:57:49 -0600
38093
+ Processing by ClWiki::SessionsController#create as HTML
38094
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38095
+ Completed 500 Internal Server Error in 1ms (Allocations: 574)
38096
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:57:49 -0600
38097
+ Processing by ClWiki::SessionsController#create as HTML
38098
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38099
+ Completed 500 Internal Server Error in 1ms (Allocations: 574)
38100
+ Processing by ClWiki::PageController#edit as HTML
38101
+ Parameters: {"page_name"=>"NewPage"}
38102
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38103
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.3ms | Allocations: 541)
38104
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2741)
38105
+ Processing by ClWiki::PageController#show as HTML
38106
+ Redirected to http://test.host/wiki/FrontPage
38107
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38108
+ Completed 302 Found in 1ms (Allocations: 322)
38109
+ Processing by ClWiki::PageController#show as HTML
38110
+ Redirected to http://test.host/wiki/FrontPage
38111
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38112
+ Completed 302 Found in 1ms (Allocations: 414)
38113
+ Processing by ClWiki::PageController#show as HTML
38114
+ Redirected to http://test.host/wiki/login
38115
+ Filter chain halted as :authorized rendered or redirected
38116
+ Completed 302 Found in 1ms (Allocations: 327)
38117
+ Processing by ClWiki::PageController#show as HTML
38118
+ Redirected to http://test.host/wiki/FrontPage
38119
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38120
+ Completed 302 Found in 1ms (Allocations: 413)
38121
+ Processing by ClWiki::PageController#show as HTML
38122
+ Parameters: {"page_name"=>"NewPage"}
38123
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38124
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
38125
+ Completed 200 OK in 4ms (Views: 2.4ms | Allocations: 2373)
38126
+ Processing by ClWiki::PageController#show as HTML
38127
+ Redirected to http://test.host/wiki/FrontPage
38128
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38129
+ Completed 302 Found in 1ms (Allocations: 413)
38130
+ Processing by ClWiki::PageController#recent as HTML
38131
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38132
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 169)
38133
+ Completed 200 OK in 7ms (Views: 3.5ms | Allocations: 2784)
38134
+ Processing by ClWiki::PageController#show as HTML
38135
+ Redirected to http://test.host/wiki/FrontPage
38136
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38137
+ Completed 302 Found in 1ms (Allocations: 413)
38138
+ Processing by ClWiki::PageController#edit as HTML
38139
+ Parameters: {"page_name"=>"NewPage"}
38140
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38141
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 319)
38142
+ Completed 200 OK in 5ms (Views: 3.5ms | Allocations: 2403)
38143
+ Processing by ClWiki::PageController#show as HTML
38144
+ Redirected to http://test.host/wiki/FrontPage
38145
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38146
+ Completed 302 Found in 1ms (Allocations: 413)
38147
+ Processing by ClWiki::PageController#find as HTML
38148
+ Parameters: {"search_text"=>"sheep"}
38149
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
38150
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.9ms | Allocations: 477)
38151
+ Completed 200 OK in 7ms (Views: 5.2ms | Allocations: 2670)
38152
+ Processing by ClWiki::PageController#show as HTML
38153
+ Redirected to http://test.host/wiki/FrontPage
38154
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38155
+ Completed 302 Found in 1ms (Allocations: 413)
38156
+ Processing by ClWiki::PageController#edit as HTML
38157
+ Parameters: {"page_name"=>"ANewPage"}
38158
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38159
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
38160
+ Completed 200 OK in 6ms (Views: 4.0ms | Allocations: 2398)
38161
+ Processing by ClWiki::PageController#edit as HTML
38162
+ Parameters: {"page_name"=>"AnotherNewPage"}
38163
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38164
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 311)
38165
+ Completed 200 OK in 5ms (Views: 3.7ms | Allocations: 2389)
38166
+ Processing by ClWiki::PageController#show as HTML
38167
+ Redirected to http://test.host/wiki/FrontPage
38168
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38169
+ Completed 302 Found in 2ms (Allocations: 413)
38170
+ Processing by ClWiki::PageController#show as HTML
38171
+ Parameters: {"page_name"=>"SourcePage"}
38172
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38173
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
38174
+ Completed 200 OK in 5ms (Views: 3.0ms | Allocations: 2333)
38175
+ Processing by ClWiki::PageController#show as HTML
38176
+ Redirected to http://test.host/wiki/FrontPage
38177
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38178
+ Completed 302 Found in 1ms (Allocations: 413)
38179
+ Processing by ClWiki::PageController#edit as HTML
38180
+ Parameters: {"page_name"=>"NewPage"}
38181
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38182
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 314)
38183
+ Completed 200 OK in 15ms (Views: 13.5ms | Allocations: 2398)
38184
+ Processing by ClWiki::PageController#update as HTML
38185
+ Parameters: {"client_mod_time"=>"1580612269", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
38186
+ Redirected to http://test.host/wiki/NewPage
38187
+ Completed 302 Found in 3ms (Views: 13.5ms | Allocations: 987)
38188
+ Processing by ClWiki::PageController#show as HTML
38189
+ Redirected to http://test.host/wiki/FrontPage
38190
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38191
+ Completed 302 Found in 1ms (Allocations: 413)
38192
+ Processing by ClWiki::PageController#show as HTML
38193
+ Parameters: {"page_name"=>"notavalidname"}
38194
+ Redirected to http://test.host/wiki/FrontPage
38195
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38196
+ Completed 302 Found in 1ms (Allocations: 410)
38197
+ Processing by ClWiki::PageController#show as HTML
38198
+ Redirected to http://test.host/wiki/FrontPage
38199
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38200
+ Completed 302 Found in 1ms (Allocations: 413)
38201
+ Processing by ClWiki::PageController#find as HTML
38202
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
38203
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 185)
38204
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2093)
38205
+ Processing by ClWiki::PageController#show as HTML
38206
+ Redirected to http://test.host/wiki/FrontPage
38207
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38208
+ Completed 302 Found in 1ms (Allocations: 413)
38209
+ Processing by ClWiki::PageController#edit as HTML
38210
+ Parameters: {"page_name"=>"NewEncryptedPage"}
38211
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38212
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 314)
38213
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2397)
38214
+ Processing by ClWiki::PageController#update as HTML
38215
+ Parameters: {"client_mod_time"=>"1580612269", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38216
+ Redirected to http://test.host/wiki/NewEncryptedPage
38217
+ Completed 302 Found in 2ms (Views: 1.6ms | Allocations: 1175)
38218
+ Processing by ClWiki::PageController#update as HTML
38219
+ Parameters: {"client_mod_time"=>"1580612269", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38220
+ Redirected to http://test.host/wiki/NewEncryptedPage
38221
+ Completed 302 Found in 2ms (Views: 1.6ms | Allocations: 1135)
38222
+ Processing by ClWiki::PageController#show as HTML
38223
+ Redirected to http://test.host/wiki/FrontPage
38224
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38225
+ Completed 302 Found in 1ms (Allocations: 413)
38226
+ Processing by ClWiki::PageController#edit as HTML
38227
+ Parameters: {"page_name"=>"DoNotKillMe"}
38228
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38229
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 401)
38230
+ Completed 200 OK in 4ms (Views: 1.7ms | Allocations: 2900)
38231
+ Processing by ClWiki::PageController#update as HTML
38232
+ Parameters: {"client_mod_time"=>"1580871469", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
38233
+ Redirected to http://test.host/wiki/DoNotKillMe
38234
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 1461)
38235
+ Processing by ClWiki::PageController#show as HTML
38236
+ Redirected to http://test.host/wiki/FrontPage
38237
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38238
+ Completed 302 Found in 1ms (Allocations: 413)
38239
+ Processing by ClWiki::PageController#show as HTML
38240
+ Parameters: {"page_name"=>"NewPage"}
38241
+ Redirected to http://test.host/wiki/FrontPage
38242
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38243
+ Completed 302 Found in 1ms (Allocations: 424)
38244
+ Processing by ClWiki::PageController#show as HTML
38245
+ Redirected to http://test.host/wiki/FrontPage
38246
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38247
+ Completed 302 Found in 1ms (Allocations: 413)
38248
+ Processing by ClWiki::PageController#edit as HTML
38249
+ Parameters: {"page_name"=>"DoNotKillMe"}
38250
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38251
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 401)
38252
+ Completed 200 OK in 5ms (Views: 2.6ms | Allocations: 2897)
38253
+ Processing by ClWiki::PageController#show as HTML
38254
+ Redirected to http://test.host/wiki/FrontPage
38255
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38256
+ Completed 302 Found in 1ms (Allocations: 413)
38257
+ Processing by ClWiki::PageController#recent as RSS
38258
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
38259
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 15.3ms | Allocations: 3174)
38260
+ Completed 200 OK in 18ms (Views: 16.4ms | Allocations: 4322)
38261
+ Processing by ClWiki::PageController#show as HTML
38262
+ Redirected to http://test.host/wiki/FrontPage
38263
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38264
+ Completed 302 Found in 1ms (Allocations: 413)
38265
+ Processing by ClWiki::PageController#show as HTML
38266
+ Redirected to http://test.host/wiki/FrontPage
38267
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38268
+ Completed 302 Found in 1ms (Allocations: 412)
38269
+ Processing by ClWiki::PageController#show as HTML
38270
+ Redirected to http://test.host/wiki/FrontPage
38271
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38272
+ Completed 302 Found in 1ms (Allocations: 413)
38273
+ Processing by ClWiki::PageController#edit as HTML
38274
+ Parameters: {"page_name"=>"NewPage"}
38275
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38276
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 317)
38277
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2401)
38278
+ Processing by ClWiki::PageController#update as HTML
38279
+ Parameters: {"client_mod_time"=>"1580612270", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
38280
+ Redirected to http://test.host/wiki/NewPage/edit
38281
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 986)
38282
+ Processing by ClWiki::PageController#show as HTML
38283
+ Redirected to http://test.host/wiki/FrontPage
38284
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38285
+ Completed 302 Found in 1ms (Allocations: 413)
38286
+ Processing by ClWiki::PageController#recent as HTML
38287
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38288
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
38289
+ Completed 200 OK in 3ms (Views: 1.5ms | Allocations: 2733)
38290
+ Processing by ClWiki::SessionsController#create as HTML
38291
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38292
+ Completed 500 Internal Server Error in 1ms (Allocations: 471)
38293
+ Processing by ClWiki::SessionsController#create as HTML
38294
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38295
+ Completed 500 Internal Server Error in 1ms (Allocations: 471)
38296
+ Processing by ClWiki::SessionsController#create as HTML
38297
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38298
+ Completed 500 Internal Server Error in 0ms (Allocations: 471)
38299
+ Processing by ClWiki::SessionsController#new as HTML
38300
+ Redirected to http://test.host/wiki/
38301
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38302
+ Completed 302 Found in 0ms (Allocations: 198)
38303
+ Processing by ClWiki::SessionsController#create as HTML
38304
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38305
+ Redirected to http://test.host/wiki/
38306
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38307
+ Completed 302 Found in 0ms (Allocations: 196)
38308
+ Processing by ClWiki::PageController#show as HTML
38309
+ Redirected to http://test.host/wiki/FrontPage
38310
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38311
+ Completed 302 Found in 1ms (Allocations: 449)
38312
+ Processing by ClWiki::PageController#edit as HTML
38313
+ Parameters: {"page_name"=>"NewPage"}
38314
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38315
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 3.4ms | Allocations: 802)
38316
+ Completed 200 OK in 51ms (Views: 46.7ms | Allocations: 15709)
38317
+ Processing by ClWiki::PageController#show as HTML
38318
+ Redirected to http://test.host/wiki/FrontPage
38319
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38320
+ Completed 302 Found in 3ms (Allocations: 415)
38321
+ Processing by ClWiki::PageController#recent as HTML
38322
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38323
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 185)
38324
+ Completed 200 OK in 11ms (Views: 4.2ms | Allocations: 3953)
38325
+ Processing by ClWiki::PageController#show as HTML
38326
+ Redirected to http://test.host/wiki/FrontPage
38327
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38328
+ Completed 302 Found in 1ms (Allocations: 413)
38329
+ Processing by ClWiki::PageController#show as HTML
38330
+ Parameters: {"page_name"=>"NewPage"}
38331
+ Redirected to http://test.host/wiki/FrontPage
38332
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38333
+ Completed 302 Found in 1ms (Allocations: 424)
38334
+ Processing by ClWiki::PageController#show as HTML
38335
+ Redirected to http://test.host/wiki/FrontPage
38336
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38337
+ Completed 302 Found in 1ms (Allocations: 413)
38338
+ Processing by ClWiki::PageController#show as HTML
38339
+ Redirected to http://test.host/wiki/FrontPage
38340
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38341
+ Completed 302 Found in 1ms (Allocations: 412)
38342
+ Processing by ClWiki::PageController#show as HTML
38343
+ Redirected to http://test.host/wiki/FrontPage
38344
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38345
+ Completed 302 Found in 3ms (Allocations: 413)
38346
+ Processing by ClWiki::PageController#show as HTML
38347
+ Parameters: {"page_name"=>"SourcePage"}
38348
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38349
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 93)
38350
+ Completed 200 OK in 9ms (Views: 5.6ms | Allocations: 2650)
38351
+ Processing by ClWiki::PageController#show as HTML
38352
+ Redirected to http://test.host/wiki/FrontPage
38353
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38354
+ Completed 302 Found in 3ms (Allocations: 413)
38355
+ Processing by ClWiki::PageController#edit as HTML
38356
+ Parameters: {"page_name"=>"ANewPage"}
38357
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38358
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 319)
38359
+ Completed 200 OK in 7ms (Views: 5.1ms | Allocations: 2403)
38360
+ Processing by ClWiki::PageController#edit as HTML
38361
+ Parameters: {"page_name"=>"AnotherNewPage"}
38362
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38363
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 311)
38364
+ Completed 200 OK in 6ms (Views: 4.1ms | Allocations: 2389)
38365
+ Processing by ClWiki::PageController#show as HTML
38366
+ Redirected to http://test.host/wiki/FrontPage
38367
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38368
+ Completed 302 Found in 3ms (Allocations: 413)
38369
+ Processing by ClWiki::PageController#find as HTML
38370
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
38371
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 474)
38372
+ Completed 200 OK in 15ms (Views: 11.2ms | Allocations: 2616)
38373
+ Processing by ClWiki::PageController#show as HTML
38374
+ Redirected to http://test.host/wiki/FrontPage
38375
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38376
+ Completed 302 Found in 1ms (Allocations: 413)
38377
+ Processing by ClWiki::PageController#show as HTML
38378
+ Parameters: {"page_name"=>"notavalidname"}
38379
+ Redirected to http://test.host/wiki/FrontPage
38380
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38381
+ Completed 302 Found in 1ms (Allocations: 410)
38382
+ Processing by ClWiki::PageController#show as HTML
38383
+ Redirected to http://test.host/wiki/FrontPage
38384
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38385
+ Completed 302 Found in 3ms (Allocations: 413)
38386
+ Processing by ClWiki::PageController#show as HTML
38387
+ Parameters: {"page_name"=>"NewPage"}
38388
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38389
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.2ms | Allocations: 12)
38390
+ Completed 200 OK in 6ms (Views: 2.8ms | Allocations: 2373)
38391
+ Processing by ClWiki::PageController#show as HTML
38392
+ Redirected to http://test.host/wiki/FrontPage
38393
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38394
+ Completed 302 Found in 2ms (Allocations: 413)
38395
+ Processing by ClWiki::PageController#recent as RSS
38396
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
38397
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 13.4ms | Allocations: 3174)
38398
+ Completed 200 OK in 16ms (Views: 14.7ms | Allocations: 4321)
38399
+ Processing by ClWiki::PageController#show as HTML
38400
+ Redirected to http://test.host/wiki/FrontPage
38401
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38402
+ Completed 302 Found in 1ms (Allocations: 413)
38403
+ Processing by ClWiki::PageController#edit as HTML
38404
+ Parameters: {"page_name"=>"DoNotKillMe"}
38405
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38406
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 404)
38407
+ Completed 200 OK in 4ms (Views: 2.6ms | Allocations: 2904)
38408
+ Processing by ClWiki::PageController#show as HTML
38409
+ Redirected to http://test.host/wiki/FrontPage
38410
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38411
+ Completed 302 Found in 1ms (Allocations: 413)
38412
+ Processing by ClWiki::PageController#edit as HTML
38413
+ Parameters: {"page_name"=>"DoNotKillMe"}
38414
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38415
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.7ms | Allocations: 401)
38416
+ Completed 200 OK in 10ms (Views: 6.0ms | Allocations: 2897)
38417
+ Processing by ClWiki::PageController#update as HTML
38418
+ Parameters: {"client_mod_time"=>"1580871492", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
38419
+ Redirected to http://test.host/wiki/DoNotKillMe
38420
+ Completed 302 Found in 4ms (Views: 6.0ms | Allocations: 1461)
38421
+ Processing by ClWiki::PageController#show as HTML
38422
+ Redirected to http://test.host/wiki/FrontPage
38423
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38424
+ Completed 302 Found in 1ms (Allocations: 413)
38425
+ Processing by ClWiki::PageController#find as HTML
38426
+ Parameters: {"search_text"=>"sheep"}
38427
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
38428
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 192)
38429
+ Completed 200 OK in 5ms (Views: 4.7ms | Allocations: 2152)
38430
+ Processing by ClWiki::PageController#show as HTML
38431
+ Redirected to http://test.host/wiki/FrontPage
38432
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38433
+ Completed 302 Found in 3ms (Allocations: 413)
38434
+ Processing by ClWiki::PageController#edit as HTML
38435
+ Parameters: {"page_name"=>"NewPage"}
38436
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38437
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.7ms | Allocations: 314)
38438
+ Completed 200 OK in 15ms (Views: 10.3ms | Allocations: 2397)
38439
+ Processing by ClWiki::PageController#update as HTML
38440
+ Parameters: {"client_mod_time"=>"1580612292", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
38441
+ Redirected to http://test.host/wiki/NewPage/edit
38442
+ Completed 302 Found in 7ms (Views: 10.3ms | Allocations: 986)
38443
+ Processing by ClWiki::PageController#show as HTML
38444
+ Redirected to http://test.host/wiki/FrontPage
38445
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38446
+ Completed 302 Found in 1ms (Allocations: 413)
38447
+ Processing by ClWiki::PageController#edit as HTML
38448
+ Parameters: {"page_name"=>"NewPage"}
38449
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38450
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 314)
38451
+ Completed 200 OK in 6ms (Views: 4.2ms | Allocations: 2397)
38452
+ Processing by ClWiki::PageController#show as HTML
38453
+ Redirected to http://test.host/wiki/FrontPage
38454
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38455
+ Completed 302 Found in 1ms (Allocations: 413)
38456
+ Processing by ClWiki::PageController#recent as HTML
38457
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38458
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
38459
+ Completed 200 OK in 4ms (Views: 2.2ms | Allocations: 2396)
38460
+ Processing by ClWiki::PageController#show as HTML
38461
+ Redirected to http://test.host/wiki/FrontPage
38462
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38463
+ Completed 302 Found in 23ms (Allocations: 413)
38464
+ Processing by ClWiki::PageController#edit as HTML
38465
+ Parameters: {"page_name"=>"NewEncryptedPage"}
38466
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38467
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 314)
38468
+ Completed 200 OK in 5ms (Views: 2.9ms | Allocations: 2397)
38469
+ Processing by ClWiki::PageController#update as HTML
38470
+ Parameters: {"client_mod_time"=>"1580612293", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38471
+ Redirected to http://test.host/wiki/NewEncryptedPage
38472
+ Completed 302 Found in 6ms (Views: 2.9ms | Allocations: 1435)
38473
+ Processing by ClWiki::PageController#update as HTML
38474
+ Parameters: {"client_mod_time"=>"1580612293", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38475
+ Redirected to http://test.host/wiki/NewEncryptedPage
38476
+ Completed 302 Found in 2ms (Views: 2.9ms | Allocations: 1135)
38477
+ Processing by ClWiki::PageController#show as HTML
38478
+ Redirected to http://test.host/wiki/FrontPage
38479
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38480
+ Completed 302 Found in 1ms (Allocations: 413)
38481
+ Processing by ClWiki::PageController#edit as HTML
38482
+ Parameters: {"page_name"=>"NewPage"}
38483
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38484
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
38485
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2397)
38486
+ Processing by ClWiki::PageController#update as HTML
38487
+ Parameters: {"client_mod_time"=>"1580612293", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
38488
+ Redirected to http://test.host/wiki/NewPage
38489
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 987)
38490
+ Processing by ClWiki::PageController#show as HTML
38491
+ Redirected to http://test.host/wiki/FrontPage
38492
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38493
+ Completed 302 Found in 1ms (Allocations: 413)
38494
+ Processing by ClWiki::PageController#show as HTML
38495
+ Redirected to http://test.host/wiki/login
38496
+ Filter chain halted as :authorized rendered or redirected
38497
+ Completed 302 Found in 0ms (Allocations: 327)
38498
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-02-01 20:58:13 -0600
38499
+ Processing by ClWiki::PageController#show as HTML
38500
+ Parameters: {"page_name"=>"FrontPage"}
38501
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38502
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
38503
+ Completed 200 OK in 9ms (Views: 1.4ms | Allocations: 2535)
38504
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:13 -0600
38505
+ Processing by ClWiki::SessionsController#new as HTML
38506
+ Completed 500 Internal Server Error in 1ms (Allocations: 651)
38507
+ Started GET "/wiki/" for 127.0.0.1 at 2020-02-01 20:58:13 -0600
38508
+ Processing by ClWiki::PageController#show as HTML
38509
+ Completed 500 Internal Server Error in 1ms (Allocations: 572)
38510
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:13 -0600
38511
+ Processing by ClWiki::SessionsController#create as HTML
38512
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38513
+ Completed 500 Internal Server Error in 1ms (Allocations: 576)
38514
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:13 -0600
38515
+ Processing by ClWiki::SessionsController#create as HTML
38516
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38517
+ Completed 500 Internal Server Error in 1ms (Allocations: 576)
38518
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:13 -0600
38519
+ Processing by ClWiki::SessionsController#create as HTML
38520
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38521
+ Completed 500 Internal Server Error in 1ms (Allocations: 576)
38522
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:13 -0600
38523
+ Processing by ClWiki::SessionsController#create as HTML
38524
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38525
+ Completed 500 Internal Server Error in 3ms (Allocations: 576)
38526
+ Processing by ClWiki::SessionsController#create as HTML
38527
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38528
+ Redirected to http://test.host/wiki/
38529
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38530
+ Completed 302 Found in 1ms (Allocations: 198)
38531
+ Processing by ClWiki::SessionsController#new as HTML
38532
+ Redirected to http://test.host/wiki/
38533
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38534
+ Completed 302 Found in 1ms (Allocations: 196)
38535
+ Processing by ClWiki::SessionsController#create as HTML
38536
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38537
+ Completed 500 Internal Server Error in 1ms (Allocations: 473)
38538
+ Processing by ClWiki::SessionsController#create as HTML
38539
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38540
+ Completed 500 Internal Server Error in 1ms (Allocations: 473)
38541
+ Processing by ClWiki::SessionsController#create as HTML
38542
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38543
+ Completed 500 Internal Server Error in 1ms (Allocations: 473)
38544
+ Started GET "/wiki/" for 127.0.0.1 at 2020-02-01 20:58:56 -0600
38545
+ Processing by ClWiki::PageController#show as HTML
38546
+ Redirected to http://www.example.com/wiki/login
38547
+ Filter chain halted as :authorized rendered or redirected
38548
+ Completed 302 Found in 6ms (Allocations: 413)
38549
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:56 -0600
38550
+ Processing by ClWiki::SessionsController#new as HTML
38551
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
38552
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 1.5ms | Allocations: 732)
38553
+ Completed 200 OK in 37ms (Views: 33.8ms | Allocations: 15437)
38554
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:56 -0600
38555
+ Processing by ClWiki::SessionsController#create as HTML
38556
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38557
+ Redirected to http://www.example.com/wiki/
38558
+ Completed 302 Found in 13ms (Allocations: 371)
38559
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-02-01 20:58:56 -0600
38560
+ Processing by ClWiki::PageController#show as HTML
38561
+ Parameters: {"page_name"=>"FrontPage"}
38562
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38563
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 93)
38564
+ Completed 200 OK in 8ms (Views: 2.2ms | Allocations: 4034)
38565
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38566
+ Processing by ClWiki::SessionsController#create as HTML
38567
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38568
+ Redirected to http://www.example.com/wiki/
38569
+ Completed 302 Found in 23ms (Allocations: 366)
38570
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38571
+ Processing by ClWiki::PageController#show as HTML
38572
+ Parameters: {"page"=>"/ChrisMorris"}
38573
+ Redirected to http://www.example.com/wiki/ChrisMorris
38574
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38575
+ Completed 301 Moved Permanently in 1ms (Allocations: 594)
38576
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38577
+ Processing by ClWiki::SessionsController#create as HTML
38578
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38579
+ Redirected to http://www.example.com/wiki/
38580
+ Completed 302 Found in 14ms (Allocations: 366)
38581
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38582
+ Processing by ClWiki::PageController#show as HTML
38583
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
38584
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
38585
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38586
+ Completed 301 Moved Permanently in 1ms (Allocations: 591)
38587
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38588
+ Processing by ClWiki::SessionsController#create as HTML
38589
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38590
+ Redirected to http://www.example.com/wiki/
38591
+ Completed 302 Found in 14ms (Allocations: 366)
38592
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38593
+ Processing by ClWiki::PageController#show as HTML
38594
+ Parameters: {"page"=>"/SomeParent/DotTest"}
38595
+ Redirected to http://www.example.com/wiki/DotTest
38596
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38597
+ Completed 301 Moved Permanently in 1ms (Allocations: 589)
38598
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38599
+ Processing by ClWiki::SessionsController#create as HTML
38600
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38601
+ Redirected to http://www.example.com/wiki/
38602
+ Completed 302 Found in 14ms (Allocations: 366)
38603
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-02-01 20:58:57 -0600
38604
+ Processing by ClWiki::PageController#show as HTML
38605
+ Parameters: {"page"=>"ChrisMorris"}
38606
+ Redirected to http://www.example.com/wiki/ChrisMorris
38607
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38608
+ Completed 301 Moved Permanently in 2ms (Allocations: 587)
38609
+ Processing by ClWiki::SessionsController#create as HTML
38610
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38611
+ Redirected to http://test.host/wiki/
38612
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38613
+ Completed 302 Found in 1ms (Allocations: 196)
38614
+ Processing by ClWiki::SessionsController#new as HTML
38615
+ Redirected to http://test.host/wiki/
38616
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38617
+ Completed 302 Found in 0ms (Allocations: 196)
38618
+ Processing by ClWiki::SessionsController#create as HTML
38619
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38620
+ Redirected to http://test.host/wiki/
38621
+ Completed 302 Found in 14ms (Allocations: 329)
38622
+ Processing by ClWiki::SessionsController#create as HTML
38623
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38624
+ Redirected to http://test.host/wiki/login
38625
+ Completed 302 Found in 2ms (Allocations: 287)
38626
+ Processing by ClWiki::SessionsController#create as HTML
38627
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38628
+ Redirected to http://test.host/wiki/login
38629
+ Completed 302 Found in 2ms (Allocations: 287)
38630
+ Processing by ClWiki::PageController#edit as HTML
38631
+ Parameters: {"page_name"=>"NewPage"}
38632
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38633
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.3ms | Allocations: 521)
38634
+ Completed 200 OK in 6ms (Views: 3.6ms | Allocations: 2719)
38635
+ Processing by ClWiki::PageController#show as HTML
38636
+ Redirected to http://test.host/wiki/FrontPage
38637
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38638
+ Completed 302 Found in 1ms (Allocations: 305)
38639
+ Processing by ClWiki::PageController#show as HTML
38640
+ Redirected to http://test.host/wiki/FrontPage
38641
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38642
+ Completed 302 Found in 2ms (Allocations: 413)
38643
+ Processing by ClWiki::PageController#edit as HTML
38644
+ Parameters: {"page_name"=>"NewPage"}
38645
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38646
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 314)
38647
+ Completed 200 OK in 5ms (Views: 3.1ms | Allocations: 2398)
38648
+ Processing by ClWiki::PageController#show as HTML
38649
+ Redirected to http://test.host/wiki/FrontPage
38650
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38651
+ Completed 302 Found in 1ms (Allocations: 413)
38652
+ Processing by ClWiki::PageController#show as HTML
38653
+ Redirected to http://test.host/wiki/login
38654
+ Filter chain halted as :authorized rendered or redirected
38655
+ Completed 302 Found in 1ms (Allocations: 326)
38656
+ Processing by ClWiki::PageController#show as HTML
38657
+ Redirected to http://test.host/wiki/FrontPage
38658
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38659
+ Completed 302 Found in 2ms (Allocations: 413)
38660
+ Processing by ClWiki::PageController#recent as RSS
38661
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
38662
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 9.7ms | Allocations: 3173)
38663
+ Completed 200 OK in 13ms (Views: 10.8ms | Allocations: 4329)
38664
+ Processing by ClWiki::PageController#show as HTML
38665
+ Redirected to http://test.host/wiki/FrontPage
38666
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38667
+ Completed 302 Found in 1ms (Allocations: 413)
38668
+ Processing by ClWiki::PageController#recent as HTML
38669
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38670
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 167)
38671
+ Completed 200 OK in 6ms (Views: 2.3ms | Allocations: 2773)
38672
+ Processing by ClWiki::PageController#show as HTML
38673
+ Redirected to http://test.host/wiki/FrontPage
38674
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38675
+ Completed 302 Found in 1ms (Allocations: 413)
38676
+ Processing by ClWiki::PageController#find as HTML
38677
+ Parameters: {"search_text"=>"sheep"}
38678
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
38679
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 477)
38680
+ Completed 200 OK in 4ms (Views: 2.4ms | Allocations: 2671)
38681
+ Processing by ClWiki::PageController#show as HTML
38682
+ Redirected to http://test.host/wiki/FrontPage
38683
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38684
+ Completed 302 Found in 1ms (Allocations: 413)
38685
+ Processing by ClWiki::PageController#edit as HTML
38686
+ Parameters: {"page_name"=>"NewPage"}
38687
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38688
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 314)
38689
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2398)
38690
+ Processing by ClWiki::PageController#update as HTML
38691
+ Parameters: {"client_mod_time"=>"1580612337", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
38692
+ Redirected to http://test.host/wiki/NewPage/edit
38693
+ Completed 302 Found in 2ms (Views: 1.6ms | Allocations: 985)
38694
+ Processing by ClWiki::PageController#show as HTML
38695
+ Redirected to http://test.host/wiki/FrontPage
38696
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38697
+ Completed 302 Found in 1ms (Allocations: 413)
38698
+ Processing by ClWiki::PageController#show as HTML
38699
+ Parameters: {"page_name"=>"notavalidname"}
38700
+ Redirected to http://test.host/wiki/FrontPage
38701
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38702
+ Completed 302 Found in 1ms (Allocations: 410)
38703
+ Processing by ClWiki::PageController#show as HTML
38704
+ Redirected to http://test.host/wiki/FrontPage
38705
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38706
+ Completed 302 Found in 1ms (Allocations: 413)
38707
+ Processing by ClWiki::PageController#find as HTML
38708
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
38709
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 185)
38710
+ Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 2092)
38711
+ Processing by ClWiki::PageController#show as HTML
38712
+ Redirected to http://test.host/wiki/FrontPage
38713
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38714
+ Completed 302 Found in 1ms (Allocations: 413)
38715
+ Processing by ClWiki::PageController#show as HTML
38716
+ Parameters: {"page_name"=>"SourcePage"}
38717
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38718
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
38719
+ Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2333)
38720
+ Processing by ClWiki::PageController#show as HTML
38721
+ Redirected to http://test.host/wiki/FrontPage
38722
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38723
+ Completed 302 Found in 2ms (Allocations: 413)
38724
+ Processing by ClWiki::PageController#show as HTML
38725
+ Parameters: {"page_name"=>"NewPage"}
38726
+ Redirected to http://test.host/wiki/FrontPage
38727
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38728
+ Completed 302 Found in 1ms (Allocations: 424)
38729
+ Processing by ClWiki::PageController#show as HTML
38730
+ Redirected to http://test.host/wiki/FrontPage
38731
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38732
+ Completed 302 Found in 1ms (Allocations: 413)
38733
+ Processing by ClWiki::PageController#show as HTML
38734
+ Redirected to http://test.host/wiki/FrontPage
38735
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38736
+ Completed 302 Found in 1ms (Allocations: 412)
38737
+ Processing by ClWiki::PageController#show as HTML
38738
+ Redirected to http://test.host/wiki/FrontPage
38739
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38740
+ Completed 302 Found in 1ms (Allocations: 413)
38741
+ Processing by ClWiki::PageController#recent as HTML
38742
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38743
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
38744
+ Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 2733)
38745
+ Processing by ClWiki::PageController#show as HTML
38746
+ Redirected to http://test.host/wiki/FrontPage
38747
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38748
+ Completed 302 Found in 1ms (Allocations: 413)
38749
+ Processing by ClWiki::PageController#show as HTML
38750
+ Parameters: {"page_name"=>"NewPage"}
38751
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38752
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
38753
+ Completed 200 OK in 4ms (Views: 1.5ms | Allocations: 2371)
38754
+ Processing by ClWiki::PageController#show as HTML
38755
+ Redirected to http://test.host/wiki/FrontPage
38756
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38757
+ Completed 302 Found in 2ms (Allocations: 413)
38758
+ Processing by ClWiki::PageController#edit as HTML
38759
+ Parameters: {"page_name"=>"ANewPage"}
38760
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38761
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 313)
38762
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2396)
38763
+ Processing by ClWiki::PageController#edit as HTML
38764
+ Parameters: {"page_name"=>"AnotherNewPage"}
38765
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38766
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 311)
38767
+ Completed 200 OK in 2ms (Views: 1.3ms | Allocations: 2389)
38768
+ Processing by ClWiki::PageController#show as HTML
38769
+ Redirected to http://test.host/wiki/FrontPage
38770
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38771
+ Completed 302 Found in 1ms (Allocations: 413)
38772
+ Processing by ClWiki::PageController#edit as HTML
38773
+ Parameters: {"page_name"=>"DoNotKillMe"}
38774
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38775
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 401)
38776
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2900)
38777
+ Processing by ClWiki::PageController#update as HTML
38778
+ Parameters: {"client_mod_time"=>"1580871538", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
38779
+ Redirected to http://test.host/wiki/DoNotKillMe
38780
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 1461)
38781
+ Processing by ClWiki::PageController#show as HTML
38782
+ Redirected to http://test.host/wiki/FrontPage
38783
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38784
+ Completed 302 Found in 2ms (Allocations: 413)
38785
+ Processing by ClWiki::PageController#edit as HTML
38786
+ Parameters: {"page_name"=>"DoNotKillMe"}
38787
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38788
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 401)
38789
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2897)
38790
+ Processing by ClWiki::PageController#show as HTML
38791
+ Redirected to http://test.host/wiki/FrontPage
38792
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38793
+ Completed 302 Found in 1ms (Allocations: 413)
38794
+ Processing by ClWiki::PageController#edit as HTML
38795
+ Parameters: {"page_name"=>"NewEncryptedPage"}
38796
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38797
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
38798
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2397)
38799
+ Processing by ClWiki::PageController#update as HTML
38800
+ Parameters: {"client_mod_time"=>"1580612338", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38801
+ Redirected to http://test.host/wiki/NewEncryptedPage
38802
+ Completed 302 Found in 3ms (Views: 1.6ms | Allocations: 1175)
38803
+ Processing by ClWiki::PageController#update as HTML
38804
+ Parameters: {"client_mod_time"=>"1580612338", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
38805
+ Redirected to http://test.host/wiki/NewEncryptedPage
38806
+ Completed 302 Found in 3ms (Views: 1.6ms | Allocations: 1135)
38807
+ Processing by ClWiki::PageController#show as HTML
38808
+ Redirected to http://test.host/wiki/FrontPage
38809
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38810
+ Completed 302 Found in 2ms (Allocations: 413)
38811
+ Processing by ClWiki::PageController#edit as HTML
38812
+ Parameters: {"page_name"=>"NewPage"}
38813
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38814
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
38815
+ Completed 200 OK in 10ms (Views: 7.8ms | Allocations: 2398)
38816
+ Processing by ClWiki::PageController#update as HTML
38817
+ Parameters: {"client_mod_time"=>"1580612338", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
38818
+ Redirected to http://test.host/wiki/NewPage
38819
+ Completed 302 Found in 3ms (Views: 7.8ms | Allocations: 987)
38820
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38821
+ Processing by ClWiki::SessionsController#create as HTML
38822
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38823
+ Redirected to http://www.example.com/wiki/
38824
+ Completed 302 Found in 17ms (Allocations: 501)
38825
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38826
+ Processing by ClWiki::PageController#show as HTML
38827
+ Parameters: {"page"=>"/ChrisMorris"}
38828
+ Redirected to http://www.example.com/wiki/ChrisMorris
38829
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38830
+ Completed 301 Moved Permanently in 6ms (Allocations: 2230)
38831
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38832
+ Processing by ClWiki::SessionsController#create as HTML
38833
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38834
+ Redirected to http://www.example.com/wiki/
38835
+ Completed 302 Found in 14ms (Allocations: 366)
38836
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38837
+ Processing by ClWiki::PageController#show as HTML
38838
+ Parameters: {"page"=>"/SomeParent/DotTest"}
38839
+ Redirected to http://www.example.com/wiki/DotTest
38840
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38841
+ Completed 301 Moved Permanently in 1ms (Allocations: 589)
38842
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38843
+ Processing by ClWiki::SessionsController#create as HTML
38844
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38845
+ Redirected to http://www.example.com/wiki/
38846
+ Completed 302 Found in 13ms (Allocations: 366)
38847
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38848
+ Processing by ClWiki::PageController#show as HTML
38849
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
38850
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
38851
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38852
+ Completed 301 Moved Permanently in 1ms (Allocations: 591)
38853
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38854
+ Processing by ClWiki::SessionsController#create as HTML
38855
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38856
+ Redirected to http://www.example.com/wiki/
38857
+ Completed 302 Found in 14ms (Allocations: 366)
38858
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38859
+ Processing by ClWiki::PageController#show as HTML
38860
+ Parameters: {"page"=>"ChrisMorris"}
38861
+ Redirected to http://www.example.com/wiki/ChrisMorris
38862
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
38863
+ Completed 301 Moved Permanently in 1ms (Allocations: 587)
38864
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38865
+ Processing by ClWiki::PageController#show as HTML
38866
+ Parameters: {"page_name"=>"FrontPage"}
38867
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38868
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 1.9ms | Allocations: 349)
38869
+ Completed 200 OK in 43ms (Views: 37.9ms | Allocations: 16302)
38870
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38871
+ Processing by ClWiki::SessionsController#new as HTML
38872
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
38873
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 467)
38874
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2770)
38875
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38876
+ Processing by ClWiki::SessionsController#create as HTML
38877
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
38878
+ Redirected to http://www.example.com/wiki/
38879
+ Completed 302 Found in 13ms (Allocations: 366)
38880
+ Started GET "/wiki/" for 127.0.0.1 at 2020-02-01 20:59:20 -0600
38881
+ Processing by ClWiki::PageController#show as HTML
38882
+ Redirected to http://www.example.com/wiki/login
38883
+ Filter chain halted as :authorized rendered or redirected
38884
+ Completed 302 Found in 1ms (Allocations: 260)
38885
+ Processing by ClWiki::SessionsController#create as HTML
38886
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38887
+ Redirected to http://test.host/wiki/
38888
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38889
+ Completed 302 Found in 0ms (Allocations: 196)
38890
+ Processing by ClWiki::SessionsController#new as HTML
38891
+ Redirected to http://test.host/wiki/
38892
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
38893
+ Completed 302 Found in 0ms (Allocations: 196)
38894
+ Processing by ClWiki::SessionsController#create as HTML
38895
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38896
+ Redirected to http://test.host/wiki/login
38897
+ Completed 302 Found in 2ms (Allocations: 287)
38898
+ Processing by ClWiki::SessionsController#create as HTML
38899
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38900
+ Redirected to http://test.host/wiki/login
38901
+ Completed 302 Found in 2ms (Allocations: 287)
38902
+ Processing by ClWiki::SessionsController#create as HTML
38903
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
38904
+ Redirected to http://test.host/wiki/
38905
+ Completed 302 Found in 14ms (Allocations: 329)
38906
+ Processing by ClWiki::PageController#show as HTML
38907
+ Redirected to http://test.host/wiki/FrontPage
38908
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38909
+ Completed 302 Found in 1ms (Allocations: 305)
38910
+ Processing by ClWiki::PageController#edit as HTML
38911
+ Parameters: {"page_name"=>"NewPage"}
38912
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38913
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 521)
38914
+ Completed 200 OK in 4ms (Views: 3.1ms | Allocations: 2719)
38915
+ Processing by ClWiki::PageController#show as HTML
38916
+ Redirected to http://test.host/wiki/FrontPage
38917
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38918
+ Completed 302 Found in 1ms (Allocations: 413)
38919
+ Processing by ClWiki::PageController#show as HTML
38920
+ Parameters: {"page_name"=>"notavalidname"}
38921
+ Redirected to http://test.host/wiki/FrontPage
38922
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38923
+ Completed 302 Found in 1ms (Allocations: 410)
38924
+ Processing by ClWiki::PageController#show as HTML
38925
+ Redirected to http://test.host/wiki/FrontPage
38926
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38927
+ Completed 302 Found in 1ms (Allocations: 413)
38928
+ Processing by ClWiki::PageController#show as HTML
38929
+ Redirected to http://test.host/wiki/FrontPage
38930
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38931
+ Completed 302 Found in 1ms (Allocations: 412)
38932
+ Processing by ClWiki::PageController#show as HTML
38933
+ Redirected to http://test.host/wiki/FrontPage
38934
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38935
+ Completed 302 Found in 1ms (Allocations: 413)
38936
+ Processing by ClWiki::PageController#show as HTML
38937
+ Parameters: {"page_name"=>"NewPage"}
38938
+ Redirected to http://test.host/wiki/FrontPage
38939
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38940
+ Completed 302 Found in 1ms (Allocations: 424)
38941
+ Processing by ClWiki::PageController#show as HTML
38942
+ Redirected to http://test.host/wiki/FrontPage
38943
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38944
+ Completed 302 Found in 1ms (Allocations: 413)
38945
+ Processing by ClWiki::PageController#edit as HTML
38946
+ Parameters: {"page_name"=>"DoNotKillMe"}
38947
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38948
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 401)
38949
+ Completed 200 OK in 5ms (Views: 3.1ms | Allocations: 2902)
38950
+ Processing by ClWiki::PageController#show as HTML
38951
+ Redirected to http://test.host/wiki/FrontPage
38952
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38953
+ Completed 302 Found in 1ms (Allocations: 413)
38954
+ Processing by ClWiki::PageController#edit as HTML
38955
+ Parameters: {"page_name"=>"ANewPage"}
38956
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38957
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 313)
38958
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2396)
38959
+ Processing by ClWiki::PageController#edit as HTML
38960
+ Parameters: {"page_name"=>"AnotherNewPage"}
38961
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
38962
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 311)
38963
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2389)
38964
+ Processing by ClWiki::PageController#show as HTML
38965
+ Redirected to http://test.host/wiki/FrontPage
38966
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38967
+ Completed 302 Found in 1ms (Allocations: 413)
38968
+ Processing by ClWiki::PageController#show as HTML
38969
+ Parameters: {"page_name"=>"SourcePage"}
38970
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38971
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
38972
+ Completed 200 OK in 28ms (Views: 26.5ms | Allocations: 2333)
38973
+ Processing by ClWiki::PageController#show as HTML
38974
+ Redirected to http://test.host/wiki/FrontPage
38975
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38976
+ Completed 302 Found in 1ms (Allocations: 413)
38977
+ Processing by ClWiki::PageController#show as HTML
38978
+ Parameters: {"page_name"=>"NewPage"}
38979
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
38980
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
38981
+ Completed 200 OK in 3ms (Views: 1.5ms | Allocations: 2371)
38982
+ Processing by ClWiki::PageController#show as HTML
38983
+ Redirected to http://test.host/wiki/FrontPage
38984
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38985
+ Completed 302 Found in 1ms (Allocations: 413)
38986
+ Processing by ClWiki::PageController#recent as RSS
38987
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
38988
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 13.6ms | Allocations: 3174)
38989
+ Completed 200 OK in 17ms (Views: 14.6ms | Allocations: 4332)
38990
+ Processing by ClWiki::PageController#show as HTML
38991
+ Redirected to http://test.host/wiki/FrontPage
38992
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
38993
+ Completed 302 Found in 1ms (Allocations: 413)
38994
+ Processing by ClWiki::PageController#recent as HTML
38995
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
38996
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 169)
38997
+ Completed 200 OK in 5ms (Views: 2.7ms | Allocations: 2776)
38998
+ Processing by ClWiki::PageController#show as HTML
38999
+ Redirected to http://test.host/wiki/FrontPage
39000
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39001
+ Completed 302 Found in 1ms (Allocations: 413)
39002
+ Processing by ClWiki::PageController#edit as HTML
39003
+ Parameters: {"page_name"=>"NewPage"}
39004
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39005
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 318)
39006
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2402)
39007
+ Processing by ClWiki::PageController#show as HTML
39008
+ Redirected to http://test.host/wiki/FrontPage
39009
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39010
+ Completed 302 Found in 1ms (Allocations: 413)
39011
+ Processing by ClWiki::PageController#edit as HTML
39012
+ Parameters: {"page_name"=>"NewPage"}
39013
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39014
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
39015
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2397)
39016
+ Processing by ClWiki::PageController#update as HTML
39017
+ Parameters: {"client_mod_time"=>"1580612361", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
39018
+ Redirected to http://test.host/wiki/NewPage
39019
+ Completed 302 Found in 2ms (Views: 1.9ms | Allocations: 987)
39020
+ Processing by ClWiki::PageController#show as HTML
39021
+ Redirected to http://test.host/wiki/FrontPage
39022
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39023
+ Completed 302 Found in 1ms (Allocations: 413)
39024
+ Processing by ClWiki::PageController#edit as HTML
39025
+ Parameters: {"page_name"=>"DoNotKillMe"}
39026
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39027
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 401)
39028
+ Completed 200 OK in 4ms (Views: 2.0ms | Allocations: 2897)
39029
+ Processing by ClWiki::PageController#update as HTML
39030
+ Parameters: {"client_mod_time"=>"1580871561", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
39031
+ Redirected to http://test.host/wiki/DoNotKillMe
39032
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 1461)
39033
+ Processing by ClWiki::PageController#show as HTML
39034
+ Redirected to http://test.host/wiki/FrontPage
39035
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39036
+ Completed 302 Found in 1ms (Allocations: 413)
39037
+ Processing by ClWiki::PageController#find as HTML
39038
+ Parameters: {"search_text"=>"sheep"}
39039
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39040
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 477)
39041
+ Completed 200 OK in 4ms (Views: 2.5ms | Allocations: 2670)
39042
+ Processing by ClWiki::PageController#show as HTML
39043
+ Redirected to http://test.host/wiki/FrontPage
39044
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39045
+ Completed 302 Found in 1ms (Allocations: 413)
39046
+ Processing by ClWiki::PageController#show as HTML
39047
+ Redirected to http://test.host/wiki/login
39048
+ Filter chain halted as :authorized rendered or redirected
39049
+ Completed 302 Found in 0ms (Allocations: 326)
39050
+ Processing by ClWiki::PageController#show as HTML
39051
+ Redirected to http://test.host/wiki/FrontPage
39052
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39053
+ Completed 302 Found in 1ms (Allocations: 413)
39054
+ Processing by ClWiki::PageController#recent as HTML
39055
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
39056
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
39057
+ Completed 200 OK in 5ms (Views: 2.2ms | Allocations: 2734)
39058
+ Processing by ClWiki::PageController#show as HTML
39059
+ Redirected to http://test.host/wiki/FrontPage
39060
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39061
+ Completed 302 Found in 1ms (Allocations: 413)
39062
+ Processing by ClWiki::PageController#edit as HTML
39063
+ Parameters: {"page_name"=>"NewPage"}
39064
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39065
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 315)
39066
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2399)
39067
+ Processing by ClWiki::PageController#update as HTML
39068
+ Parameters: {"client_mod_time"=>"1580612361", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
39069
+ Redirected to http://test.host/wiki/NewPage/edit
39070
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 985)
39071
+ Processing by ClWiki::PageController#show as HTML
39072
+ Redirected to http://test.host/wiki/FrontPage
39073
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39074
+ Completed 302 Found in 1ms (Allocations: 413)
39075
+ Processing by ClWiki::PageController#find as HTML
39076
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39077
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 185)
39078
+ Completed 200 OK in 2ms (Views: 1.7ms | Allocations: 2092)
39079
+ Processing by ClWiki::PageController#show as HTML
39080
+ Redirected to http://test.host/wiki/FrontPage
39081
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39082
+ Completed 302 Found in 1ms (Allocations: 413)
39083
+ Processing by ClWiki::PageController#edit as HTML
39084
+ Parameters: {"page_name"=>"NewEncryptedPage"}
39085
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39086
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
39087
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2397)
39088
+ Processing by ClWiki::PageController#update as HTML
39089
+ Parameters: {"client_mod_time"=>"1580612361", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39090
+ Redirected to http://test.host/wiki/NewEncryptedPage
39091
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 1175)
39092
+ Processing by ClWiki::PageController#update as HTML
39093
+ Parameters: {"client_mod_time"=>"1580612361", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39094
+ Redirected to http://test.host/wiki/NewEncryptedPage
39095
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 1135)
39096
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39097
+ Processing by ClWiki::SessionsController#create as HTML
39098
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39099
+ Redirected to http://www.example.com/wiki/
39100
+ Completed 302 Found in 17ms (Allocations: 500)
39101
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39102
+ Processing by ClWiki::PageController#show as HTML
39103
+ Parameters: {"page"=>"/ChrisMorris"}
39104
+ Redirected to http://www.example.com/wiki/ChrisMorris
39105
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39106
+ Completed 301 Moved Permanently in 1ms (Allocations: 758)
39107
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39108
+ Processing by ClWiki::SessionsController#create as HTML
39109
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39110
+ Redirected to http://www.example.com/wiki/
39111
+ Completed 302 Found in 13ms (Allocations: 366)
39112
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39113
+ Processing by ClWiki::PageController#show as HTML
39114
+ Parameters: {"page"=>"ChrisMorris"}
39115
+ Redirected to http://www.example.com/wiki/ChrisMorris
39116
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39117
+ Completed 301 Moved Permanently in 2ms (Allocations: 587)
39118
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39119
+ Processing by ClWiki::SessionsController#create as HTML
39120
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39121
+ Redirected to http://www.example.com/wiki/
39122
+ Completed 302 Found in 14ms (Allocations: 366)
39123
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39124
+ Processing by ClWiki::PageController#show as HTML
39125
+ Parameters: {"page"=>"/SomeParent/DotTest"}
39126
+ Redirected to http://www.example.com/wiki/DotTest
39127
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39128
+ Completed 301 Moved Permanently in 1ms (Allocations: 589)
39129
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39130
+ Processing by ClWiki::SessionsController#create as HTML
39131
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39132
+ Redirected to http://www.example.com/wiki/
39133
+ Completed 302 Found in 14ms (Allocations: 366)
39134
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-02-01 21:04:25 -0600
39135
+ Processing by ClWiki::PageController#show as HTML
39136
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
39137
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
39138
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39139
+ Completed 301 Moved Permanently in 1ms (Allocations: 591)
39140
+ Processing by ClWiki::SessionsController#create as HTML
39141
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39142
+ Redirected to http://test.host/wiki/
39143
+ Completed 302 Found in 13ms (Allocations: 329)
39144
+ Processing by ClWiki::SessionsController#create as HTML
39145
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39146
+ Redirected to http://test.host/wiki/login
39147
+ Completed 302 Found in 2ms (Allocations: 288)
39148
+ Processing by ClWiki::SessionsController#create as HTML
39149
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39150
+ Redirected to http://test.host/wiki/login
39151
+ Completed 302 Found in 2ms (Allocations: 287)
39152
+ Processing by ClWiki::SessionsController#create as HTML
39153
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39154
+ Redirected to http://test.host/wiki/
39155
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39156
+ Completed 302 Found in 0ms (Allocations: 196)
39157
+ Processing by ClWiki::SessionsController#new as HTML
39158
+ Redirected to http://test.host/wiki/
39159
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39160
+ Completed 302 Found in 0ms (Allocations: 196)
39161
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:26 -0600
39162
+ Processing by ClWiki::SessionsController#new as HTML
39163
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
39164
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 2.1ms | Allocations: 730)
39165
+ Completed 200 OK in 41ms (Views: 38.7ms | Allocations: 15425)
39166
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:26 -0600
39167
+ Processing by ClWiki::SessionsController#create as HTML
39168
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39169
+ Redirected to http://www.example.com/wiki/
39170
+ Completed 302 Found in 13ms (Allocations: 366)
39171
+ Started GET "/wiki/" for 127.0.0.1 at 2020-02-01 21:04:26 -0600
39172
+ Processing by ClWiki::PageController#show as HTML
39173
+ Redirected to http://www.example.com/wiki/login
39174
+ Filter chain halted as :authorized rendered or redirected
39175
+ Completed 302 Found in 1ms (Allocations: 259)
39176
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-02-01 21:04:26 -0600
39177
+ Processing by ClWiki::PageController#show as HTML
39178
+ Parameters: {"page_name"=>"FrontPage"}
39179
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39180
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 93)
39181
+ Completed 200 OK in 7ms (Views: 2.8ms | Allocations: 3768)
39182
+ Processing by ClWiki::PageController#edit as HTML
39183
+ Parameters: {"page_name"=>"NewPage"}
39184
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39185
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.4ms | Allocations: 521)
39186
+ Completed 200 OK in 7ms (Views: 4.8ms | Allocations: 2719)
39187
+ Processing by ClWiki::PageController#show as HTML
39188
+ Redirected to http://test.host/wiki/FrontPage
39189
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39190
+ Completed 302 Found in 1ms (Allocations: 305)
39191
+ Processing by ClWiki::PageController#show as HTML
39192
+ Redirected to http://test.host/wiki/FrontPage
39193
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39194
+ Completed 302 Found in 1ms (Allocations: 413)
39195
+ Processing by ClWiki::PageController#recent as RSS
39196
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
39197
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 17.1ms | Allocations: 2801)
39198
+ Completed 200 OK in 20ms (Views: 18.1ms | Allocations: 3579)
39199
+ Processing by ClWiki::PageController#show as HTML
39200
+ Redirected to http://test.host/wiki/FrontPage
39201
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39202
+ Completed 302 Found in 1ms (Allocations: 418)
39203
+ Processing by ClWiki::PageController#edit as HTML
39204
+ Parameters: {"page_name"=>"NewEncryptedPage"}
39205
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39206
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 320)
39207
+ Completed 200 OK in 7ms (Views: 4.9ms | Allocations: 2412)
39208
+ Processing by ClWiki::PageController#update as HTML
39209
+ Parameters: {"client_mod_time"=>"1580612666", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39210
+ Redirected to http://test.host/wiki/NewEncryptedPage
39211
+ Completed 302 Found in 4ms (Views: 4.9ms | Allocations: 1178)
39212
+ Processing by ClWiki::PageController#update as HTML
39213
+ Parameters: {"client_mod_time"=>"1580612666", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39214
+ Redirected to http://test.host/wiki/NewEncryptedPage
39215
+ Completed 302 Found in 3ms (Views: 4.9ms | Allocations: 1135)
39216
+ Processing by ClWiki::PageController#show as HTML
39217
+ Redirected to http://test.host/wiki/FrontPage
39218
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39219
+ Completed 302 Found in 1ms (Allocations: 413)
39220
+ Processing by ClWiki::PageController#recent as HTML
39221
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
39222
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 186)
39223
+ Completed 200 OK in 4ms (Views: 2.0ms | Allocations: 3116)
39224
+ Processing by ClWiki::PageController#show as HTML
39225
+ Redirected to http://test.host/wiki/FrontPage
39226
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39227
+ Completed 302 Found in 1ms (Allocations: 413)
39228
+ Processing by ClWiki::PageController#show as HTML
39229
+ Parameters: {"page_name"=>"notavalidname"}
39230
+ Redirected to http://test.host/wiki/FrontPage
39231
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39232
+ Completed 302 Found in 1ms (Allocations: 410)
39233
+ Processing by ClWiki::PageController#show as HTML
39234
+ Redirected to http://test.host/wiki/FrontPage
39235
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39236
+ Completed 302 Found in 1ms (Allocations: 413)
39237
+ Processing by ClWiki::PageController#show as HTML
39238
+ Parameters: {"page_name"=>"NewPage"}
39239
+ Redirected to http://test.host/wiki/FrontPage
39240
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39241
+ Completed 302 Found in 1ms (Allocations: 424)
39242
+ Processing by ClWiki::PageController#show as HTML
39243
+ Redirected to http://test.host/wiki/FrontPage
39244
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39245
+ Completed 302 Found in 1ms (Allocations: 413)
39246
+ Processing by ClWiki::PageController#edit as HTML
39247
+ Parameters: {"page_name"=>"NewPage"}
39248
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39249
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 317)
39250
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2401)
39251
+ Processing by ClWiki::PageController#update as HTML
39252
+ Parameters: {"client_mod_time"=>"1580612666", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
39253
+ Redirected to http://test.host/wiki/NewPage
39254
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 987)
39255
+ Processing by ClWiki::PageController#show as HTML
39256
+ Redirected to http://test.host/wiki/FrontPage
39257
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39258
+ Completed 302 Found in 1ms (Allocations: 413)
39259
+ Processing by ClWiki::PageController#show as HTML
39260
+ Redirected to http://test.host/wiki/login
39261
+ Filter chain halted as :authorized rendered or redirected
39262
+ Completed 302 Found in 0ms (Allocations: 326)
39263
+ Processing by ClWiki::PageController#show as HTML
39264
+ Redirected to http://test.host/wiki/FrontPage
39265
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39266
+ Completed 302 Found in 1ms (Allocations: 413)
39267
+ Processing by ClWiki::PageController#recent as HTML
39268
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
39269
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
39270
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2397)
39271
+ Processing by ClWiki::PageController#show as HTML
39272
+ Redirected to http://test.host/wiki/FrontPage
39273
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39274
+ Completed 302 Found in 1ms (Allocations: 413)
39275
+ Processing by ClWiki::PageController#find as HTML
39276
+ Parameters: {"search_text"=>"sheep"}
39277
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39278
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 480)
39279
+ Completed 200 OK in 4ms (Views: 2.4ms | Allocations: 2673)
39280
+ Processing by ClWiki::PageController#show as HTML
39281
+ Redirected to http://test.host/wiki/FrontPage
39282
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39283
+ Completed 302 Found in 1ms (Allocations: 413)
39284
+ Processing by ClWiki::PageController#edit as HTML
39285
+ Parameters: {"page_name"=>"NewPage"}
39286
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39287
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 314)
39288
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2399)
39289
+ Processing by ClWiki::PageController#show as HTML
39290
+ Redirected to http://test.host/wiki/FrontPage
39291
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39292
+ Completed 302 Found in 1ms (Allocations: 413)
39293
+ Processing by ClWiki::PageController#edit as HTML
39294
+ Parameters: {"page_name"=>"DoNotKillMe"}
39295
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39296
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 400)
39297
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2899)
39298
+ Processing by ClWiki::PageController#update as HTML
39299
+ Parameters: {"client_mod_time"=>"1580871866", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
39300
+ Redirected to http://test.host/wiki/DoNotKillMe
39301
+ Completed 302 Found in 2ms (Views: 1.6ms | Allocations: 1461)
39302
+ Processing by ClWiki::PageController#show as HTML
39303
+ Redirected to http://test.host/wiki/FrontPage
39304
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39305
+ Completed 302 Found in 2ms (Allocations: 413)
39306
+ Processing by ClWiki::PageController#find as HTML
39307
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39308
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 185)
39309
+ Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 2092)
39310
+ Processing by ClWiki::PageController#show as HTML
39311
+ Redirected to http://test.host/wiki/FrontPage
39312
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39313
+ Completed 302 Found in 1ms (Allocations: 413)
39314
+ Processing by ClWiki::PageController#show as HTML
39315
+ Redirected to http://test.host/wiki/FrontPage
39316
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39317
+ Completed 302 Found in 1ms (Allocations: 412)
39318
+ Processing by ClWiki::PageController#show as HTML
39319
+ Redirected to http://test.host/wiki/FrontPage
39320
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39321
+ Completed 302 Found in 1ms (Allocations: 413)
39322
+ Processing by ClWiki::PageController#edit as HTML
39323
+ Parameters: {"page_name"=>"NewPage"}
39324
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39325
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 313)
39326
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2396)
39327
+ Processing by ClWiki::PageController#update as HTML
39328
+ Parameters: {"client_mod_time"=>"1580612666", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
39329
+ Redirected to http://test.host/wiki/NewPage/edit
39330
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 985)
39331
+ Processing by ClWiki::PageController#show as HTML
39332
+ Redirected to http://test.host/wiki/FrontPage
39333
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39334
+ Completed 302 Found in 1ms (Allocations: 413)
39335
+ Processing by ClWiki::PageController#show as HTML
39336
+ Parameters: {"page_name"=>"SourcePage"}
39337
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39338
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
39339
+ Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 2333)
39340
+ Processing by ClWiki::PageController#show as HTML
39341
+ Redirected to http://test.host/wiki/FrontPage
39342
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39343
+ Completed 302 Found in 1ms (Allocations: 413)
39344
+ Processing by ClWiki::PageController#show as HTML
39345
+ Parameters: {"page_name"=>"NewPage"}
39346
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39347
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
39348
+ Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2371)
39349
+ Processing by ClWiki::PageController#show as HTML
39350
+ Redirected to http://test.host/wiki/FrontPage
39351
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39352
+ Completed 302 Found in 1ms (Allocations: 413)
39353
+ Processing by ClWiki::PageController#edit as HTML
39354
+ Parameters: {"page_name"=>"DoNotKillMe"}
39355
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39356
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 400)
39357
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2896)
39358
+ Processing by ClWiki::PageController#show as HTML
39359
+ Redirected to http://test.host/wiki/FrontPage
39360
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39361
+ Completed 302 Found in 1ms (Allocations: 413)
39362
+ Processing by ClWiki::PageController#edit as HTML
39363
+ Parameters: {"page_name"=>"ANewPage"}
39364
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39365
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 313)
39366
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2396)
39367
+ Processing by ClWiki::PageController#edit as HTML
39368
+ Parameters: {"page_name"=>"AnotherNewPage"}
39369
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39370
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 311)
39371
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2389)
39372
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39373
+ Processing by ClWiki::SessionsController#create as HTML
39374
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39375
+ Redirected to http://www.example.com/wiki/
39376
+ Completed 302 Found in 17ms (Allocations: 501)
39377
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39378
+ Processing by ClWiki::PageController#show as HTML
39379
+ Parameters: {"page"=>"/ChrisMorris"}
39380
+ Redirected to http://www.example.com/wiki/ChrisMorris
39381
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39382
+ Completed 301 Moved Permanently in 7ms (Allocations: 2230)
39383
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39384
+ Processing by ClWiki::SessionsController#create as HTML
39385
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39386
+ Redirected to http://www.example.com/wiki/
39387
+ Completed 302 Found in 14ms (Allocations: 366)
39388
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39389
+ Processing by ClWiki::PageController#show as HTML
39390
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
39391
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
39392
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39393
+ Completed 301 Moved Permanently in 1ms (Allocations: 591)
39394
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39395
+ Processing by ClWiki::SessionsController#create as HTML
39396
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39397
+ Redirected to http://www.example.com/wiki/
39398
+ Completed 302 Found in 14ms (Allocations: 366)
39399
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39400
+ Processing by ClWiki::PageController#show as HTML
39401
+ Parameters: {"page"=>"/SomeParent/DotTest"}
39402
+ Redirected to http://www.example.com/wiki/DotTest
39403
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39404
+ Completed 301 Moved Permanently in 1ms (Allocations: 589)
39405
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39406
+ Processing by ClWiki::SessionsController#create as HTML
39407
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39408
+ Redirected to http://www.example.com/wiki/
39409
+ Completed 302 Found in 13ms (Allocations: 366)
39410
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39411
+ Processing by ClWiki::PageController#show as HTML
39412
+ Parameters: {"page"=>"ChrisMorris"}
39413
+ Redirected to http://www.example.com/wiki/ChrisMorris
39414
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39415
+ Completed 301 Moved Permanently in 2ms (Allocations: 587)
39416
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39417
+ Processing by ClWiki::SessionsController#new as HTML
39418
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
39419
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 1.3ms | Allocations: 731)
39420
+ Completed 200 OK in 37ms (Views: 35.3ms | Allocations: 15329)
39421
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39422
+ Processing by ClWiki::SessionsController#create as HTML
39423
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39424
+ Redirected to http://www.example.com/wiki/
39425
+ Completed 302 Found in 14ms (Allocations: 366)
39426
+ Started GET "/wiki/" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39427
+ Processing by ClWiki::PageController#show as HTML
39428
+ Redirected to http://www.example.com/wiki/login
39429
+ Filter chain halted as :authorized rendered or redirected
39430
+ Completed 302 Found in 1ms (Allocations: 260)
39431
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-02-01 21:04:39 -0600
39432
+ Processing by ClWiki::PageController#show as HTML
39433
+ Parameters: {"page_name"=>"FrontPage"}
39434
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39435
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 96)
39436
+ Completed 200 OK in 8ms (Views: 3.9ms | Allocations: 3752)
39437
+ Processing by ClWiki::PageController#show as HTML
39438
+ Redirected to http://test.host/wiki/FrontPage
39439
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39440
+ Completed 302 Found in 1ms (Allocations: 305)
39441
+ Processing by ClWiki::PageController#edit as HTML
39442
+ Parameters: {"page_name"=>"NewPage"}
39443
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39444
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.3ms | Allocations: 521)
39445
+ Completed 200 OK in 5ms (Views: 3.7ms | Allocations: 2719)
39446
+ Processing by ClWiki::PageController#show as HTML
39447
+ Redirected to http://test.host/wiki/FrontPage
39448
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39449
+ Completed 302 Found in 1ms (Allocations: 413)
39450
+ Processing by ClWiki::PageController#show as HTML
39451
+ Parameters: {"page_name"=>"NewPage"}
39452
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39453
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
39454
+ Completed 200 OK in 5ms (Views: 2.7ms | Allocations: 2348)
39455
+ Processing by ClWiki::PageController#show as HTML
39456
+ Redirected to http://test.host/wiki/FrontPage
39457
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39458
+ Completed 302 Found in 1ms (Allocations: 413)
39459
+ Processing by ClWiki::PageController#show as HTML
39460
+ Parameters: {"page_name"=>"SourcePage"}
39461
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39462
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
39463
+ Completed 200 OK in 6ms (Views: 3.2ms | Allocations: 2334)
39464
+ Processing by ClWiki::PageController#show as HTML
39465
+ Redirected to http://test.host/wiki/FrontPage
39466
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39467
+ Completed 302 Found in 1ms (Allocations: 413)
39468
+ Processing by ClWiki::PageController#recent as RSS
39469
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
39470
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 11.2ms | Allocations: 3174)
39471
+ Completed 200 OK in 16ms (Views: 12.9ms | Allocations: 4332)
39472
+ Processing by ClWiki::PageController#show as HTML
39473
+ Redirected to http://test.host/wiki/FrontPage
39474
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39475
+ Completed 302 Found in 1ms (Allocations: 413)
39476
+ Processing by ClWiki::PageController#recent as HTML
39477
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
39478
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 184)
39479
+ Completed 200 OK in 9ms (Views: 4.0ms | Allocations: 3110)
39480
+ Processing by ClWiki::PageController#show as HTML
39481
+ Redirected to http://test.host/wiki/FrontPage
39482
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39483
+ Completed 302 Found in 1ms (Allocations: 413)
39484
+ Processing by ClWiki::PageController#show as HTML
39485
+ Redirected to http://test.host/wiki/login
39486
+ Filter chain halted as :authorized rendered or redirected
39487
+ Completed 302 Found in 0ms (Allocations: 326)
39488
+ Processing by ClWiki::PageController#show as HTML
39489
+ Redirected to http://test.host/wiki/FrontPage
39490
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39491
+ Completed 302 Found in 2ms (Allocations: 413)
39492
+ Processing by ClWiki::PageController#show as HTML
39493
+ Redirected to http://test.host/wiki/FrontPage
39494
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39495
+ Completed 302 Found in 1ms (Allocations: 412)
39496
+ Processing by ClWiki::PageController#show as HTML
39497
+ Redirected to http://test.host/wiki/FrontPage
39498
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39499
+ Completed 302 Found in 1ms (Allocations: 413)
39500
+ Processing by ClWiki::PageController#edit as HTML
39501
+ Parameters: {"page_name"=>"NewPage"}
39502
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39503
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 318)
39504
+ Completed 200 OK in 17ms (Views: 15.5ms | Allocations: 2403)
39505
+ Processing by ClWiki::PageController#update as HTML
39506
+ Parameters: {"client_mod_time"=>"1580612680", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
39507
+ Redirected to http://test.host/wiki/NewPage
39508
+ Completed 302 Found in 3ms (Views: 15.5ms | Allocations: 987)
39509
+ Processing by ClWiki::PageController#show as HTML
39510
+ Redirected to http://test.host/wiki/FrontPage
39511
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39512
+ Completed 302 Found in 1ms (Allocations: 413)
39513
+ Processing by ClWiki::PageController#edit as HTML
39514
+ Parameters: {"page_name"=>"ANewPage"}
39515
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39516
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 313)
39517
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2397)
39518
+ Processing by ClWiki::PageController#edit as HTML
39519
+ Parameters: {"page_name"=>"AnotherNewPage"}
39520
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39521
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 311)
39522
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2389)
39523
+ Processing by ClWiki::PageController#show as HTML
39524
+ Redirected to http://test.host/wiki/FrontPage
39525
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39526
+ Completed 302 Found in 1ms (Allocations: 413)
39527
+ Processing by ClWiki::PageController#find as HTML
39528
+ Parameters: {"search_text"=>"sheep"}
39529
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39530
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 480)
39531
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2673)
39532
+ Processing by ClWiki::PageController#show as HTML
39533
+ Redirected to http://test.host/wiki/FrontPage
39534
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39535
+ Completed 302 Found in 1ms (Allocations: 413)
39536
+ Processing by ClWiki::PageController#edit as HTML
39537
+ Parameters: {"page_name"=>"NewPage"}
39538
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39539
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 315)
39540
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2399)
39541
+ Processing by ClWiki::PageController#update as HTML
39542
+ Parameters: {"client_mod_time"=>"1580612680", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
39543
+ Redirected to http://test.host/wiki/NewPage/edit
39544
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 985)
39545
+ Processing by ClWiki::PageController#show as HTML
39546
+ Redirected to http://test.host/wiki/FrontPage
39547
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39548
+ Completed 302 Found in 1ms (Allocations: 413)
39549
+ Processing by ClWiki::PageController#find as HTML
39550
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39551
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 185)
39552
+ Completed 200 OK in 3ms (Views: 2.5ms | Allocations: 2092)
39553
+ Processing by ClWiki::PageController#show as HTML
39554
+ Redirected to http://test.host/wiki/FrontPage
39555
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39556
+ Completed 302 Found in 1ms (Allocations: 413)
39557
+ Processing by ClWiki::PageController#edit as HTML
39558
+ Parameters: {"page_name"=>"NewPage"}
39559
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39560
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 314)
39561
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2397)
39562
+ Processing by ClWiki::PageController#show as HTML
39563
+ Redirected to http://test.host/wiki/FrontPage
39564
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39565
+ Completed 302 Found in 1ms (Allocations: 413)
39566
+ Processing by ClWiki::PageController#show as HTML
39567
+ Parameters: {"page_name"=>"notavalidname"}
39568
+ Redirected to http://test.host/wiki/FrontPage
39569
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39570
+ Completed 302 Found in 1ms (Allocations: 410)
39571
+ Processing by ClWiki::PageController#show as HTML
39572
+ Redirected to http://test.host/wiki/FrontPage
39573
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39574
+ Completed 302 Found in 1ms (Allocations: 413)
39575
+ Processing by ClWiki::PageController#edit as HTML
39576
+ Parameters: {"page_name"=>"DoNotKillMe"}
39577
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39578
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 401)
39579
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2901)
39580
+ Processing by ClWiki::PageController#show as HTML
39581
+ Redirected to http://test.host/wiki/FrontPage
39582
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39583
+ Completed 302 Found in 1ms (Allocations: 413)
39584
+ Processing by ClWiki::PageController#edit as HTML
39585
+ Parameters: {"page_name"=>"DoNotKillMe"}
39586
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39587
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 401)
39588
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2897)
39589
+ Processing by ClWiki::PageController#update as HTML
39590
+ Parameters: {"client_mod_time"=>"1580871880", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
39591
+ Redirected to http://test.host/wiki/DoNotKillMe
39592
+ Completed 302 Found in 2ms (Views: 1.9ms | Allocations: 1461)
39593
+ Processing by ClWiki::PageController#show as HTML
39594
+ Redirected to http://test.host/wiki/FrontPage
39595
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39596
+ Completed 302 Found in 1ms (Allocations: 413)
39597
+ Processing by ClWiki::PageController#recent as HTML
39598
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
39599
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
39600
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2397)
39601
+ Processing by ClWiki::PageController#show as HTML
39602
+ Redirected to http://test.host/wiki/FrontPage
39603
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39604
+ Completed 302 Found in 1ms (Allocations: 413)
39605
+ Processing by ClWiki::PageController#show as HTML
39606
+ Parameters: {"page_name"=>"NewPage"}
39607
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39608
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
39609
+ Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2371)
39610
+ Processing by ClWiki::PageController#show as HTML
39611
+ Redirected to http://test.host/wiki/FrontPage
39612
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39613
+ Completed 302 Found in 1ms (Allocations: 413)
39614
+ Processing by ClWiki::PageController#edit as HTML
39615
+ Parameters: {"page_name"=>"NewEncryptedPage"}
39616
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39617
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
39618
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2397)
39619
+ Processing by ClWiki::PageController#update as HTML
39620
+ Parameters: {"client_mod_time"=>"1580612680", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39621
+ Redirected to http://test.host/wiki/NewEncryptedPage
39622
+ Completed 302 Found in 2ms (Views: 1.5ms | Allocations: 1435)
39623
+ Processing by ClWiki::PageController#update as HTML
39624
+ Parameters: {"client_mod_time"=>"1580612680", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39625
+ Redirected to http://test.host/wiki/NewEncryptedPage
39626
+ Completed 302 Found in 2ms (Views: 1.5ms | Allocations: 1135)
39627
+ Processing by ClWiki::SessionsController#create as HTML
39628
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39629
+ Redirected to http://test.host/wiki/
39630
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39631
+ Completed 302 Found in 0ms (Allocations: 196)
39632
+ Processing by ClWiki::SessionsController#new as HTML
39633
+ Redirected to http://test.host/wiki/
39634
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39635
+ Completed 302 Found in 1ms (Allocations: 196)
39636
+ Processing by ClWiki::SessionsController#create as HTML
39637
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39638
+ Redirected to http://test.host/wiki/login
39639
+ Completed 302 Found in 2ms (Allocations: 287)
39640
+ Processing by ClWiki::SessionsController#create as HTML
39641
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39642
+ Redirected to http://test.host/wiki/
39643
+ Completed 302 Found in 14ms (Allocations: 329)
39644
+ Processing by ClWiki::SessionsController#create as HTML
39645
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39646
+ Redirected to http://test.host/wiki/login
39647
+ Completed 302 Found in 2ms (Allocations: 287)
39648
+ Processing by ClWiki::PageController#edit as HTML
39649
+ Parameters: {"page_name"=>"NewPage"}
39650
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39651
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.4ms | Allocations: 804)
39652
+ Completed 200 OK in 37ms (Views: 32.8ms | Allocations: 15842)
39653
+ Processing by ClWiki::PageController#show as HTML
39654
+ Redirected to http://test.host/wiki/FrontPage
39655
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39656
+ Completed 302 Found in 1ms (Allocations: 322)
39657
+ Processing by ClWiki::PageController#show as HTML
39658
+ Redirected to http://test.host/wiki/FrontPage
39659
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39660
+ Completed 302 Found in 1ms (Allocations: 415)
39661
+ Processing by ClWiki::PageController#edit as HTML
39662
+ Parameters: {"page_name"=>"NewPage"}
39663
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39664
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 319)
39665
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2403)
39666
+ Processing by ClWiki::PageController#update as HTML
39667
+ Parameters: {"client_mod_time"=>"1580612695", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
39668
+ Redirected to http://test.host/wiki/NewPage
39669
+ Completed 302 Found in 2ms (Views: 2.8ms | Allocations: 988)
39670
+ Processing by ClWiki::PageController#show as HTML
39671
+ Redirected to http://test.host/wiki/FrontPage
39672
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39673
+ Completed 302 Found in 1ms (Allocations: 413)
39674
+ Processing by ClWiki::PageController#show as HTML
39675
+ Redirected to http://test.host/wiki/login
39676
+ Filter chain halted as :authorized rendered or redirected
39677
+ Completed 302 Found in 0ms (Allocations: 327)
39678
+ Processing by ClWiki::PageController#show as HTML
39679
+ Redirected to http://test.host/wiki/FrontPage
39680
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39681
+ Completed 302 Found in 1ms (Allocations: 413)
39682
+ Processing by ClWiki::PageController#show as HTML
39683
+ Redirected to http://test.host/wiki/FrontPage
39684
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39685
+ Completed 302 Found in 1ms (Allocations: 412)
39686
+ Processing by ClWiki::PageController#show as HTML
39687
+ Redirected to http://test.host/wiki/FrontPage
39688
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39689
+ Completed 302 Found in 1ms (Allocations: 413)
39690
+ Processing by ClWiki::PageController#show as HTML
39691
+ Parameters: {"page_name"=>"NewPage"}
39692
+ Redirected to http://test.host/wiki/FrontPage
39693
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39694
+ Completed 302 Found in 1ms (Allocations: 424)
39695
+ Processing by ClWiki::PageController#show as HTML
39696
+ Redirected to http://test.host/wiki/FrontPage
39697
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39698
+ Completed 302 Found in 1ms (Allocations: 413)
39699
+ Processing by ClWiki::PageController#edit as HTML
39700
+ Parameters: {"page_name"=>"NewPage"}
39701
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39702
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 313)
39703
+ Completed 200 OK in 3ms (Views: 2.1ms | Allocations: 2396)
39704
+ Processing by ClWiki::PageController#update as HTML
39705
+ Parameters: {"client_mod_time"=>"1580612695", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
39706
+ Redirected to http://test.host/wiki/NewPage/edit
39707
+ Completed 302 Found in 2ms (Views: 2.1ms | Allocations: 986)
39708
+ Processing by ClWiki::PageController#show as HTML
39709
+ Redirected to http://test.host/wiki/FrontPage
39710
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39711
+ Completed 302 Found in 1ms (Allocations: 413)
39712
+ Processing by ClWiki::PageController#edit as HTML
39713
+ Parameters: {"page_name"=>"NewEncryptedPage"}
39714
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39715
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 313)
39716
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2396)
39717
+ Processing by ClWiki::PageController#update as HTML
39718
+ Parameters: {"client_mod_time"=>"1580612695", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39719
+ Redirected to http://test.host/wiki/NewEncryptedPage
39720
+ Completed 302 Found in 4ms (Views: 1.7ms | Allocations: 1435)
39721
+ Processing by ClWiki::PageController#update as HTML
39722
+ Parameters: {"client_mod_time"=>"1580612695", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
39723
+ Redirected to http://test.host/wiki/NewEncryptedPage
39724
+ Completed 302 Found in 3ms (Views: 1.7ms | Allocations: 1135)
39725
+ Processing by ClWiki::PageController#show as HTML
39726
+ Redirected to http://test.host/wiki/FrontPage
39727
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39728
+ Completed 302 Found in 1ms (Allocations: 413)
39729
+ Processing by ClWiki::PageController#show as HTML
39730
+ Parameters: {"page_name"=>"notavalidname"}
39731
+ Redirected to http://test.host/wiki/FrontPage
39732
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39733
+ Completed 302 Found in 1ms (Allocations: 410)
39734
+ Processing by ClWiki::PageController#show as HTML
39735
+ Redirected to http://test.host/wiki/FrontPage
39736
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39737
+ Completed 302 Found in 1ms (Allocations: 413)
39738
+ Processing by ClWiki::PageController#edit as HTML
39739
+ Parameters: {"page_name"=>"DoNotKillMe"}
39740
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39741
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 400)
39742
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 2899)
39743
+ Processing by ClWiki::PageController#show as HTML
39744
+ Redirected to http://test.host/wiki/FrontPage
39745
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39746
+ Completed 302 Found in 1ms (Allocations: 413)
39747
+ Processing by ClWiki::PageController#edit as HTML
39748
+ Parameters: {"page_name"=>"DoNotKillMe"}
39749
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39750
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 400)
39751
+ Completed 200 OK in 3ms (Views: 2.3ms | Allocations: 2896)
39752
+ Processing by ClWiki::PageController#update as HTML
39753
+ Parameters: {"client_mod_time"=>"1580871895", "page_content"=>"not dead yet!", "page_name"=>"DoNotKillMe"}
39754
+ Redirected to http://test.host/wiki/DoNotKillMe
39755
+ Completed 302 Found in 3ms (Views: 2.3ms | Allocations: 1461)
39756
+ Processing by ClWiki::PageController#show as HTML
39757
+ Redirected to http://test.host/wiki/FrontPage
39758
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39759
+ Completed 302 Found in 1ms (Allocations: 413)
39760
+ Processing by ClWiki::PageController#recent as RSS
39761
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
39762
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 8.5ms | Allocations: 3175)
39763
+ Completed 200 OK in 14ms (Views: 9.6ms | Allocations: 5165)
39764
+ Processing by ClWiki::PageController#show as HTML
39765
+ Redirected to http://test.host/wiki/FrontPage
39766
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39767
+ Completed 302 Found in 1ms (Allocations: 413)
39768
+ Processing by ClWiki::PageController#recent as HTML
39769
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
39770
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 187)
39771
+ Completed 200 OK in 7ms (Views: 2.8ms | Allocations: 3115)
39772
+ Processing by ClWiki::PageController#show as HTML
39773
+ Redirected to http://test.host/wiki/FrontPage
39774
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39775
+ Completed 302 Found in 1ms (Allocations: 413)
39776
+ Processing by ClWiki::PageController#show as HTML
39777
+ Parameters: {"page_name"=>"SourcePage"}
39778
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39779
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 93)
39780
+ Completed 200 OK in 4ms (Views: 1.8ms | Allocations: 2652)
39781
+ Processing by ClWiki::PageController#show as HTML
39782
+ Redirected to http://test.host/wiki/FrontPage
39783
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39784
+ Completed 302 Found in 1ms (Allocations: 413)
39785
+ Processing by ClWiki::PageController#edit as HTML
39786
+ Parameters: {"page_name"=>"NewPage"}
39787
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39788
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.6ms | Allocations: 317)
39789
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2401)
39790
+ Processing by ClWiki::PageController#show as HTML
39791
+ Redirected to http://test.host/wiki/FrontPage
39792
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39793
+ Completed 302 Found in 1ms (Allocations: 413)
39794
+ Processing by ClWiki::PageController#find as HTML
39795
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39796
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 471)
39797
+ Completed 200 OK in 4ms (Views: 2.7ms | Allocations: 2611)
39798
+ Processing by ClWiki::PageController#show as HTML
39799
+ Redirected to http://test.host/wiki/FrontPage
39800
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39801
+ Completed 302 Found in 1ms (Allocations: 413)
39802
+ Processing by ClWiki::PageController#find as HTML
39803
+ Parameters: {"search_text"=>"sheep"}
39804
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
39805
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 191)
39806
+ Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 2152)
39807
+ Processing by ClWiki::PageController#show as HTML
39808
+ Redirected to http://test.host/wiki/FrontPage
39809
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39810
+ Completed 302 Found in 1ms (Allocations: 413)
39811
+ Processing by ClWiki::PageController#show as HTML
39812
+ Parameters: {"page_name"=>"NewPage"}
39813
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39814
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
39815
+ Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 2371)
39816
+ Processing by ClWiki::PageController#show as HTML
39817
+ Redirected to http://test.host/wiki/FrontPage
39818
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39819
+ Completed 302 Found in 1ms (Allocations: 413)
39820
+ Processing by ClWiki::PageController#edit as HTML
39821
+ Parameters: {"page_name"=>"ANewPage"}
39822
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39823
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 314)
39824
+ Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 2397)
39825
+ Processing by ClWiki::PageController#edit as HTML
39826
+ Parameters: {"page_name"=>"AnotherNewPage"}
39827
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
39828
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 311)
39829
+ Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 2389)
39830
+ Processing by ClWiki::PageController#show as HTML
39831
+ Redirected to http://test.host/wiki/FrontPage
39832
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
39833
+ Completed 302 Found in 1ms (Allocations: 413)
39834
+ Processing by ClWiki::PageController#recent as HTML
39835
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
39836
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
39837
+ Completed 200 OK in 4ms (Views: 2.2ms | Allocations: 2399)
39838
+ Processing by ClWiki::SessionsController#create as HTML
39839
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39840
+ Redirected to http://test.host/wiki/
39841
+ Completed 302 Found in 13ms (Allocations: 402)
39842
+ Processing by ClWiki::SessionsController#create as HTML
39843
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39844
+ Redirected to http://test.host/wiki/login
39845
+ Completed 302 Found in 2ms (Allocations: 287)
39846
+ Processing by ClWiki::SessionsController#create as HTML
39847
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39848
+ Redirected to http://test.host/wiki/login
39849
+ Completed 302 Found in 2ms (Allocations: 287)
39850
+ Processing by ClWiki::SessionsController#new as HTML
39851
+ Redirected to http://test.host/wiki/
39852
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39853
+ Completed 302 Found in 1ms (Allocations: 196)
39854
+ Processing by ClWiki::SessionsController#create as HTML
39855
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
39856
+ Redirected to http://test.host/wiki/
39857
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39858
+ Completed 302 Found in 0ms (Allocations: 196)
39859
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39860
+ Processing by ClWiki::SessionsController#create as HTML
39861
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39862
+ Redirected to http://www.example.com/wiki/
39863
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39864
+ Completed 302 Found in 5ms (Allocations: 238)
39865
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39866
+ Processing by ClWiki::PageController#show as HTML
39867
+ Parameters: {"page"=>"/ChrisMorris"}
39868
+ Redirected to http://www.example.com/wiki/ChrisMorris
39869
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39870
+ Completed 301 Moved Permanently in 0ms (Allocations: 279)
39871
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39872
+ Processing by ClWiki::SessionsController#create as HTML
39873
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39874
+ Redirected to http://www.example.com/wiki/
39875
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39876
+ Completed 302 Found in 0ms (Allocations: 224)
39877
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39878
+ Processing by ClWiki::PageController#show as HTML
39879
+ Parameters: {"page"=>"/SomeParent/DotTest"}
39880
+ Redirected to http://www.example.com/wiki/DotTest
39881
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39882
+ Completed 301 Moved Permanently in 1ms (Allocations: 280)
39883
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39884
+ Processing by ClWiki::SessionsController#create as HTML
39885
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39886
+ Redirected to http://www.example.com/wiki/
39887
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39888
+ Completed 302 Found in 0ms (Allocations: 224)
39889
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39890
+ Processing by ClWiki::PageController#show as HTML
39891
+ Parameters: {"page"=>"ChrisMorris"}
39892
+ Redirected to http://www.example.com/wiki/ChrisMorris
39893
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39894
+ Completed 301 Moved Permanently in 0ms (Allocations: 278)
39895
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39896
+ Processing by ClWiki::SessionsController#create as HTML
39897
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39898
+ Redirected to http://www.example.com/wiki/
39899
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
39900
+ Completed 302 Found in 0ms (Allocations: 224)
39901
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39902
+ Processing by ClWiki::PageController#show as HTML
39903
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
39904
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
39905
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
39906
+ Completed 301 Moved Permanently in 1ms (Allocations: 280)
39907
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39908
+ Processing by ClWiki::SessionsController#new as HTML
39909
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
39910
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 454)
39911
+ Completed 200 OK in 6ms (Views: 4.6ms | Allocations: 2758)
39912
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39913
+ Processing by ClWiki::SessionsController#create as HTML
39914
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
39915
+ Redirected to http://www.example.com/wiki/
39916
+ Completed 302 Found in 14ms (Allocations: 367)
39917
+ Started GET "/wiki/" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39918
+ Processing by ClWiki::PageController#show as HTML
39919
+ Redirected to http://www.example.com/wiki/login
39920
+ Filter chain halted as :authorized rendered or redirected
39921
+ Completed 302 Found in 1ms (Allocations: 259)
39922
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-02-01 21:04:56 -0600
39923
+ Processing by ClWiki::PageController#show as HTML
39924
+ Parameters: {"page_name"=>"FrontPage"}
39925
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
39926
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
39927
+ Completed 200 OK in 5ms (Views: 2.0ms | Allocations: 2522)