clwiki 3.0.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ba4bfd93b170a0f9b7069a528ae41c3e1af419a1291ef16c562ee355183db5d1
4
- data.tar.gz: d0e2357acf439f466f82515da3f5f6d145020ba6c96f14016428e2837ff8cbcb
3
+ metadata.gz: c45ec5d5144d997cbf898a8817bebbfe404f507a2ef0690e79e6823222427df6
4
+ data.tar.gz: 9f07a6e0a4f4dee5ed278fdb21372bccd769bef4b1f7f828e95018cf13571585
5
5
  SHA512:
6
- metadata.gz: 98fa236e8b3a848923e3d1f4a50d6eeb930f83c87362c45edc196d6befaf73387516fc705f32f8d23415777771249ada16e3214052a577ecd0775a6f56b846ed
7
- data.tar.gz: 9d488ec965530da723cd8b8eab332365be9e445b59f91a09e30f61be4327738569367af6f16b880a479e8c249a7b8829c69c0af17a9f520d86ada75e6cc99fe0
6
+ metadata.gz: 24a696c189aa9861b2c038aa84ae7dc19936bf41945ff92d64e1ea5e439513969f536516806945053f1dc3caa31db202fa47f7fd6598252d6730736e51d86a49
7
+ data.tar.gz: 7ad1b323776f8f40bd84c1e95d1dd7d714b8fe53daec42e7b068525f649f21e2f1e9e3ab83eea9479acfabd192ff80d38338d3a1bd0d0edebd8c540c9ef7ad7a
@@ -64,16 +64,20 @@ module ClWiki
64
64
  def read_file
65
65
  @mod_time_at_last_read = ::File.mtime(full_path_and_name)
66
66
 
67
- # positive lookbehind regex is used here to retain the end of line
68
- # newline, because this used to just be `File.readlines` which also keeps
69
- # the newline characters.
70
- raw_lines = ::File.binread(full_path_and_name).split(/(?<=\n)/)
71
- @metadata, raw_content = Metadata.split_file_contents(raw_lines)
72
- raw_content = raw_content.join
67
+ raw_bytes = ::File.binread(full_path_and_name)
68
+ @metadata, raw_content = Metadata.split_file_contents(raw_bytes)
73
69
 
74
70
  apply_metadata
75
71
 
76
- @contents = content_encrypted? ? @owner.lockbox.decrypt_str(raw_content) : raw_content
72
+ @contents = if content_encrypted?
73
+ @owner.lockbox.decrypt_str(raw_content)
74
+ else
75
+ convert_bin_to_utf_8(raw_content)
76
+ end
77
+ end
78
+
79
+ def convert_bin_to_utf_8(content)
80
+ content.chars.map(&:ord).pack("U*")
77
81
  end
78
82
 
79
83
  def read_metadata(lines)
@@ -123,23 +127,18 @@ module ClWiki
123
127
  end
124
128
 
125
129
  class Metadata
126
- def self.split_file_contents(lines)
127
- st_idx = 0
128
- lines.each_with_index do |ln, index|
129
- next unless ln.chomp.empty?
130
-
131
- next_line = lines[index + 1]
132
- if next_line.nil? || next_line.chomp.empty?
133
- st_idx = index + 2 if all_lines_are_metadata_lines(lines[0..index - 1])
134
- break
135
- end
136
- end
130
+ def self.split_file_contents(content)
131
+ idx = content =~ /\n{3}/m
132
+ metadata = []
137
133
 
138
- m, c = st_idx > 0 ? [lines[0..st_idx - 3], lines[st_idx..-1]] : [[], lines]
139
- [self.new(m), c]
134
+ if idx
135
+ metadata = content[0..(idx - 1)].split(/\n/)
136
+ valid_metadata?(metadata) ? content = content[(idx + 3)..-1] : metadata = []
137
+ end
138
+ [self.new(metadata), content]
140
139
  end
141
140
 
142
- def self.all_lines_are_metadata_lines(lines)
141
+ def self.valid_metadata?(lines)
143
142
  lines.map { |ln| ln.scan(/\A(\w+):?/) }.flatten.
144
143
  map { |k| supported_keys.include?(k) }.uniq == [true]
145
144
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ClWiki
4
- VERSION = '3.0.0'
4
+ VERSION = '3.0.1'
5
5
  end
@@ -33932,3 +33932,987 @@ Processing by ClWiki::SessionsController#new as HTML
33932
33932
  Redirected to http://test.host/wiki/
33933
33933
  Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
33934
33934
  Completed 302 Found in 0ms (Allocations: 190)
