sitepress-rails 0.1.27 → 2.0.0.beta1

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.
Files changed (33) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +8 -2
  3. data/app/controllers/concerns/sitepress/site_pages.rb +82 -11
  4. data/app/controllers/sitepress/site_controller.rb +1 -1
  5. data/config/routes.rb +5 -0
  6. data/lib/sitepress/build_paths/directory_index_path.rb +12 -0
  7. data/lib/sitepress/build_paths/index_path.rb +20 -0
  8. data/lib/sitepress/build_paths/root_path.rb +40 -0
  9. data/lib/sitepress/compiler.rb +68 -0
  10. data/lib/sitepress/engine.rb +40 -17
  11. data/lib/sitepress/rails.rb +12 -10
  12. data/lib/sitepress/rails_configuration.rb +8 -6
  13. data/lib/sitepress/renderers/controller.rb +51 -0
  14. data/lib/sitepress/renderers/server.rb +25 -0
  15. data/spec/dummy/config/application.rb +3 -1
  16. data/spec/dummy/config/environments/development.rb +1 -1
  17. data/spec/dummy/config/environments/production.rb +1 -1
  18. data/spec/dummy/log/test.log +2692 -57880
  19. data/spec/sitepress-rails_spec.rb +11 -33
  20. data/spec/sitepress/compiler_spec.rb +19 -0
  21. data/spec/sitepress/sitepress_site_controller_spec.rb +59 -9
  22. metadata +61 -44
  23. data/app/helpers/sitepress/application_helper.rb +0 -4
  24. data/lib/sitepress/extensions/index_request_path.rb +0 -24
  25. data/lib/sitepress/extensions/partials_remover.rb +0 -19
  26. data/lib/sitepress/extensions/rails_request_paths.rb +0 -20
  27. data/spec/dummy/app/models/application_record.rb +0 -3
  28. data/spec/dummy/db/production.sqlite3 +0 -0
  29. data/spec/dummy/db/test.sqlite3 +0 -0
  30. data/spec/dummy/log/production.log +0 -392
  31. data/spec/sitepress/extensions/index_request_path_spec.rb +0 -15
  32. data/spec/sitepress/extensions/partials_remover_spec.rb +0 -12
  33. data/spec/sitepress/extensions/rails_request_paths_spec.rb +0 -9
@@ -1,19 +0,0 @@
1
- module Sitepress
2
- module Extensions
3
- # Removes files beginning with "_" from the resource collection.
4
- class PartialsRemover
5
- # Partial rails prefix.
6
- PARTIAL_PREFIX = "_".freeze
7
-
8
- def process_resources(node)
9
- node.flatten.each do |r|
10
- r.node.remove if self.class.partial? r.asset.path # Looks like a smiley face, doesn't it?
11
- end
12
- end
13
-
14
- def self.partial?(path)
15
- File.basename(path).starts_with? PARTIAL_PREFIX
16
- end
17
- end
18
- end
19
- end
@@ -1,20 +0,0 @@
1
- module Sitepress
2
- module Extensions
3
- # Removes the file extension from the file so that /hi/there/fun.html can be
4
- # resolved via /hi/there/fun.
5
- class RailsRequestPaths
6
- def process_resources(node)
7
- node.flatten.each do |r|
8
- asset = r.asset
9
- request_path = r.request_path
10
- r.node.remove
11
- node.add path: self.class.format_path(request_path), asset: asset
12
- end
13
- end
14
-
15
- def self.format_path(request_path)
16
- File.join(File.dirname(File.join("/", request_path)), File.basename(request_path, ".*"))
17
- end
18
- end
19
- end
20
- end
@@ -1,3 +0,0 @@
1
- class ApplicationRecord < ActiveRecord::Base
2
- self.abstract_class = true
3
- end
File without changes
File without changes
@@ -1,392 +0,0 @@
1
- I, [2016-09-13T16:58:11.902520 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:11 -0700
2
- I, [2016-09-13T16:58:11.921796 #26007] INFO -- : Processing by BaselineController#show as HTML
3
- I, [2016-09-13T16:58:11.928307 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
4
- I, [2016-09-13T16:58:11.934337 #26007] INFO -- : Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
5
- I, [2016-09-13T16:58:11.935607 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:11 -0700
6
- I, [2016-09-13T16:58:11.936752 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
7
- I, [2016-09-13T16:58:11.936796 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
8
- I, [2016-09-13T16:58:13.417699 #26007] INFO -- : Rendered inline template within layouts/application (1476.9ms)
9
- I, [2016-09-13T16:58:13.420426 #26007] INFO -- : Completed 200 OK in 1484ms (Views: 1481.5ms | ActiveRecord: 0.0ms)
10
- I, [2016-09-13T16:58:13.424266 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:13 -0700
11
- I, [2016-09-13T16:58:13.424858 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
12
- I, [2016-09-13T16:58:13.424890 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
13
- I, [2016-09-13T16:58:13.630404 #26007] INFO -- : Rendered inline template within layouts/application (205.0ms)
14
- I, [2016-09-13T16:58:13.632064 #26007] INFO -- : Completed 200 OK in 207ms (Views: 206.7ms | ActiveRecord: 0.0ms)
15
- I, [2016-09-13T16:58:13.916686 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:13 -0700
16
- I, [2016-09-13T16:58:13.917219 #26007] INFO -- : Processing by BaselineController#show as HTML
17
- I, [2016-09-13T16:58:13.917574 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
18
- I, [2016-09-13T16:58:13.917981 #26007] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
19
- I, [2016-09-13T16:58:13.993942 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:13 -0700
20
- I, [2016-09-13T16:58:13.994449 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
21
- I, [2016-09-13T16:58:13.994481 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
22
- I, [2016-09-13T16:58:14.151352 #26007] INFO -- : Rendered inline template within layouts/application (156.4ms)
23
- I, [2016-09-13T16:58:14.152197 #26007] INFO -- : Completed 200 OK in 158ms (Views: 157.4ms | ActiveRecord: 0.0ms)
24
- I, [2016-09-13T16:58:14.257780 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:14 -0700
25
- I, [2016-09-13T16:58:14.258254 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
26
- I, [2016-09-13T16:58:14.258285 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
27
- I, [2016-09-13T16:58:14.415785 #26007] INFO -- : Rendered inline template within layouts/application (156.9ms)
28
- I, [2016-09-13T16:58:14.417221 #26007] INFO -- : Completed 200 OK in 159ms (Views: 158.5ms | ActiveRecord: 0.0ms)
29
- I, [2016-09-13T16:58:18.063675 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:18 -0700
30
- I, [2016-09-13T16:58:18.064204 #26007] INFO -- : Processing by BaselineController#show as HTML
31
- I, [2016-09-13T16:58:18.064544 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
32
- I, [2016-09-13T16:58:18.064955 #26007] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
33
- I, [2016-09-13T16:58:18.065713 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:18 -0700
34
- I, [2016-09-13T16:58:18.066063 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
35
- I, [2016-09-13T16:58:18.066090 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
36
- I, [2016-09-13T16:58:25.162193 #26007] INFO -- : Rendered inline template within layouts/application (5157.5ms)
37
- I, [2016-09-13T16:58:25.164008 #26007] INFO -- : Completed 200 OK in 7098ms (Views: 5159.3ms | ActiveRecord: 0.0ms)
38
- I, [2016-09-13T16:58:25.173816 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:25 -0700
39
- I, [2016-09-13T16:58:25.174616 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
40
- I, [2016-09-13T16:58:25.174666 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
41
- I, [2016-09-13T16:58:32.247642 #26007] INFO -- : Rendered inline template within layouts/application (5119.9ms)
42
- I, [2016-09-13T16:58:32.249254 #26007] INFO -- : Completed 200 OK in 7074ms (Views: 5121.5ms | ActiveRecord: 0.0ms)
43
- I, [2016-09-13T16:58:34.863167 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:34 -0700
44
- I, [2016-09-13T16:58:34.863822 #26007] INFO -- : Processing by BaselineController#show as HTML
45
- I, [2016-09-13T16:58:34.864187 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
46
- I, [2016-09-13T16:58:34.864610 #26007] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
47
- I, [2016-09-13T16:58:34.998955 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:34 -0700
48
- I, [2016-09-13T16:58:34.999467 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
49
- I, [2016-09-13T16:58:34.999500 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
50
- I, [2016-09-13T16:58:41.166021 #26007] INFO -- : Rendered inline template within layouts/application (4726.4ms)
51
- I, [2016-09-13T16:58:41.166922 #26007] INFO -- : Completed 200 OK in 6167ms (Views: 4727.4ms | ActiveRecord: 0.0ms)
52
- I, [2016-09-13T16:58:41.412058 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:41 -0700
53
- I, [2016-09-13T16:58:41.412664 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
54
- I, [2016-09-13T16:58:41.412698 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
55
- I, [2016-09-13T16:58:48.011046 #26007] INFO -- : Rendered inline template within layouts/application (5106.9ms)
56
- I, [2016-09-13T16:58:48.012631 #26007] INFO -- : Completed 200 OK in 6600ms (Views: 5108.4ms | ActiveRecord: 0.0ms)
57
- I, [2016-09-14T21:57:08.670476 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:08 -0700
58
- I, [2016-09-14T21:57:08.685307 #62571] INFO -- : Processing by BaselineController#show as HTML
59
- I, [2016-09-14T21:57:08.691842 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
60
- I, [2016-09-14T21:57:08.698528 #62571] INFO -- : Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
61
- I, [2016-09-14T21:57:08.700315 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:08 -0700
62
- I, [2016-09-14T21:57:08.701771 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
63
- I, [2016-09-14T21:57:08.701821 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
64
- I, [2016-09-14T21:57:10.574728 #62571] INFO -- : Rendered inline template within layouts/application (1868.3ms)
65
- I, [2016-09-14T21:57:10.577719 #62571] INFO -- : Completed 200 OK in 1876ms (Views: 1873.3ms | ActiveRecord: 0.0ms)
66
- I, [2016-09-14T21:57:10.581418 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:10 -0700
67
- I, [2016-09-14T21:57:10.581956 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
68
- I, [2016-09-14T21:57:10.581998 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
69
- I, [2016-09-14T21:57:10.737653 #62571] INFO -- : Rendered inline template within layouts/application (155.1ms)
70
- I, [2016-09-14T21:57:10.746699 #62571] INFO -- : Completed 200 OK in 165ms (Views: 156.9ms | ActiveRecord: 0.0ms)
71
- I, [2016-09-14T21:57:11.002500 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:11 -0700
72
- I, [2016-09-14T21:57:11.003088 #62571] INFO -- : Processing by BaselineController#show as HTML
73
- I, [2016-09-14T21:57:11.003537 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
74
- I, [2016-09-14T21:57:11.004009 #62571] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
75
- I, [2016-09-14T21:57:11.078020 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:11 -0700
76
- I, [2016-09-14T21:57:11.078594 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
77
- I, [2016-09-14T21:57:11.078636 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
78
- I, [2016-09-14T21:57:11.235959 #62571] INFO -- : Rendered inline template within layouts/application (156.9ms)
79
- I, [2016-09-14T21:57:11.236825 #62571] INFO -- : Completed 200 OK in 158ms (Views: 157.9ms | ActiveRecord: 0.0ms)
80
- I, [2016-09-14T21:57:11.346614 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:11 -0700
81
- I, [2016-09-14T21:57:11.347535 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
82
- I, [2016-09-14T21:57:11.347632 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
83
- I, [2016-09-14T21:57:11.499488 #62571] INFO -- : Rendered inline template within layouts/application (151.4ms)
84
- I, [2016-09-14T21:57:11.500945 #62571] INFO -- : Completed 200 OK in 153ms (Views: 153.0ms | ActiveRecord: 0.0ms)
85
- I, [2016-09-14T21:57:15.604550 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:15 -0700
86
- I, [2016-09-14T21:57:15.605153 #62571] INFO -- : Processing by BaselineController#show as HTML
87
- I, [2016-09-14T21:57:15.605755 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
88
- I, [2016-09-14T21:57:15.606764 #62571] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
89
- I, [2016-09-14T21:57:15.608777 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:15 -0700
90
- I, [2016-09-14T21:57:15.609377 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
91
- I, [2016-09-14T21:57:15.609433 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
92
- I, [2016-09-14T21:57:23.854355 #62571] INFO -- : Rendered inline template within layouts/application (5947.2ms)
93
- I, [2016-09-14T21:57:23.861070 #62571] INFO -- : Completed 200 OK in 8251ms (Views: 5953.8ms | ActiveRecord: 0.0ms)
94
- I, [2016-09-14T21:57:23.880755 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:23 -0700
95
- I, [2016-09-14T21:57:23.881425 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
96
- I, [2016-09-14T21:57:23.881476 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
97
- I, [2016-09-14T21:57:32.491637 #62571] INFO -- : Rendered inline template within layouts/application (5802.1ms)
98
- I, [2016-09-14T21:57:32.494498 #62571] INFO -- : Completed 200 OK in 8613ms (Views: 5805.5ms | ActiveRecord: 0.0ms)
99
- I, [2016-09-14T21:57:36.001627 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:36 -0700
100
- I, [2016-09-14T21:57:36.002562 #62571] INFO -- : Processing by BaselineController#show as HTML
101
- I, [2016-09-14T21:57:36.002994 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
102
- I, [2016-09-14T21:57:36.003444 #62571] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
103
- I, [2016-09-14T21:57:36.152026 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:36 -0700
104
- I, [2016-09-14T21:57:36.152644 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
105
- I, [2016-09-14T21:57:36.152688 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
106
- I, [2016-09-14T21:57:43.355441 #62571] INFO -- : Rendered inline template within layouts/application (5519.6ms)
107
- I, [2016-09-14T21:57:43.356883 #62571] INFO -- : Completed 200 OK in 7204ms (Views: 5521.1ms | ActiveRecord: 0.0ms)
108
- I, [2016-09-14T21:57:43.774459 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:43 -0700
109
- I, [2016-09-14T21:57:43.775110 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
110
- I, [2016-09-14T21:57:43.775150 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
111
- I, [2016-09-14T21:57:50.829540 #62571] INFO -- : Rendered inline template within layouts/application (5198.1ms)
112
- I, [2016-09-14T21:57:50.831001 #62571] INFO -- : Completed 200 OK in 7056ms (Views: 5199.5ms | ActiveRecord: 0.0ms)
113
- I, [2016-09-19T15:57:30.416165 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:30 -0700
114
- I, [2016-09-19T15:57:30.427908 #76522] INFO -- : Processing by BaselineController#show as HTML
115
- I, [2016-09-19T15:57:30.436841 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.9ms)
116
- I, [2016-09-19T15:57:30.443719 #76522] INFO -- : Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
117
- I, [2016-09-19T15:57:30.445425 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:30 -0700
118
- I, [2016-09-19T15:57:30.446471 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
119
- I, [2016-09-19T15:57:30.446507 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
120
- I, [2016-09-19T15:57:35.223674 #76522] INFO -- : Rendered inline template within layouts/application (4772.7ms)
121
- I, [2016-09-19T15:57:35.226310 #76522] INFO -- : Completed 200 OK in 4780ms (Views: 4776.7ms | ActiveRecord: 0.0ms)
122
- I, [2016-09-19T15:57:35.229883 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
123
- I, [2016-09-19T15:57:35.230414 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
124
- I, [2016-09-19T15:57:35.230455 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
125
- I, [2016-09-19T15:57:35.378637 #76522] INFO -- : Rendered inline template within layouts/application (147.6ms)
126
- I, [2016-09-19T15:57:35.387303 #76522] INFO -- : Completed 200 OK in 157ms (Views: 149.2ms | ActiveRecord: 0.0ms)
127
- I, [2016-09-19T15:57:35.644031 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
128
- I, [2016-09-19T15:57:35.644659 #76522] INFO -- : Processing by BaselineController#show as HTML
129
- I, [2016-09-19T15:57:35.645102 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
130
- I, [2016-09-19T15:57:35.645601 #76522] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
131
- I, [2016-09-19T15:57:35.720910 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
132
- I, [2016-09-19T15:57:35.721500 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
133
- I, [2016-09-19T15:57:35.721549 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
134
- I, [2016-09-19T15:57:35.866085 #76522] INFO -- : Rendered inline template within layouts/application (144.1ms)
135
- I, [2016-09-19T15:57:35.867023 #76522] INFO -- : Completed 200 OK in 145ms (Views: 145.0ms | ActiveRecord: 0.0ms)
136
- I, [2016-09-19T15:57:35.969627 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
137
- I, [2016-09-19T15:57:35.970102 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
138
- I, [2016-09-19T15:57:35.970134 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
139
- I, [2016-09-19T15:57:36.116802 #76522] INFO -- : Rendered inline template within layouts/application (146.3ms)
140
- I, [2016-09-19T15:57:36.118549 #76522] INFO -- : Completed 200 OK in 148ms (Views: 148.1ms | ActiveRecord: 0.0ms)
141
- I, [2016-09-19T15:57:39.371086 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:39 -0700
142
- I, [2016-09-19T15:57:39.371587 #76522] INFO -- : Processing by BaselineController#show as HTML
143
- I, [2016-09-19T15:57:39.372218 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
144
- I, [2016-09-19T15:57:39.372903 #76522] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
145
- I, [2016-09-19T15:57:39.373792 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:39 -0700
146
- I, [2016-09-19T15:57:39.374229 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
147
- I, [2016-09-19T15:57:39.374260 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
148
- I, [2016-09-19T15:57:47.718759 #76522] INFO -- : Rendered inline template within layouts/application (6820.3ms)
149
- I, [2016-09-19T15:57:47.720921 #76522] INFO -- : Completed 200 OK in 8347ms (Views: 6822.3ms | ActiveRecord: 0.0ms)
150
- I, [2016-09-19T15:57:47.724343 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:57:47 -0700
151
- I, [2016-09-19T15:57:47.725015 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
152
- I, [2016-09-19T15:57:47.725048 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
153
- I, [2016-09-19T15:57:54.268420 #76522] INFO -- : Rendered inline template within layouts/application (4640.4ms)
154
- I, [2016-09-19T15:57:54.270469 #76522] INFO -- : Completed 200 OK in 6545ms (Views: 4642.3ms | ActiveRecord: 0.0ms)
155
- I, [2016-09-19T15:57:56.559254 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:56 -0700
156
- I, [2016-09-19T15:57:56.559890 #76522] INFO -- : Processing by BaselineController#show as HTML
157
- I, [2016-09-19T15:57:56.560326 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
158
- I, [2016-09-19T15:57:56.560824 #76522] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
159
- I, [2016-09-19T15:57:56.697936 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:56 -0700
160
- I, [2016-09-19T15:57:56.698467 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
161
- I, [2016-09-19T15:57:56.698500 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
162
- I, [2016-09-19T15:58:02.770170 #76522] INFO -- : Rendered inline template within layouts/application (4646.5ms)
163
- I, [2016-09-19T15:58:02.771835 #76522] INFO -- : Completed 200 OK in 6073ms (Views: 4648.2ms | ActiveRecord: 0.0ms)
164
- I, [2016-09-19T15:58:03.187059 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:58:03 -0700
165
- I, [2016-09-19T15:58:03.187619 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
166
- I, [2016-09-19T15:58:03.187666 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
167
- I, [2016-09-19T15:58:09.666117 #76522] INFO -- : Rendered inline template within layouts/application (4993.3ms)
168
- I, [2016-09-19T15:58:09.668224 #76522] INFO -- : Completed 200 OK in 6480ms (Views: 4995.4ms | ActiveRecord: 0.0ms)
169
- I, [2016-09-20T11:11:09.218771 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:09 -0700
170
- I, [2016-09-20T11:11:09.231315 #4395] INFO -- : Processing by BaselineController#show as HTML
171
- I, [2016-09-20T11:11:09.237263 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
172
- I, [2016-09-20T11:11:09.243466 #4395] INFO -- : Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
173
- I, [2016-09-20T11:11:09.244665 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:09 -0700
174
- I, [2016-09-20T11:11:09.245675 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
175
- I, [2016-09-20T11:11:09.245710 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
176
- I, [2016-09-20T11:11:14.216358 #4395] INFO -- : Rendered inline template within layouts/application (4966.2ms)
177
- I, [2016-09-20T11:11:14.218394 #4395] INFO -- : Completed 200 OK in 4973ms (Views: 4969.6ms | ActiveRecord: 0.0ms)
178
- I, [2016-09-20T11:11:14.221686 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:14 -0700
179
- I, [2016-09-20T11:11:14.222207 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
180
- I, [2016-09-20T11:11:14.222245 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
181
- I, [2016-09-20T11:11:14.374167 #4395] INFO -- : Rendered inline template within layouts/application (151.4ms)
182
- I, [2016-09-20T11:11:14.382594 #4395] INFO -- : Completed 200 OK in 160ms (Views: 153.0ms | ActiveRecord: 0.0ms)
183
- I, [2016-09-20T11:11:14.661926 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:14 -0700
184
- I, [2016-09-20T11:11:14.662468 #4395] INFO -- : Processing by BaselineController#show as HTML
185
- I, [2016-09-20T11:11:14.662828 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
186
- I, [2016-09-20T11:11:14.663238 #4395] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
187
- I, [2016-09-20T11:11:14.748921 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:14 -0700
188
- I, [2016-09-20T11:11:14.749655 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
189
- I, [2016-09-20T11:11:14.749693 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
190
- I, [2016-09-20T11:11:14.924537 #4395] INFO -- : Rendered inline template within layouts/application (174.4ms)
191
- I, [2016-09-20T11:11:14.925529 #4395] INFO -- : Completed 200 OK in 176ms (Views: 175.5ms | ActiveRecord: 0.0ms)
192
- I, [2016-09-20T11:11:15.033559 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:15 -0700
193
- I, [2016-09-20T11:11:15.034089 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
194
- I, [2016-09-20T11:11:15.034134 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
195
- I, [2016-09-20T11:11:15.185834 #4395] INFO -- : Rendered inline template within layouts/application (151.3ms)
196
- I, [2016-09-20T11:11:15.187265 #4395] INFO -- : Completed 200 OK in 153ms (Views: 152.8ms | ActiveRecord: 0.0ms)
197
- I, [2016-09-20T11:11:18.370558 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:18 -0700
198
- I, [2016-09-20T11:11:18.371106 #4395] INFO -- : Processing by BaselineController#show as HTML
199
- I, [2016-09-20T11:11:18.371512 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
200
- I, [2016-09-20T11:11:18.372085 #4395] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
201
- I, [2016-09-20T11:11:18.372908 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:18 -0700
202
- I, [2016-09-20T11:11:18.373420 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
203
- I, [2016-09-20T11:11:18.373462 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
204
- I, [2016-09-20T11:11:27.324751 #4395] INFO -- : Rendered inline template within layouts/application (7467.6ms)
205
- I, [2016-09-20T11:11:27.326871 #4395] INFO -- : Completed 200 OK in 8953ms (Views: 7469.6ms | ActiveRecord: 0.0ms)
206
- I, [2016-09-20T11:11:27.330796 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:27 -0700
207
- I, [2016-09-20T11:11:27.331509 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
208
- I, [2016-09-20T11:11:27.331544 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
209
- I, [2016-09-20T11:11:35.826981 #4395] INFO -- : Rendered inline template within layouts/application (6671.1ms)
210
- I, [2016-09-20T11:11:35.829167 #4395] INFO -- : Completed 200 OK in 8498ms (Views: 6673.2ms | ActiveRecord: 0.0ms)
211
- I, [2016-09-20T11:11:38.101178 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:38 -0700
212
- I, [2016-09-20T11:11:38.101774 #4395] INFO -- : Processing by BaselineController#show as HTML
213
- I, [2016-09-20T11:11:38.102190 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
214
- I, [2016-09-20T11:11:38.102687 #4395] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
215
- I, [2016-09-20T11:11:38.235708 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:38 -0700
216
- I, [2016-09-20T11:11:38.236209 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
217
- I, [2016-09-20T11:11:38.236249 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
218
- I, [2016-09-20T11:11:44.222773 #4395] INFO -- : Rendered inline template within layouts/application (4555.0ms)
219
- I, [2016-09-20T11:11:44.223735 #4395] INFO -- : Completed 200 OK in 5987ms (Views: 4556.0ms | ActiveRecord: 0.0ms)
220
- I, [2016-09-20T11:11:44.628639 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:44 -0700
221
- I, [2016-09-20T11:11:44.629132 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
222
- I, [2016-09-20T11:11:44.629178 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
223
- I, [2016-09-20T11:11:50.802601 #4395] INFO -- : Rendered inline template within layouts/application (4707.2ms)
224
- I, [2016-09-20T11:11:50.804331 #4395] INFO -- : Completed 200 OK in 6175ms (Views: 4708.9ms | ActiveRecord: 0.0ms)
225
- I, [2016-10-29T23:49:54.362385 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:49:54 -0700
226
- I, [2016-10-29T23:49:54.380847 #68323] INFO -- : Processing by BaselineController#show as HTML
227
- I, [2016-10-29T23:49:54.387484 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.6ms)
228
- I, [2016-10-29T23:49:54.395202 #68323] INFO -- : Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
229
- I, [2016-10-29T23:49:54.397160 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:49:54 -0700
230
- I, [2016-10-29T23:49:54.398249 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
231
- I, [2016-10-29T23:49:54.398282 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
232
- I, [2016-10-29T23:49:58.180602 #68323] INFO -- : Rendered inline template within layouts/application (3776.2ms)
233
- I, [2016-10-29T23:49:58.184399 #68323] INFO -- : Completed 200 OK in 3786ms (Views: 3781.9ms | ActiveRecord: 0.0ms)
234
- I, [2016-10-29T23:49:58.187623 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
235
- I, [2016-10-29T23:49:58.188097 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
236
- I, [2016-10-29T23:49:58.188126 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
237
- I, [2016-10-29T23:49:58.383748 #68323] INFO -- : Rendered inline template within layouts/application (195.1ms)
238
- I, [2016-10-29T23:49:58.385815 #68323] INFO -- : Completed 200 OK in 197ms (Views: 197.1ms | ActiveRecord: 0.0ms)
239
- I, [2016-10-29T23:49:58.633320 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
240
- I, [2016-10-29T23:49:58.633962 #68323] INFO -- : Processing by BaselineController#show as HTML
241
- I, [2016-10-29T23:49:58.634418 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
242
- I, [2016-10-29T23:49:58.634935 #68323] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
243
- I, [2016-10-29T23:49:58.707851 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
244
- I, [2016-10-29T23:49:58.708452 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
245
- I, [2016-10-29T23:49:58.708501 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
246
- I, [2016-10-29T23:49:58.872621 #68323] INFO -- : Rendered inline template within layouts/application (163.6ms)
247
- I, [2016-10-29T23:49:58.873604 #68323] INFO -- : Completed 200 OK in 165ms (Views: 164.7ms | ActiveRecord: 0.0ms)
248
- I, [2016-10-29T23:49:58.977512 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
249
- I, [2016-10-29T23:49:58.977982 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
250
- I, [2016-10-29T23:49:58.978013 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
251
- I, [2016-10-29T23:49:59.148306 #68323] INFO -- : Rendered inline template within layouts/application (169.9ms)
252
- I, [2016-10-29T23:49:59.149883 #68323] INFO -- : Completed 200 OK in 172ms (Views: 171.6ms | ActiveRecord: 0.0ms)
253
- I, [2016-10-29T23:50:02.722173 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:50:02 -0700
254
- I, [2016-10-29T23:50:02.724201 #68323] INFO -- : Processing by BaselineController#show as HTML
255
- I, [2016-10-29T23:50:02.724676 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
256
- I, [2016-10-29T23:50:02.725198 #68323] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
257
- I, [2016-10-29T23:50:02.726950 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:50:02 -0700
258
- I, [2016-10-29T23:50:02.727865 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
259
- I, [2016-10-29T23:50:02.727927 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
260
- I, [2016-10-29T23:50:11.512450 #68323] INFO -- : Rendered inline template within layouts/application (6957.0ms)
261
- I, [2016-10-29T23:50:11.514369 #68323] INFO -- : Completed 200 OK in 8786ms (Views: 6958.8ms | ActiveRecord: 0.0ms)
262
- I, [2016-10-29T23:50:11.518650 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:50:11 -0700
263
- I, [2016-10-29T23:50:11.519150 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
264
- I, [2016-10-29T23:50:11.519191 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
265
- I, [2016-10-29T23:50:19.784025 #68323] INFO -- : Rendered inline template within layouts/application (6233.8ms)
266
- I, [2016-10-29T23:50:19.785965 #68323] INFO -- : Completed 200 OK in 8267ms (Views: 6235.6ms | ActiveRecord: 0.0ms)
267
- I, [2016-10-29T23:50:22.503251 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:50:22 -0700
268
- I, [2016-10-29T23:50:22.503887 #68323] INFO -- : Processing by BaselineController#show as HTML
269
- I, [2016-10-29T23:50:22.504465 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
270
- I, [2016-10-29T23:50:22.505013 #68323] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
271
- I, [2016-10-29T23:50:22.648979 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:50:22 -0700
272
- I, [2016-10-29T23:50:22.649609 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
273
- I, [2016-10-29T23:50:22.649660 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
274
- I, [2016-10-29T23:50:30.855722 #68323] INFO -- : Rendered inline template within layouts/application (6512.2ms)
275
- I, [2016-10-29T23:50:30.857456 #68323] INFO -- : Completed 200 OK in 8208ms (Views: 6513.8ms | ActiveRecord: 0.0ms)
276
- I, [2016-10-29T23:50:31.294130 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:50:31 -0700
277
- I, [2016-10-29T23:50:31.294652 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
278
- I, [2016-10-29T23:50:31.294686 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
279
- I, [2016-10-29T23:50:38.227826 #68323] INFO -- : Rendered inline template within layouts/application (5214.0ms)
280
- I, [2016-10-29T23:50:38.229985 #68323] INFO -- : Completed 200 OK in 6935ms (Views: 5216.1ms | ActiveRecord: 0.0ms)
281
- I, [2016-10-30T00:54:22.751657 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:22 -0700
282
- I, [2016-10-30T00:54:22.763592 #72487] INFO -- : Processing by BaselineController#show as HTML
283
- I, [2016-10-30T00:54:22.770202 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
284
- I, [2016-10-30T00:54:22.777869 #72487] INFO -- : Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
285
- I, [2016-10-30T00:54:22.779168 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:22 -0700
286
- I, [2016-10-30T00:54:22.780188 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
287
- I, [2016-10-30T00:54:22.780226 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
288
- I, [2016-10-30T00:54:24.345621 #72487] INFO -- : Rendered inline template within layouts/application (1559.0ms)
289
- I, [2016-10-30T00:54:24.347702 #72487] INFO -- : Completed 200 OK in 1567ms (Views: 1563.5ms | ActiveRecord: 0.0ms)
290
- I, [2016-10-30T00:54:24.351122 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:24 -0700
291
- I, [2016-10-30T00:54:24.351649 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
292
- I, [2016-10-30T00:54:24.351681 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
293
- I, [2016-10-30T00:54:24.531395 #72487] INFO -- : Rendered inline template within layouts/application (179.2ms)
294
- I, [2016-10-30T00:54:24.533218 #72487] INFO -- : Completed 200 OK in 181ms (Views: 181.1ms | ActiveRecord: 0.0ms)
295
- I, [2016-10-30T00:54:24.795317 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:24 -0700
296
- I, [2016-10-30T00:54:24.795868 #72487] INFO -- : Processing by BaselineController#show as HTML
297
- I, [2016-10-30T00:54:24.796234 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
298
- I, [2016-10-30T00:54:24.796642 #72487] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
299
- I, [2016-10-30T00:54:24.870043 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:24 -0700
300
- I, [2016-10-30T00:54:24.870538 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
301
- I, [2016-10-30T00:54:24.870569 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
302
- I, [2016-10-30T00:54:25.026009 #72487] INFO -- : Rendered inline template within layouts/application (155.0ms)
303
- I, [2016-10-30T00:54:25.026925 #72487] INFO -- : Completed 200 OK in 156ms (Views: 156.1ms | ActiveRecord: 0.0ms)
304
- I, [2016-10-30T00:54:25.134389 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:25 -0700
305
- I, [2016-10-30T00:54:25.134873 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
306
- I, [2016-10-30T00:54:25.134905 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
307
- I, [2016-10-30T00:54:25.298070 #72487] INFO -- : Rendered inline template within layouts/application (162.8ms)
308
- I, [2016-10-30T00:54:25.299722 #72487] INFO -- : Completed 200 OK in 165ms (Views: 164.5ms | ActiveRecord: 0.0ms)
309
- I, [2016-10-30T00:54:28.651445 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:28 -0700
310
- I, [2016-10-30T00:54:28.651950 #72487] INFO -- : Processing by BaselineController#show as HTML
311
- I, [2016-10-30T00:54:28.652333 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
312
- I, [2016-10-30T00:54:28.652756 #72487] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
313
- I, [2016-10-30T00:54:28.653554 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:28 -0700
314
- I, [2016-10-30T00:54:28.653915 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
315
- I, [2016-10-30T00:54:28.653944 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
316
- I, [2016-10-30T00:54:34.830068 #72487] INFO -- : Rendered inline template within layouts/application (4576.3ms)
317
- I, [2016-10-30T00:54:34.832079 #72487] INFO -- : Completed 200 OK in 6178ms (Views: 4578.2ms | ActiveRecord: 0.0ms)
318
- I, [2016-10-30T00:54:34.835862 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:34 -0700
319
- I, [2016-10-30T00:54:34.836323 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
320
- I, [2016-10-30T00:54:34.836355 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
321
- I, [2016-10-30T00:54:41.661426 #72487] INFO -- : Rendered inline template within layouts/application (4953.2ms)
322
- I, [2016-10-30T00:54:41.663455 #72487] INFO -- : Completed 200 OK in 6827ms (Views: 4955.1ms | ActiveRecord: 0.0ms)
323
- I, [2016-10-30T00:54:44.023022 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:44 -0700
324
- I, [2016-10-30T00:54:44.023638 #72487] INFO -- : Processing by BaselineController#show as HTML
325
- I, [2016-10-30T00:54:44.024159 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
326
- I, [2016-10-30T00:54:44.024739 #72487] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
327
- I, [2016-10-30T00:54:44.171429 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:44 -0700
328
- I, [2016-10-30T00:54:44.172028 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
329
- I, [2016-10-30T00:54:44.172065 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
330
- I, [2016-10-30T00:54:50.314328 #72487] INFO -- : Rendered inline template within layouts/application (4660.7ms)
331
- I, [2016-10-30T00:54:50.315375 #72487] INFO -- : Completed 200 OK in 6143ms (Views: 4661.9ms | ActiveRecord: 0.0ms)
332
- I, [2016-10-30T00:54:50.747096 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:50 -0700
333
- I, [2016-10-30T00:54:50.747688 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
334
- I, [2016-10-30T00:54:50.747736 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
335
- I, [2016-10-30T00:54:57.255036 #72487] INFO -- : Rendered inline template within layouts/application (4906.7ms)
336
- I, [2016-10-30T00:54:57.256676 #72487] INFO -- : Completed 200 OK in 6509ms (Views: 4908.3ms | ActiveRecord: 0.0ms)
337
- I, [2016-11-04T14:26:01.023011 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:01 -0700
338
- I, [2016-11-04T14:26:01.037152 #33176] INFO -- : Processing by BaselineController#show as HTML
339
- I, [2016-11-04T14:26:01.044659 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
340
- I, [2016-11-04T14:26:01.051659 #33176] INFO -- : Completed 200 OK in 14ms (Views: 14.1ms | ActiveRecord: 0.0ms)
341
- I, [2016-11-04T14:26:01.054928 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:01 -0700
342
- I, [2016-11-04T14:26:01.056223 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
343
- I, [2016-11-04T14:26:01.056265 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
344
- I, [2016-11-04T14:26:02.533755 #33176] INFO -- : Rendered inline template within layouts/application (1472.3ms)
345
- I, [2016-11-04T14:26:02.536156 #33176] INFO -- : Completed 200 OK in 1480ms (Views: 1477.3ms | ActiveRecord: 0.0ms)
346
- I, [2016-11-04T14:26:02.539657 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:02 -0700
347
- I, [2016-11-04T14:26:02.540346 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
348
- I, [2016-11-04T14:26:02.540382 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
349
- I, [2016-11-04T14:26:02.898415 #33176] INFO -- : Rendered inline template within layouts/application (357.1ms)
350
- I, [2016-11-04T14:26:02.899834 #33176] INFO -- : Completed 200 OK in 359ms (Views: 359.0ms | ActiveRecord: 0.0ms)
351
- I, [2016-11-04T14:26:03.123811 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:03 -0700
352
- I, [2016-11-04T14:26:03.124455 #33176] INFO -- : Processing by BaselineController#show as HTML
353
- I, [2016-11-04T14:26:03.124832 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
354
- I, [2016-11-04T14:26:03.125392 #33176] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
355
- I, [2016-11-04T14:26:03.193300 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:03 -0700
356
- I, [2016-11-04T14:26:03.193796 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
357
- I, [2016-11-04T14:26:03.193828 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
358
- I, [2016-11-04T14:26:03.393249 #33176] INFO -- : Rendered inline template within layouts/application (199.0ms)
359
- I, [2016-11-04T14:26:03.394013 #33176] INFO -- : Completed 200 OK in 200ms (Views: 199.9ms | ActiveRecord: 0.0ms)
360
- I, [2016-11-04T14:26:03.473757 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:03 -0700
361
- I, [2016-11-04T14:26:03.474371 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
362
- I, [2016-11-04T14:26:03.474409 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
363
- I, [2016-11-04T14:26:03.670317 #33176] INFO -- : Rendered inline template within layouts/application (195.5ms)
364
- I, [2016-11-04T14:26:03.671044 #33176] INFO -- : Completed 200 OK in 197ms (Views: 196.3ms | ActiveRecord: 0.0ms)
365
- I, [2016-11-04T14:26:07.409683 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:07 -0700
366
- I, [2016-11-04T14:26:07.410324 #33176] INFO -- : Processing by BaselineController#show as HTML
367
- I, [2016-11-04T14:26:07.410705 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
368
- I, [2016-11-04T14:26:07.411154 #33176] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
369
- I, [2016-11-04T14:26:07.412192 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:07 -0700
370
- I, [2016-11-04T14:26:09.775058 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
371
- I, [2016-11-04T14:26:09.775117 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
372
- I, [2016-11-04T14:26:19.754950 #33176] INFO -- : Rendered inline template within layouts/application (7510.0ms)
373
- I, [2016-11-04T14:26:19.756618 #33176] INFO -- : Completed 200 OK in 9981ms (Views: 7511.8ms | ActiveRecord: 0.0ms)
374
- I, [2016-11-04T14:26:19.760259 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:19 -0700
375
- I, [2016-11-04T14:26:21.871391 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
376
- I, [2016-11-04T14:26:21.871463 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
377
- I, [2016-11-04T14:26:31.559809 #33176] INFO -- : Rendered inline template within layouts/application (7949.0ms)
378
- I, [2016-11-04T14:26:31.560950 #33176] INFO -- : Completed 200 OK in 9689ms (Views: 7950.3ms | ActiveRecord: 0.0ms)
379
- I, [2016-11-04T14:26:36.741458 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:36 -0700
380
- I, [2016-11-04T14:26:36.742048 #33176] INFO -- : Processing by BaselineController#show as HTML
381
- I, [2016-11-04T14:26:36.742402 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
382
- I, [2016-11-04T14:26:36.742845 #33176] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
383
- I, [2016-11-04T14:26:36.885105 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:36 -0700
384
- I, [2016-11-04T14:26:39.958111 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
385
- I, [2016-11-04T14:26:39.958187 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
386
- I, [2016-11-04T14:26:49.226907 #33176] INFO -- : Rendered inline template within layouts/application (7301.4ms)
387
- I, [2016-11-04T14:26:49.227823 #33176] INFO -- : Completed 200 OK in 9270ms (Views: 7302.6ms | ActiveRecord: 0.0ms)
388
- I, [2016-11-04T14:26:49.694364 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:49 -0700
389
- I, [2016-11-04T14:26:51.740173 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
390
- I, [2016-11-04T14:26:51.740236 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
391
- I, [2016-11-04T14:27:02.514913 #33176] INFO -- : Rendered inline template within layouts/application (8493.2ms)
392
- I, [2016-11-04T14:27:02.515947 #33176] INFO -- : Completed 200 OK in 10776ms (Views: 8494.3ms | ActiveRecord: 0.0ms)
@@ -1,15 +0,0 @@
1
- require "spec_helper"
2
-
3
- describe Sitepress::Extensions::IndexRequestPath do
4
- subject { Sitepress::Extensions::IndexRequestPath.new }
5
- let(:site) { Sitepress::Site.new(root_path: "spec/sites/sample") }
6
- let(:root) { site.root }
7
-
8
- context "#process_resources" do
9
- before { subject.process_resources(root) }
10
- it "changes /index.html request_path to /" do
11
- # require "pry" ; binding.pry
12
- expect(root.get("/").request_path).to eql("/")
13
- end
14
- end
15
- end