33935
+ Processing by ClWiki::SessionsController#new as HTML
33936
+ Redirected to http://test.host/wiki/
33937
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
33938
+ Completed 302 Found in 1ms (Allocations: 291)
33939
+ Processing by ClWiki::SessionsController#create as HTML
33940
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
33941
+ Redirected to http://test.host/wiki/
33942
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
33943
+ Completed 302 Found in 0ms (Allocations: 190)
33944
+ Processing by ClWiki::SessionsController#create as HTML
33945
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
33946
+ Redirected to http://test.host/wiki/
33947
+ Completed 302 Found in 13ms (Allocations: 308)
33948
+ Processing by ClWiki::SessionsController#create as HTML
33949
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
33950
+ Redirected to http://test.host/wiki/login
33951
+ Completed 302 Found in 2ms (Allocations: 274)
33952
+ Processing by ClWiki::SessionsController#create as HTML
33953
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
33954
+ Redirected to http://test.host/wiki/login
33955
+ Completed 302 Found in 2ms (Allocations: 273)
33956
+ Processing by ClWiki::PageController#edit as HTML
33957
+ Parameters: {"page_name"=>"NewPage"}
33958
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
33959
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 2.1ms | Allocations: 803)
33960
+ Completed 200 OK in 55ms (Views: 50.7ms | Allocations: 17527)
33961
+ Processing by ClWiki::PageController#show as HTML
33962
+ Redirected to http://test.host/wiki/FrontPage
33963
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
33964
+ Completed 302 Found in 1ms (Allocations: 300)
33965
+ Processing by ClWiki::PageController#show as HTML
33966
+ Redirected to http://test.host/wiki/FrontPage
33967
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
33968
+ Completed 302 Found in 1ms (Allocations: 395)
33969
+ Processing by ClWiki::PageController#show as HTML
33970
+ Parameters: {"page_name"=>"NewPage"}
33971
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
33972
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 93)
33973
+ Completed 200 OK in 6ms (Views: 2.1ms | Allocations: 3556)
33974
+ Processing by ClWiki::PageController#show as HTML
33975
+ Redirected to http://test.host/wiki/FrontPage
33976
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
33977
+ Completed 302 Found in 1ms (Allocations: 395)
33978
+ Processing by ClWiki::PageController#find as HTML
33979
+ Parameters: {"search_text"=>"sheep"}
33980
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
33981
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.2ms | Allocations: 477)
33982
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2653)
33983
+ Processing by ClWiki::PageController#show as HTML
33984
+ Redirected to http://test.host/wiki/FrontPage
33985
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
33986
+ Completed 302 Found in 1ms (Allocations: 395)
33987
+ Processing by ClWiki::PageController#edit as HTML
33988
+ Parameters: {"page_name"=>"NewPage"}
33989
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
33990
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 317)
33991
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2418)
33992
+ Processing by ClWiki::PageController#update as HTML
33993
+ Parameters: {"client_mod_time"=>"1580099567", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
33994
+ Redirected to http://test.host/wiki/NewPage/edit
33995
+ Completed 302 Found in 2ms (Views: 1.5ms | Allocations: 1028)
33996
+ Processing by ClWiki::PageController#show as HTML
33997
+ Redirected to http://test.host/wiki/FrontPage
33998
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
33999
+ Completed 302 Found in 1ms (Allocations: 395)
34000
+ Processing by ClWiki::PageController#edit as HTML
34001
+ Parameters: {"page_name"=>"ANewPage"}
34002
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34003
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
34004
+ Completed 200 OK in 4ms (Views: 2.2ms | Allocations: 2415)
34005
+ Processing by ClWiki::PageController#edit as HTML
34006
+ Parameters: {"page_name"=>"AnotherNewPage"}
34007
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34008
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 312)
34009
+ Completed 200 OK in 10ms (Views: 8.2ms | Allocations: 2416)
34010
+ Processing by ClWiki::PageController#show as HTML
34011
+ Redirected to http://test.host/wiki/FrontPage
34012
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34013
+ Completed 302 Found in 1ms (Allocations: 395)
34014
+ Processing by ClWiki::PageController#show as HTML
34015
+ Redirected to http://test.host/wiki/FrontPage
34016
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34017
+ Completed 302 Found in 1ms (Allocations: 394)
34018
+ Processing by ClWiki::PageController#show as HTML
34019
+ Redirected to http://test.host/wiki/FrontPage
34020
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34021
+ Completed 302 Found in 1ms (Allocations: 395)
34022
+ Processing by ClWiki::PageController#edit as HTML
34023
+ Parameters: {"page_name"=>"NewPage"}
34024
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34025
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 315)
34026
+ Completed 200 OK in 4ms (Views: 2.6ms | Allocations: 2415)
34027
+ Processing by ClWiki::PageController#show as HTML
34028
+ Redirected to http://test.host/wiki/FrontPage
34029
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34030
+ Completed 302 Found in 1ms (Allocations: 395)
34031
+ Processing by ClWiki::PageController#edit as HTML
34032
+ Parameters: {"page_name"=>"NewPage"}
34033
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34034
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 315)
34035
+ Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2415)
34036
+ Processing by ClWiki::PageController#update as HTML
34037
+ Parameters: {"client_mod_time"=>"1580099567", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
34038
+ Redirected to http://test.host/wiki/NewPage
34039
+ Completed 302 Found in 2ms (Views: 1.9ms | Allocations: 1029)
34040
+ Processing by ClWiki::PageController#show as HTML
34041
+ Redirected to http://test.host/wiki/FrontPage
34042
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34043
+ Completed 302 Found in 1ms (Allocations: 395)
34044
+ Processing by ClWiki::PageController#find as HTML
34045
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
34046
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 185)
34047
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2074)
34048
+ Processing by ClWiki::PageController#show as HTML
34049
+ Redirected to http://test.host/wiki/FrontPage
34050
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34051
+ Completed 302 Found in 1ms (Allocations: 395)
34052
+ Processing by ClWiki::PageController#show as HTML
34053
+ Parameters: {"page_name"=>"notavalidname"}
34054
+ Redirected to http://test.host/wiki/FrontPage
34055
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34056
+ Completed 302 Found in 1ms (Allocations: 392)
34057
+ Processing by ClWiki::PageController#show as HTML
34058
+ Redirected to http://test.host/wiki/FrontPage
34059
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34060
+ Completed 302 Found in 1ms (Allocations: 395)
34061
+ Processing by ClWiki::PageController#show as HTML
34062
+ Parameters: {"page_name"=>"NewPage"}
34063
+ Redirected to http://test.host/wiki/FrontPage
34064
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34065
+ Completed 302 Found in 1ms (Allocations: 406)
34066
+ Processing by ClWiki::PageController#show as HTML
34067
+ Redirected to http://test.host/wiki/FrontPage
34068
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34069
+ Completed 302 Found in 1ms (Allocations: 395)
34070
+ Processing by ClWiki::PageController#show as HTML
34071
+ Parameters: {"page_name"=>"SourcePage"}
34072
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34073
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
34074
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2343)
34075
+ Processing by ClWiki::PageController#show as HTML
34076
+ Redirected to http://test.host/wiki/FrontPage
34077
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34078
+ Completed 302 Found in 23ms (Allocations: 395)
34079
+ Processing by ClWiki::PageController#edit as HTML
34080
+ Parameters: {"page_name"=>"NewEncryptedPage"}
34081
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34082
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 315)
34083
+ Completed 200 OK in 3ms (Views: 2.1ms | Allocations: 2425)
34084
+ Processing by ClWiki::PageController#update as HTML
34085
+ Parameters: {"client_mod_time"=>"1580099568", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34086
+ Redirected to http://test.host/wiki/NewEncryptedPage
34087
+ Completed 302 Found in 5ms (Views: 2.1ms | Allocations: 1449)
34088
+ Processing by ClWiki::PageController#update as HTML
34089
+ Parameters: {"client_mod_time"=>"1580099568", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34090
+ Redirected to http://test.host/wiki/NewEncryptedPage
34091
+ Completed 302 Found in 3ms (Views: 2.1ms | Allocations: 1187)
34092
+ Processing by ClWiki::PageController#show as HTML
34093
+ Redirected to http://test.host/wiki/FrontPage
34094
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34095
+ Completed 302 Found in 1ms (Allocations: 395)
34096
+ Processing by ClWiki::PageController#recent as HTML
34097
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34098
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 171)
34099
+ Completed 200 OK in 5ms (Views: 2.6ms | Allocations: 2810)
34100
+ Processing by ClWiki::PageController#show as HTML
34101
+ Redirected to http://test.host/wiki/FrontPage
34102
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34103
+ Completed 302 Found in 1ms (Allocations: 395)
34104
+ Processing by ClWiki::PageController#recent as RSS
34105
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
34106
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 15.7ms | Allocations: 3174)
34107
+ Completed 200 OK in 19ms (Views: 16.9ms | Allocations: 4343)
34108
+ Processing by ClWiki::PageController#show as HTML
34109
+ Redirected to http://test.host/wiki/FrontPage
34110
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34111
+ Completed 302 Found in 2ms (Allocations: 395)
34112
+ Processing by ClWiki::PageController#recent as HTML
34113
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34114
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 44)
34115
+ Completed 200 OK in 5ms (Views: 2.2ms | Allocations: 2759)
34116
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34117
+ Processing by ClWiki::SessionsController#new as HTML
34118
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
34119
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 451)
34120
+ Completed 200 OK in 8ms (Views: 3.0ms | Allocations: 2756)
34121
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34122
+ Processing by ClWiki::SessionsController#create as HTML
34123
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34124
+ Redirected to http://www.example.com/wiki/
34125
+ Completed 302 Found in 12ms (Allocations: 340)
34126
+ Started GET "/wiki/" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34127
+ Processing by ClWiki::PageController#show as HTML
34128
+ Redirected to http://www.example.com/wiki/login
34129
+ Filter chain halted as :authorized rendered or redirected
34130
+ Completed 302 Found in 1ms (Allocations: 242)
34131
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34132
+ Processing by ClWiki::PageController#show as HTML
34133
+ Parameters: {"page_name"=>"FrontPage"}
34134
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34135
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
34136
+ Completed 200 OK in 4ms (Views: 1.8ms | Allocations: 2598)
34137
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34138
+ Processing by ClWiki::SessionsController#create as HTML
34139
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34140
+ Redirected to http://www.example.com/wiki/
34141
+ Completed 302 Found in 13ms (Allocations: 339)
34142
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34143
+ Processing by ClWiki::PageController#show as HTML
34144
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
34145
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
34146
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34147
+ Completed 301 Moved Permanently in 1ms (Allocations: 566)
34148
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34149
+ Processing by ClWiki::SessionsController#create as HTML
34150
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34151
+ Redirected to http://www.example.com/wiki/
34152
+ Completed 302 Found in 12ms (Allocations: 339)
34153
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34154
+ Processing by ClWiki::PageController#show as HTML
34155
+ Parameters: {"page"=>"/ChrisMorris"}
34156
+ Redirected to http://www.example.com/wiki/ChrisMorris
34157
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34158
+ Completed 301 Moved Permanently in 1ms (Allocations: 561)
34159
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34160
+ Processing by ClWiki::SessionsController#create as HTML
34161
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34162
+ Redirected to http://www.example.com/wiki/
34163
+ Completed 302 Found in 13ms (Allocations: 339)
34164
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34165
+ Processing by ClWiki::PageController#show as HTML
34166
+ Parameters: {"page"=>"ChrisMorris"}
34167
+ Redirected to http://www.example.com/wiki/ChrisMorris
34168
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34169
+ Completed 301 Moved Permanently in 1ms (Allocations: 560)
34170
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34171
+ Processing by ClWiki::SessionsController#create as HTML
34172
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34173
+ Redirected to http://www.example.com/wiki/
34174
+ Completed 302 Found in 14ms (Allocations: 339)
34175
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-01-26 22:32:48 -0600
34176
+ Processing by ClWiki::PageController#show as HTML
34177
+ Parameters: {"page"=>"/SomeParent/DotTest"}
34178
+ Redirected to http://www.example.com/wiki/DotTest
34179
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34180
+ Completed 301 Moved Permanently in 1ms (Allocations: 562)
34181
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34182
+ Processing by ClWiki::SessionsController#create as HTML
34183
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34184
+ Redirected to http://www.example.com/wiki/
34185
+ Completed 302 Found in 26ms (Allocations: 459)
34186
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34187
+ Processing by ClWiki::PageController#show as HTML
34188
+ Parameters: {"page"=>"ChrisMorris"}
34189
+ Redirected to http://www.example.com/wiki/ChrisMorris
34190
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34191
+ Completed 301 Moved Permanently in 6ms (Allocations: 1534)
34192
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34193
+ Processing by ClWiki::SessionsController#create as HTML
34194
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34195
+ Redirected to http://www.example.com/wiki/
34196
+ Completed 302 Found in 13ms (Allocations: 339)
34197
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34198
+ Processing by ClWiki::PageController#show as HTML
34199
+ Parameters: {"page"=>"/SomeParent/DotTest"}
34200
+ Redirected to http://www.example.com/wiki/DotTest
34201
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34202
+ Completed 301 Moved Permanently in 1ms (Allocations: 562)
34203
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34204
+ Processing by ClWiki::SessionsController#create as HTML
34205
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34206
+ Redirected to http://www.example.com/wiki/
34207
+ Completed 302 Found in 13ms (Allocations: 339)
34208
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34209
+ Processing by ClWiki::PageController#show as HTML
34210
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
34211
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
34212
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34213
+ Completed 301 Moved Permanently in 1ms (Allocations: 564)
34214
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34215
+ Processing by ClWiki::SessionsController#create as HTML
34216
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34217
+ Redirected to http://www.example.com/wiki/
34218
+ Completed 302 Found in 14ms (Allocations: 339)
34219
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34220
+ Processing by ClWiki::PageController#show as HTML
34221
+ Parameters: {"page"=>"/ChrisMorris"}
34222
+ Redirected to http://www.example.com/wiki/ChrisMorris
34223
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34224
+ Completed 301 Moved Permanently in 1ms (Allocations: 561)
34225
+ Processing by ClWiki::SessionsController#create as HTML
34226
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34227
+ Redirected to http://test.host/wiki/
34228
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
34229
+ Completed 302 Found in 0ms (Allocations: 190)
34230
+ Processing by ClWiki::SessionsController#new as HTML
34231
+ Redirected to http://test.host/wiki/
34232
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
34233
+ Completed 302 Found in 1ms (Allocations: 190)
34234
+ Processing by ClWiki::SessionsController#create as HTML
34235
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34236
+ Redirected to http://test.host/wiki/login
34237
+ Completed 302 Found in 2ms (Allocations: 274)
34238
+ Processing by ClWiki::SessionsController#create as HTML
34239
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34240
+ Redirected to http://test.host/wiki/login
34241
+ Completed 302 Found in 2ms (Allocations: 273)
34242
+ Processing by ClWiki::SessionsController#create as HTML
34243
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34244
+ Redirected to http://test.host/wiki/
34245
+ Completed 302 Found in 14ms (Allocations: 302)
34246
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34247
+ Processing by ClWiki::SessionsController#new as HTML
34248
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
34249
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 1.4ms | Allocations: 731)
34250
+ Completed 200 OK in 44ms (Views: 42.4ms | Allocations: 15338)
34251
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34252
+ Processing by ClWiki::SessionsController#create as HTML
34253
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34254
+ Redirected to http://www.example.com/wiki/
34255
+ Completed 302 Found in 13ms (Allocations: 339)
34256
+ Started GET "/wiki/" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34257
+ Processing by ClWiki::PageController#show as HTML
34258
+ Redirected to http://www.example.com/wiki/login
34259
+ Filter chain halted as :authorized rendered or redirected
34260
+ Completed 302 Found in 1ms (Allocations: 242)
34261
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-01-26 22:33:54 -0600
34262
+ Processing by ClWiki::PageController#show as HTML
34263
+ Parameters: {"page_name"=>"FrontPage"}
34264
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34265
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 96)
34266
+ Completed 200 OK in 7ms (Views: 3.3ms | Allocations: 3803)
34267
+ Processing by ClWiki::PageController#show as HTML
34268
+ Redirected to http://test.host/wiki/FrontPage
34269
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34270
+ Completed 302 Found in 1ms (Allocations: 395)
34271
+ Processing by ClWiki::PageController#edit as HTML
34272
+ Parameters: {"page_name"=>"ANewPage"}
34273
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34274
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.5ms | Allocations: 579)
34275
+ Completed 200 OK in 8ms (Views: 5.3ms | Allocations: 2914)
34276
+ Processing by ClWiki::PageController#edit as HTML
34277
+ Parameters: {"page_name"=>"AnotherNewPage"}
34278
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34279
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.2ms | Allocations: 312)
34280
+ Completed 200 OK in 7ms (Views: 5.7ms | Allocations: 2416)
34281
+ Processing by ClWiki::PageController#show as HTML
34282
+ Redirected to http://test.host/wiki/FrontPage
34283
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34284
+ Completed 302 Found in 3ms (Allocations: 395)
34285
+ Processing by ClWiki::PageController#recent as HTML
34286
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34287
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 186)
34288
+ Completed 200 OK in 8ms (Views: 3.5ms | Allocations: 3144)
34289
+ Processing by ClWiki::PageController#show as HTML
34290
+ Redirected to http://test.host/wiki/FrontPage
34291
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34292
+ Completed 302 Found in 2ms (Allocations: 395)
34293
+ Processing by ClWiki::PageController#find as HTML
34294
+ Parameters: {"search_text"=>"sheep"}
34295
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
34296
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.4ms | Allocations: 477)
34297
+ Completed 200 OK in 7ms (Views: 4.9ms | Allocations: 2653)
34298
+ Processing by ClWiki::PageController#show as HTML
34299
+ Redirected to http://test.host/wiki/FrontPage
34300
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34301
+ Completed 302 Found in 1ms (Allocations: 395)
34302
+ Processing by ClWiki::PageController#edit as HTML
34303
+ Parameters: {"page_name"=>"NewPage"}
34304
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34305
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.2ms | Allocations: 316)
34306
+ Completed 200 OK in 9ms (Views: 7.6ms | Allocations: 2417)
34307
+ Processing by ClWiki::PageController#show as HTML
34308
+ Redirected to http://test.host/wiki/FrontPage
34309
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34310
+ Completed 302 Found in 1ms (Allocations: 395)
34311
+ Processing by ClWiki::PageController#show as HTML
34312
+ Parameters: {"page_name"=>"SourcePage"}
34313
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34314
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
34315
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2343)
34316
+ Processing by ClWiki::PageController#show as HTML
34317
+ Redirected to http://test.host/wiki/FrontPage
34318
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34319
+ Completed 302 Found in 1ms (Allocations: 395)
34320
+ Processing by ClWiki::PageController#edit as HTML
34321
+ Parameters: {"page_name"=>"NewPage"}
34322
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34323
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 315)
34324
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2416)
34325
+ Processing by ClWiki::PageController#update as HTML
34326
+ Parameters: {"client_mod_time"=>"1580099634", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
34327
+ Redirected to http://test.host/wiki/NewPage
34328
+ Completed 302 Found in 3ms (Views: 1.6ms | Allocations: 1029)
34329
+ Processing by ClWiki::PageController#show as HTML
34330
+ Redirected to http://test.host/wiki/FrontPage
34331
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34332
+ Completed 302 Found in 1ms (Allocations: 395)
34333
+ Processing by ClWiki::PageController#edit as HTML
34334
+ Parameters: {"page_name"=>"NewPage"}
34335
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34336
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 315)
34337
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2415)
34338
+ Processing by ClWiki::PageController#update as HTML
34339
+ Parameters: {"client_mod_time"=>"1580099634", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
34340
+ Redirected to http://test.host/wiki/NewPage/edit
34341
+ Completed 302 Found in 1ms (Views: 1.5ms | Allocations: 1027)
34342
+ Processing by ClWiki::PageController#show as HTML
34343
+ Redirected to http://test.host/wiki/FrontPage
34344
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34345
+ Completed 302 Found in 1ms (Allocations: 395)
34346
+ Processing by ClWiki::PageController#edit as HTML
34347
+ Parameters: {"page_name"=>"NewEncryptedPage"}
34348
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34349
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 315)
34350
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2424)
34351
+ Processing by ClWiki::PageController#update as HTML
34352
+ Parameters: {"client_mod_time"=>"1580099634", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34353
+ Redirected to http://test.host/wiki/NewEncryptedPage
34354
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 1189)
34355
+ Processing by ClWiki::PageController#update as HTML
34356
+ Parameters: {"client_mod_time"=>"1580099634", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34357
+ Redirected to http://test.host/wiki/NewEncryptedPage
34358
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 1187)
34359
+ Processing by ClWiki::PageController#show as HTML
34360
+ Redirected to http://test.host/wiki/FrontPage
34361
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34362
+ Completed 302 Found in 1ms (Allocations: 395)
34363
+ Processing by ClWiki::PageController#show as HTML
34364
+ Redirected to http://test.host/wiki/FrontPage
34365
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34366
+ Completed 302 Found in 1ms (Allocations: 394)
34367
+ Processing by ClWiki::PageController#show as HTML
34368
+ Redirected to http://test.host/wiki/FrontPage
34369
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34370
+ Completed 302 Found in 1ms (Allocations: 395)
34371
+ Processing by ClWiki::PageController#show as HTML
34372
+ Parameters: {"page_name"=>"notavalidname"}
34373
+ Redirected to http://test.host/wiki/FrontPage
34374
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34375
+ Completed 302 Found in 1ms (Allocations: 392)
34376
+ Processing by ClWiki::PageController#show as HTML
34377
+ Redirected to http://test.host/wiki/FrontPage
34378
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34379
+ Completed 302 Found in 1ms (Allocations: 395)
34380
+ Processing by ClWiki::PageController#show as HTML
34381
+ Parameters: {"page_name"=>"NewPage"}
34382
+ Redirected to http://test.host/wiki/FrontPage
34383
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34384
+ Completed 302 Found in 1ms (Allocations: 406)
34385
+ Processing by ClWiki::PageController#show as HTML
34386
+ Redirected to http://test.host/wiki/FrontPage
34387
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34388
+ Completed 302 Found in 1ms (Allocations: 395)
34389
+ Processing by ClWiki::PageController#find as HTML
34390
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
34391
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 185)
34392
+ Completed 200 OK in 4ms (Views: 2.5ms | Allocations: 2074)
34393
+ Processing by ClWiki::PageController#show as HTML
34394
+ Redirected to http://test.host/wiki/FrontPage
34395
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34396
+ Completed 302 Found in 1ms (Allocations: 395)
34397
+ Processing by ClWiki::PageController#recent as RSS
34398
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
34399
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 8.0ms | Allocations: 3173)
34400
+ Completed 200 OK in 12ms (Views: 9.1ms | Allocations: 4345)
34401
+ Processing by ClWiki::PageController#show as HTML
34402
+ Redirected to http://test.host/wiki/FrontPage
34403
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34404
+ Completed 302 Found in 1ms (Allocations: 395)
34405
+ Processing by ClWiki::PageController#show as HTML
34406
+ Parameters: {"page_name"=>"NewPage"}
34407
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34408
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
34409
+ Completed 200 OK in 3ms (Views: 1.5ms | Allocations: 2408)
34410
+ Processing by ClWiki::PageController#show as HTML
34411
+ Redirected to http://test.host/wiki/FrontPage
34412
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34413
+ Completed 302 Found in 1ms (Allocations: 395)
34414
+ Processing by ClWiki::PageController#recent as HTML
34415
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34416
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
34417
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2418)
34418
+ Processing by ClWiki::PageController#show as HTML
34419
+ Redirected to http://test.host/wiki/FrontPage
34420
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34421
+ Completed 302 Found in 0ms (Allocations: 299)
34422
+ Processing by ClWiki::PageController#edit as HTML
34423
+ Parameters: {"page_name"=>"NewPage"}
34424
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34425
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 260)
34426
+ Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 2244)
34427
+ Processing by ClWiki::SessionsController#create as HTML
34428
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34429
+ Redirected to http://test.host/wiki/
34430
+ Completed 302 Found in 14ms (Allocations: 406)
34431
+ Processing by ClWiki::SessionsController#create as HTML
34432
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34433
+ Redirected to http://test.host/wiki/login
34434
+ Completed 302 Found in 2ms (Allocations: 274)
34435
+ Processing by ClWiki::SessionsController#create as HTML
34436
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34437
+ Redirected to http://test.host/wiki/login
34438
+ Completed 302 Found in 2ms (Allocations: 273)
34439
+ Processing by ClWiki::SessionsController#new as HTML
34440
+ Redirected to http://test.host/wiki/
34441
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
34442
+ Completed 302 Found in 0ms (Allocations: 193)
34443
+ Processing by ClWiki::SessionsController#create as HTML
34444
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34445
+ Redirected to http://test.host/wiki/
34446
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
34447
+ Completed 302 Found in 1ms (Allocations: 190)
34448
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34449
+ Processing by ClWiki::PageController#show as HTML
34450
+ Parameters: {"page_name"=>"FrontPage"}
34451
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34452
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 349)
34453
+ Completed 200 OK in 33ms (Views: 23.3ms | Allocations: 16695)
34454
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34455
+ Processing by ClWiki::SessionsController#new as HTML
34456
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
34457
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 466)
34458
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2755)
34459
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34460
+ Processing by ClWiki::SessionsController#create as HTML
34461
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34462
+ Redirected to http://www.example.com/wiki/
34463
+ Completed 302 Found in 13ms (Allocations: 340)
34464
+ Started GET "/wiki/" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34465
+ Processing by ClWiki::PageController#show as HTML
34466
+ Redirected to http://www.example.com/wiki/login
34467
+ Filter chain halted as :authorized rendered or redirected
34468
+ Completed 302 Found in 0ms (Allocations: 242)
34469
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34470
+ Processing by ClWiki::SessionsController#create as HTML
34471
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34472
+ Redirected to http://www.example.com/wiki/
34473
+ Completed 302 Found in 14ms (Allocations: 339)
34474
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34475
+ Processing by ClWiki::PageController#show as HTML
34476
+ Parameters: {"page"=>"/ChrisMorris"}
34477
+ Redirected to http://www.example.com/wiki/ChrisMorris
34478
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34479
+ Completed 301 Moved Permanently in 1ms (Allocations: 566)
34480
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34481
+ Processing by ClWiki::SessionsController#create as HTML
34482
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34483
+ Redirected to http://www.example.com/wiki/
34484
+ Completed 302 Found in 14ms (Allocations: 339)
34485
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34486
+ Processing by ClWiki::PageController#show as HTML
34487
+ Parameters: {"page"=>"ChrisMorris"}
34488
+ Redirected to http://www.example.com/wiki/ChrisMorris
34489
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34490
+ Completed 301 Moved Permanently in 1ms (Allocations: 560)
34491
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34492
+ Processing by ClWiki::SessionsController#create as HTML
34493
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34494
+ Redirected to http://www.example.com/wiki/
34495
+ Completed 302 Found in 13ms (Allocations: 339)
34496
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34497
+ Processing by ClWiki::PageController#show as HTML
34498
+ Parameters: {"page"=>"/SomeParent/DotTest"}
34499
+ Redirected to http://www.example.com/wiki/DotTest
34500
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34501
+ Completed 301 Moved Permanently in 1ms (Allocations: 562)
34502
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34503
+ Processing by ClWiki::SessionsController#create as HTML
34504
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34505
+ Redirected to http://www.example.com/wiki/
34506
+ Completed 302 Found in 13ms (Allocations: 339)
34507
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-01-26 22:35:46 -0600
34508
+ Processing by ClWiki::PageController#show as HTML
34509
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
34510
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
34511
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34512
+ Completed 301 Moved Permanently in 2ms (Allocations: 564)
34513
+ Processing by ClWiki::PageController#show as HTML
34514
+ Redirected to http://test.host/wiki/FrontPage
34515
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34516
+ Completed 302 Found in 1ms (Allocations: 395)
34517
+ Processing by ClWiki::PageController#find as HTML
34518
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
34519
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.1ms | Allocations: 471)
34520
+ Completed 200 OK in 5ms (Views: 3.7ms | Allocations: 2594)
34521
+ Processing by ClWiki::PageController#show as HTML
34522
+ Redirected to http://test.host/wiki/FrontPage
34523
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34524
+ Completed 302 Found in 1ms (Allocations: 395)
34525
+ Processing by ClWiki::PageController#recent as HTML
34526
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34527
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 185)
34528
+ Completed 200 OK in 6ms (Views: 2.4ms | Allocations: 3144)
34529
+ Processing by ClWiki::PageController#show as HTML
34530
+ Redirected to http://test.host/wiki/FrontPage
34531
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34532
+ Completed 302 Found in 1ms (Allocations: 395)
34533
+ Processing by ClWiki::PageController#recent as RSS
34534
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
34535
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 13.0ms | Allocations: 3172)
34536
+ Completed 200 OK in 16ms (Views: 14.1ms | Allocations: 4342)
34537
+ Processing by ClWiki::PageController#show as HTML
34538
+ Redirected to http://test.host/wiki/FrontPage
34539
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34540
+ Completed 302 Found in 1ms (Allocations: 395)
34541
+ Processing by ClWiki::PageController#edit as HTML
34542
+ Parameters: {"page_name"=>"NewPage"}
34543
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34544
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.9ms | Allocations: 582)
34545
+ Completed 200 OK in 4ms (Views: 2.3ms | Allocations: 2917)
34546
+ Processing by ClWiki::PageController#update as HTML
34547
+ Parameters: {"client_mod_time"=>"1580099746", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
34548
+ Redirected to http://test.host/wiki/NewPage
34549
+ Completed 302 Found in 2ms (Views: 2.3ms | Allocations: 1029)
34550
+ Processing by ClWiki::PageController#show as HTML
34551
+ Redirected to http://test.host/wiki/FrontPage
34552
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34553
+ Completed 302 Found in 1ms (Allocations: 395)
34554
+ Processing by ClWiki::PageController#edit as HTML
34555
+ Parameters: {"page_name"=>"NewPage"}
34556
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34557
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
34558
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2415)
34559
+ Processing by ClWiki::PageController#update as HTML
34560
+ Parameters: {"client_mod_time"=>"1580099746", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
34561
+ Redirected to http://test.host/wiki/NewPage/edit
34562
+ Completed 302 Found in 2ms (Views: 1.7ms | Allocations: 1027)
34563
+ Processing by ClWiki::PageController#show as HTML
34564
+ Redirected to http://test.host/wiki/FrontPage
34565
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34566
+ Completed 302 Found in 1ms (Allocations: 395)
34567
+ Processing by ClWiki::PageController#show as HTML
34568
+ Parameters: {"page_name"=>"notavalidname"}
34569
+ Redirected to http://test.host/wiki/FrontPage
34570
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34571
+ Completed 302 Found in 1ms (Allocations: 392)
34572
+ Processing by ClWiki::PageController#show as HTML
34573
+ Redirected to http://test.host/wiki/FrontPage
34574
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34575
+ Completed 302 Found in 1ms (Allocations: 395)
34576
+ Processing by ClWiki::PageController#find as HTML
34577
+ Parameters: {"search_text"=>"sheep"}
34578
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
34579
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 193)
34580
+ Completed 200 OK in 2ms (Views: 1.9ms | Allocations: 2136)
34581
+ Processing by ClWiki::PageController#show as HTML
34582
+ Redirected to http://test.host/wiki/FrontPage
34583
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34584
+ Completed 302 Found in 1ms (Allocations: 395)
34585
+ Processing by ClWiki::PageController#recent as HTML
34586
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34587
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
34588
+ Completed 200 OK in 4ms (Views: 2.3ms | Allocations: 2421)
34589
+ Processing by ClWiki::PageController#show as HTML
34590
+ Redirected to http://test.host/wiki/FrontPage
34591
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34592
+ Completed 302 Found in 1ms (Allocations: 395)
34593
+ Processing by ClWiki::PageController#edit as HTML
34594
+ Parameters: {"page_name"=>"NewEncryptedPage"}
34595
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34596
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
34597
+ Completed 200 OK in 4ms (Views: 2.0ms | Allocations: 2423)
34598
+ Processing by ClWiki::PageController#update as HTML
34599
+ Parameters: {"client_mod_time"=>"1580099747", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34600
+ Redirected to http://test.host/wiki/NewEncryptedPage
34601
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 1189)
34602
+ Processing by ClWiki::PageController#update as HTML
34603
+ Parameters: {"client_mod_time"=>"1580099747", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34604
+ Redirected to http://test.host/wiki/NewEncryptedPage
34605
+ Completed 302 Found in 2ms (Views: 2.0ms | Allocations: 1187)
34606
+ Processing by ClWiki::PageController#show as HTML
34607
+ Redirected to http://test.host/wiki/FrontPage
34608
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34609
+ Completed 302 Found in 1ms (Allocations: 395)
34610
+ Processing by ClWiki::PageController#show as HTML
34611
+ Redirected to http://test.host/wiki/FrontPage
34612
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34613
+ Completed 302 Found in 1ms (Allocations: 394)
34614
+ Processing by ClWiki::PageController#show as HTML
34615
+ Redirected to http://test.host/wiki/FrontPage
34616
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34617
+ Completed 302 Found in 1ms (Allocations: 395)
34618
+ Processing by ClWiki::PageController#edit as HTML
34619
+ Parameters: {"page_name"=>"ANewPage"}
34620
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34621
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 314)
34622
+ Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 2415)
34623
+ Processing by ClWiki::PageController#edit as HTML
34624
+ Parameters: {"page_name"=>"AnotherNewPage"}
34625
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34626
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 312)
34627
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2414)
34628
+ Processing by ClWiki::PageController#show as HTML
34629
+ Redirected to http://test.host/wiki/FrontPage
34630
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34631
+ Completed 302 Found in 1ms (Allocations: 395)
34632
+ Processing by ClWiki::PageController#show as HTML
34633
+ Parameters: {"page_name"=>"NewPage"}
34634
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34635
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
34636
+ Completed 200 OK in 4ms (Views: 1.6ms | Allocations: 2406)
34637
+ Processing by ClWiki::PageController#show as HTML
34638
+ Redirected to http://test.host/wiki/FrontPage
34639
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34640
+ Completed 302 Found in 2ms (Allocations: 395)
34641
+ Processing by ClWiki::PageController#edit as HTML
34642
+ Parameters: {"page_name"=>"NewPage"}
34643
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34644
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 315)
34645
+ Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 2415)
34646
+ Processing by ClWiki::PageController#show as HTML
34647
+ Redirected to http://test.host/wiki/FrontPage
34648
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34649
+ Completed 302 Found in 1ms (Allocations: 395)
34650
+ Processing by ClWiki::PageController#show as HTML
34651
+ Parameters: {"page_name"=>"SourcePage"}
34652
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34653
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
34654
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2343)
34655
+ Processing by ClWiki::PageController#show as HTML
34656
+ Redirected to http://test.host/wiki/FrontPage
34657
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34658
+ Completed 302 Found in 1ms (Allocations: 395)
34659
+ Processing by ClWiki::PageController#show as HTML
34660
+ Parameters: {"page_name"=>"NewPage"}
34661
+ Redirected to http://test.host/wiki/FrontPage
34662
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34663
+ Completed 302 Found in 1ms (Allocations: 406)
34664
+ Processing by ClWiki::PageController#show as HTML
34665
+ Redirected to http://test.host/wiki/FrontPage
34666
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34667
+ Completed 302 Found in 0ms (Allocations: 299)
34668
+ Processing by ClWiki::PageController#edit as HTML
34669
+ Parameters: {"page_name"=>"NewPage"}
34670
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34671
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.8ms | Allocations: 258)
34672
+ Completed 200 OK in 5ms (Views: 3.0ms | Allocations: 2242)
34673
+ Processing by ClWiki::SessionsController#new as HTML
34674
+ Redirected to http://test.host/wiki/
34675
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
34676
+ Completed 302 Found in 1ms (Allocations: 291)
34677
+ Processing by ClWiki::SessionsController#create as HTML
34678
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34679
+ Redirected to http://test.host/wiki/
34680
+ Filter chain halted as :skip_all_if_not_using_authentication rendered or redirected
34681
+ Completed 302 Found in 0ms (Allocations: 190)
34682
+ Processing by ClWiki::SessionsController#create as HTML
34683
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34684
+ Redirected to http://test.host/wiki/
34685
+ Completed 302 Found in 14ms (Allocations: 307)
34686
+ Processing by ClWiki::SessionsController#create as HTML
34687
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34688
+ Redirected to http://test.host/wiki/login
34689
+ Completed 302 Found in 2ms (Allocations: 274)
34690
+ Processing by ClWiki::SessionsController#create as HTML
34691
+ Parameters: {"password"=>"[FILTERED]", "username"=>"testy"}
34692
+ Redirected to http://test.host/wiki/login
34693
+ Completed 302 Found in 2ms (Allocations: 273)
34694
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34695
+ Processing by ClWiki::SessionsController#create as HTML
34696
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34697
+ Redirected to http://www.example.com/wiki/
34698
+ Completed 302 Found in 22ms (Allocations: 354)
34699
+ Started GET "/wiki/clwikicgi.rb?page=%2FSomeParent%2FDotTest" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34700
+ Processing by ClWiki::PageController#show as HTML
34701
+ Parameters: {"page"=>"/SomeParent/DotTest"}
34702
+ Redirected to http://www.example.com/wiki/DotTest
34703
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34704
+ Completed 301 Moved Permanently in 1ms (Allocations: 711)
34705
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34706
+ Processing by ClWiki::SessionsController#create as HTML
34707
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34708
+ Redirected to http://www.example.com/wiki/
34709
+ Completed 302 Found in 14ms (Allocations: 339)
34710
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34711
+ Processing by ClWiki::PageController#show as HTML
34712
+ Parameters: {"page"=>"/ChrisMorris"}
34713
+ Redirected to http://www.example.com/wiki/ChrisMorris
34714
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34715
+ Completed 301 Moved Permanently in 1ms (Allocations: 561)
34716
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34717
+ Processing by ClWiki::SessionsController#create as HTML
34718
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34719
+ Redirected to http://www.example.com/wiki/
34720
+ Completed 302 Found in 14ms (Allocations: 339)
34721
+ Started GET "/wiki/clwikicgi.rb?page=%2FChrisMorris&edit=true" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34722
+ Processing by ClWiki::PageController#show as HTML
34723
+ Parameters: {"page"=>"/ChrisMorris", "edit"=>"true"}
34724
+ Redirected to http://www.example.com/wiki/ChrisMorris/edit
34725
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34726
+ Completed 301 Moved Permanently in 1ms (Allocations: 564)
34727
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34728
+ Processing by ClWiki::SessionsController#create as HTML
34729
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34730
+ Redirected to http://www.example.com/wiki/
34731
+ Completed 302 Found in 14ms (Allocations: 339)
34732
+ Started GET "/wiki/clwikicgi.rb?page=ChrisMorris" for 127.0.0.1 at 2020-01-26 22:37:23 -0600
34733
+ Processing by ClWiki::PageController#show as HTML
34734
+ Parameters: {"page"=>"ChrisMorris"}
34735
+ Redirected to http://www.example.com/wiki/ChrisMorris
34736
+ Filter chain halted as :redirect_legacy_cgi_urls rendered or redirected
34737
+ Completed 301 Moved Permanently in 2ms (Allocations: 560)
34738
+ Processing by ClWiki::PageController#show as HTML
34739
+ Redirected to http://test.host/wiki/FrontPage
34740
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34741
+ Completed 302 Found in 1ms (Allocations: 395)
34742
+ Processing by ClWiki::PageController#find as HTML
34743
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
34744
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 1.2ms | Allocations: 751)
34745
+ Completed 200 OK in 35ms (Views: 32.4ms | Allocations: 15396)
34746
+ Processing by ClWiki::PageController#show as HTML
34747
+ Redirected to http://test.host/wiki/FrontPage
34748
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34749
+ Completed 302 Found in 1ms (Allocations: 395)
34750
+ Processing by ClWiki::PageController#show as HTML
34751
+ Parameters: {"page_name"=>"NewPage"}
34752
+ Redirected to http://test.host/wiki/FrontPage
34753
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34754
+ Completed 302 Found in 1ms (Allocations: 406)
34755
+ Processing by ClWiki::PageController#show as HTML
34756
+ Redirected to http://test.host/wiki/FrontPage
34757
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34758
+ Completed 302 Found in 1ms (Allocations: 395)
34759
+ Processing by ClWiki::PageController#recent as HTML
34760
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34761
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 185)
34762
+ Completed 200 OK in 9ms (Views: 2.7ms | Allocations: 3977)
34763
+ Processing by ClWiki::PageController#show as HTML
34764
+ Redirected to http://test.host/wiki/FrontPage
34765
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34766
+ Completed 302 Found in 1ms (Allocations: 395)
34767
+ Processing by ClWiki::PageController#show as HTML
34768
+ Parameters: {"page_name"=>"NewPage"}
34769
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34770
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 93)
34771
+ Completed 200 OK in 7ms (Views: 3.8ms | Allocations: 2724)
34772
+ Processing by ClWiki::PageController#show as HTML
34773
+ Redirected to http://test.host/wiki/FrontPage
34774
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34775
+ Completed 302 Found in 1ms (Allocations: 395)
34776
+ Processing by ClWiki::PageController#recent as HTML
34777
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application
34778
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 27)
34779
+ Completed 200 OK in 6ms (Views: 3.4ms | Allocations: 2420)
34780
+ Processing by ClWiki::PageController#show as HTML
34781
+ Redirected to http://test.host/wiki/FrontPage
34782
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34783
+ Completed 302 Found in 2ms (Allocations: 395)
34784
+ Processing by ClWiki::PageController#edit as HTML
34785
+ Parameters: {"page_name"=>"NewEncryptedPage"}
34786
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34787
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.9ms | Allocations: 580)
34788
+ Completed 200 OK in 8ms (Views: 4.7ms | Allocations: 2922)
34789
+ Processing by ClWiki::PageController#update as HTML
34790
+ Parameters: {"client_mod_time"=>"1580099843", "encrypt"=>"yes", "page_content"=>"this should be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34791
+ Redirected to http://test.host/wiki/NewEncryptedPage
34792
+ Completed 302 Found in 3ms (Views: 4.7ms | Allocations: 1189)
34793
+ Processing by ClWiki::PageController#update as HTML
34794
+ Parameters: {"client_mod_time"=>"1580099843", "page_content"=>"this should not be encrypted on disk", "page_name"=>"NewEncryptedPage"}
34795
+ Redirected to http://test.host/wiki/NewEncryptedPage
34796
+ Completed 302 Found in 3ms (Views: 4.7ms | Allocations: 1187)
34797
+ Processing by ClWiki::PageController#show as HTML
34798
+ Redirected to http://test.host/wiki/FrontPage
34799
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34800
+ Completed 302 Found in 2ms (Allocations: 395)
34801
+ Processing by ClWiki::PageController#show as HTML
34802
+ Parameters: {"page_name"=>"SourcePage"}
34803
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34804
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.0ms | Allocations: 12)
34805
+ Completed 200 OK in 5ms (Views: 2.9ms | Allocations: 2344)
34806
+ Processing by ClWiki::PageController#show as HTML
34807
+ Redirected to http://test.host/wiki/FrontPage
34808
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34809
+ Completed 302 Found in 1ms (Allocations: 395)
34810
+ Processing by ClWiki::PageController#edit as HTML
34811
+ Parameters: {"page_name"=>"NewPage"}
34812
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34813
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 1.0ms | Allocations: 314)
34814
+ Completed 200 OK in 7ms (Views: 6.3ms | Allocations: 2414)
34815
+ Processing by ClWiki::PageController#update as HTML
34816
+ Parameters: {"client_mod_time"=>"1580099843", "page_content"=>"NewPage content", "save_and_edit"=>"true", "page_name"=>"NewPage"}
34817
+ Redirected to http://test.host/wiki/NewPage/edit
34818
+ Completed 302 Found in 4ms (Views: 6.3ms | Allocations: 1027)
34819
+ Processing by ClWiki::PageController#show as HTML
34820
+ Redirected to http://test.host/wiki/FrontPage
34821
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34822
+ Completed 302 Found in 36ms (Allocations: 395)
34823
+ Processing by ClWiki::PageController#show as HTML
34824
+ Parameters: {"page_name"=>"notavalidname"}
34825
+ Redirected to http://test.host/wiki/FrontPage
34826
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34827
+ Completed 302 Found in 1ms (Allocations: 392)
34828
+ Processing by ClWiki::PageController#show as HTML
34829
+ Redirected to http://test.host/wiki/FrontPage
34830
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34831
+ Completed 302 Found in 1ms (Allocations: 395)
34832
+ Processing by ClWiki::PageController#show as HTML
34833
+ Redirected to http://test.host/wiki/FrontPage
34834
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34835
+ Completed 302 Found in 1ms (Allocations: 394)
34836
+ Processing by ClWiki::PageController#show as HTML
34837
+ Redirected to http://test.host/wiki/FrontPage
34838
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34839
+ Completed 302 Found in 1ms (Allocations: 395)
34840
+ Processing by ClWiki::PageController#recent as RSS
34841
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder
34842
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/recent.rss.builder (Duration: 8.5ms | Allocations: 3173)
34843
+ Completed 200 OK in 11ms (Views: 9.4ms | Allocations: 4343)
34844
+ Processing by ClWiki::PageController#show as HTML
34845
+ Redirected to http://test.host/wiki/FrontPage
34846
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34847
+ Completed 302 Found in 1ms (Allocations: 395)
34848
+ Processing by ClWiki::PageController#edit as HTML
34849
+ Parameters: {"page_name"=>"NewPage"}
34850
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34851
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 317)
34852
+ Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 2419)
34853
+ Processing by ClWiki::PageController#update as HTML
34854
+ Parameters: {"client_mod_time"=>"1580099844", "page_content"=>"NewPage content", "page_name"=>"NewPage"}
34855
+ Redirected to http://test.host/wiki/NewPage
34856
+ Completed 302 Found in 2ms (Views: 1.8ms | Allocations: 1029)
34857
+ Processing by ClWiki::PageController#show as HTML
34858
+ Redirected to http://test.host/wiki/FrontPage
34859
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34860
+ Completed 302 Found in 1ms (Allocations: 395)
34861
+ Processing by ClWiki::PageController#edit as HTML
34862
+ Parameters: {"page_name"=>"ANewPage"}
34863
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34864
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 314)
34865
+ Completed 200 OK in 4ms (Views: 2.0ms | Allocations: 2415)
34866
+ Processing by ClWiki::PageController#edit as HTML
34867
+ Parameters: {"page_name"=>"AnotherNewPage"}
34868
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34869
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 312)
34870
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 2414)
34871
+ Processing by ClWiki::PageController#show as HTML
34872
+ Redirected to http://test.host/wiki/FrontPage
34873
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34874
+ Completed 302 Found in 1ms (Allocations: 395)
34875
+ Processing by ClWiki::PageController#edit as HTML
34876
+ Parameters: {"page_name"=>"NewPage"}
34877
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34878
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.4ms | Allocations: 315)
34879
+ Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2415)
34880
+ Processing by ClWiki::PageController#show as HTML
34881
+ Redirected to http://test.host/wiki/FrontPage
34882
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34883
+ Completed 302 Found in 1ms (Allocations: 395)
34884
+ Processing by ClWiki::PageController#find as HTML
34885
+ Parameters: {"search_text"=>"sheep"}
34886
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application
34887
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/find.html.erb within layouts/cl_wiki/application (Duration: 0.5ms | Allocations: 192)
34888
+ Completed 200 OK in 4ms (Views: 3.2ms | Allocations: 2134)
34889
+ Processing by ClWiki::PageController#show as HTML
34890
+ Redirected to http://test.host/wiki/FrontPage
34891
+ Filter chain halted as :redirect_to_front_page_if_bad_name rendered or redirected
34892
+ Completed 302 Found in 1ms (Allocations: 299)
34893
+ Processing by ClWiki::PageController#edit as HTML
34894
+ Parameters: {"page_name"=>"NewPage"}
34895
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application
34896
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/edit.html.erb within layouts/cl_wiki/application (Duration: 0.3ms | Allocations: 258)
34897
+ Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2242)
34898
+ Started GET "/wiki/login" for 127.0.0.1 at 2020-01-26 22:37:24 -0600
34899
+ Processing by ClWiki::SessionsController#new as HTML
34900
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application
34901
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/sessions/new.html.erb within layouts/cl_wiki/application (Duration: 0.7ms | Allocations: 451)
34902
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2740)
34903
+ Started POST "/wiki/login" for 127.0.0.1 at 2020-01-26 22:37:24 -0600
34904
+ Processing by ClWiki::SessionsController#create as HTML
34905
+ Parameters: {"username"=>"testy", "password"=>"[FILTERED]"}
34906
+ Redirected to http://www.example.com/wiki/
34907
+ Completed 302 Found in 14ms (Allocations: 339)
34908
+ Started GET "/wiki/" for 127.0.0.1 at 2020-01-26 22:37:24 -0600
34909
+ Processing by ClWiki::PageController#show as HTML
34910
+ Redirected to http://www.example.com/wiki/login
34911
+ Filter chain halted as :authorized rendered or redirected
34912
+ Completed 302 Found in 1ms (Allocations: 242)
34913
+ Started GET "/wiki/FrontPage" for 127.0.0.1 at 2020-01-26 22:37:24 -0600
34914
+ Processing by ClWiki::PageController#show as HTML
34915
+ Parameters: {"page_name"=>"FrontPage"}
34916
+ Rendering /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application
34917
+ Rendered /Users/chrismo/modev/clwiki/app/views/cl_wiki/page/show.html.erb within layouts/cl_wiki/application (Duration: 0.1ms | Allocations: 12)
34918
+ Completed 200 OK in 6ms (Views: 1.6ms | Allocations: 2597)
@@ -0,0 +1 @@
1
+ "%A��G �{h t�l�m�V���NE���f���
@@ -0,0 +1 @@
1
+ "%/{CB�\��NX�j�r�\��W�ͨ e[.i�
@@ -1 +1 @@
1
- {"username":"testy","password_digest":"$2a$04$Y1GNZ7KYtFnV8CcMcxPV3uVzRNwDbyBr4GSmG/ZwrgxX4I5rCKIvO"}
1
+ {"username":"testy","password_digest":"$2a$04$3RxDcHcqtnowaYMNQqWMce5NOCnTkRJS2HiIOp0Hj2RtaPe.1H7tK"}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clwiki
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrismo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-24 00:00:00.000000000 Z
11
+ date: 2020-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bcrypt
@@ -258,6 +258,7 @@ files:
258
258
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/kb/Kb8Z49kajAX1vyy5d4-gA8StHhQp5yOUs0wtdZ7m8Hc.cache
259
259
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/kb/kbEMkrgp2k0pezn_gFfMqA142QwoJYBKMj7cEkE-Hag.cache
260
260
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/lD/lDpZHp5gBhRdNHdj1TwWq1_LZ_a56lxeksxqaEs2efA.cache
261
+ - test/dummy/tmp/cache/assets/sprockets/v4.0.0/lL/lLUIzpNuP0NYh0_joJRWkVJ0OF9W3CyzdFBfs3818Lc.cache
261
262
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/mE/mEfGHxLvdPQrcbpjLw4q_wOPirMzrR4z58KgozQ1zNY.cache
262
263
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/mM/mMZ3DR5b7kx70JtEg-ImWOa_V1jnHcWgHqNqapxIMXk.cache
263
264
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/mX/mXCT6vriuTtwLaKGnTa5hwXSrwGtAmP6pV5lmjbHaYM.cache
@@ -276,6 +277,7 @@ files:
276
277
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/q6/q6BYa32YJF11eGVapO4ouNl6gayPIsARgMavlzZmoi0.cache
277
278
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/qY/qY78GTTnufmP1eP2CE16x833zGfQ0F5EVCFtUTMQ7Mw.cache
278
279
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/qm/qmZZzCnL9PLIyZ0iBu6Alr69AUfHHI1fKdNRRgG04yg.cache
280
+ - test/dummy/tmp/cache/assets/sprockets/v4.0.0/rP/rPrNeVrYtj3sM9uesyX26XheSoRwAHJAmshFxNu9Bjg.cache
279
281
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/s5/s5yv3jYvjyKZJ8SMzpj94eMKEuX46lAWV1ApHF-6bsM.cache
280
282
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/sO/sOBPF_p4Te56V9vdLV0Ywn6djNbmdPSIzvgYNPnAXYc.cache
281
283
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/sv/sv0a_JAC4GSc_cK-2OUAzhFwm_K3qzSfDefwpcqOCk4.cache
@@ -457,6 +459,7 @@ test_files:
457
459
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/fC/fC-TBNdh4rVupPn2ObyZeIx6OSlpBSBQZfIzywI6xx0.cache
458
460
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/Ig/IgcuJMmmdeYrq2F3D721tC7ficyRm92HIrLkim5DCxQ.cache
459
461
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/Fd/FdwPBPhLtL4s8RSPhJ53YoYoFdRkNxANV_zQYw-KsVc.cache
462
+ - test/dummy/tmp/cache/assets/sprockets/v4.0.0/lL/lLUIzpNuP0NYh0_joJRWkVJ0OF9W3CyzdFBfs3818Lc.cache
460
463
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/F5/F5c-QANC5X3kApAecuyiMZEme0NT_UUB6SjxKvb0ALg.cache
461
464
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/jR/jRg0Zbr59-UMtrWO5t2VWNI3GqU7XWOUsE44dX5cPyk.cache
462
465
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/CO/CO-z80mMyQGRy-BwknxOV5bI2IFbcMMNc05j7v8Nqso.cache
@@ -562,6 +565,7 @@ test_files:
562
565
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/QX/QXCyCL-Eeb3uHm9iOvs4anspZqeFbQnNyzDfIsXgzC8.cache
563
566
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/4I/4Ir0PJhTRUd9iGlSu6n2AREP-_amedFe4-1fKwB2wvg.cache
564
567
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/2W/2WKPDryRtGzZO6Uedw4RNjnI5M9YVH-IbFg5GvLvTTQ.cache
568
+ - test/dummy/tmp/cache/assets/sprockets/v4.0.0/rP/rPrNeVrYtj3sM9uesyX26XheSoRwAHJAmshFxNu9Bjg.cache
565
569
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/7h/7hRfgp9EsoD33qh0aNXeyg9qdGapPlUT6FmcL8xztY4.cache
566
570
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/R2/R2Xqb6eAeUW2xTaTaTjlkyUCirkb1qfYgW2CyY80VjM.cache
567
571
  - test/dummy/tmp/cache/assets/sprockets/v4.0.0/Tg/TgTXCuKAEg1DI5zjHO8tGMGuQGC9BRt9vgDZj2FdSa8.cache