sitepress-rails 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/controllers/concerns/sitepress/site_pages.rb +19 -4
- data/lib/sitepress/engine.rb +0 -4
- data/lib/sitepress/rails_configuration.rb +2 -1
- data/lib/sitepress/rails_configuration.rb.orig +41 -0
- data/spec/dummy/log/production.log +68 -0
- data/spec/dummy/log/test.log +1028 -0
- data/spec/sitepress-rails_spec.rb +0 -5
- data/spec/sitepress/sitepress_site_controller_spec.rb +24 -0
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '017964a6b834e56e38daccc09e5fd0c1b348e992cdcc364a4171878f14d5f2ff'
|
4
|
+
data.tar.gz: 2661db0afdd1e579aa8553af8e698971aac74b1ec0133cf10bab646378fa7e42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4301aca15a042853bbe39a53f9530119e82fcb096284c35855fe3d657c4cd04243ee2b4e715532174464a60636481c1d67d7a27f99e3e31c8359547b8e140338
|
7
|
+
data.tar.gz: e7cb83e9ad10139e84c2fb1fad36f237f37a953021044ebb476c03d4b7cc44e39bf6ca827478bd8e10b4789f68aaaa71c8037fe15fb12c4b31a04e6247cfa661
|
data/README.md
CHANGED
@@ -21,10 +21,12 @@ module Sitepress
|
|
21
21
|
|
22
22
|
protected
|
23
23
|
def render_page(page)
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
24
|
+
with_sitepress_render_cache do
|
25
|
+
render inline: page.body,
|
26
|
+
type: page.asset.template_extensions.last,
|
27
|
+
layout: page.data.fetch("layout", controller_layout),
|
28
|
+
content_type: page.mime_type.to_s
|
29
|
+
end
|
28
30
|
end
|
29
31
|
|
30
32
|
def current_page
|
@@ -58,6 +60,19 @@ module Sitepress
|
|
58
60
|
get params[:resource_path]
|
59
61
|
end
|
60
62
|
|
63
|
+
# When development environments disable the cache, we still want to turn it
|
64
|
+
# on during rendering so that view doesn't rebuild the site on each call.
|
65
|
+
def with_sitepress_render_cache(&block)
|
66
|
+
cache_resources = site.cache_resources
|
67
|
+
begin
|
68
|
+
site.cache_resources = true
|
69
|
+
yield
|
70
|
+
ensure
|
71
|
+
site.cache_resources = cache_resources
|
72
|
+
site.clear_resources_cache unless site.cache_resources
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
61
76
|
# Returns the current layout for the inline Sitepress renderer. This is
|
62
77
|
# exposed via some really convoluted private methods inside of the various
|
63
78
|
# versions of Rails, so I try my best to hack out the path to the layout below.
|
data/lib/sitepress/engine.rb
CHANGED
@@ -6,7 +6,8 @@ module Sitepress
|
|
6
6
|
# Store in ./app/content by default.
|
7
7
|
DEFAULT_SITE_ROOT = "app/content".freeze
|
8
8
|
|
9
|
-
attr_accessor :
|
9
|
+
attr_accessor :routes
|
10
|
+
attr_writer :site, :parent_engine
|
10
11
|
|
11
12
|
# Delegates configuration points into the Sitepress site.
|
12
13
|
extend Forwardable
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require "forwardable"
|
2
|
+
|
3
|
+
module Sitepress
|
4
|
+
# Configuration object for rails application.
|
5
|
+
class RailsConfiguration
|
6
|
+
# Store in ./app/content by default.
|
7
|
+
DEFAULT_SITE_ROOT = "app/content".freeze
|
8
|
+
|
9
|
+
<<<<<<< HEAD
|
10
|
+
attr_accessor :routes, :cache_resources
|
11
|
+
=======
|
12
|
+
attr_accessor :routes
|
13
|
+
attr_writer :site, :parent_engine
|
14
|
+
>>>>>>> Remove redudant method definitions
|
15
|
+
|
16
|
+
# Delegates configuration points into the Sitepress site.
|
17
|
+
extend Forwardable
|
18
|
+
def_delegators :site, :cache_resources, :cache_resources=, :cache_resources?
|
19
|
+
|
20
|
+
# Set defaults.
|
21
|
+
def initialize
|
22
|
+
self.routes = true
|
23
|
+
end
|
24
|
+
|
25
|
+
def parent_engine
|
26
|
+
@parent_engine ||= Rails.application
|
27
|
+
end
|
28
|
+
|
29
|
+
def site
|
30
|
+
@site ||= Site.new(root_path: default_root).tap do |site|
|
31
|
+
site.resources_pipeline << Extensions::PartialsRemover.new
|
32
|
+
site.resources_pipeline << Extensions::RailsRequestPaths.new
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
private
|
37
|
+
def default_root
|
38
|
+
Rails.root.join(DEFAULT_SITE_ROOT)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -1358,3 +1358,71 @@ I, [2017-03-27T22:50:44.330065 #3842] INFO -- : Parameters: {"resource_path"=
|
|
1358
1358
|
I, [2017-03-27T22:50:44.330715 #3842] INFO -- : Rendering inline template within layouts/application
|
1359
1359
|
I, [2017-03-27T22:50:45.741182 #3842] INFO -- : Rendered inline template within layouts/application (1410.4ms)
|
1360
1360
|
I, [2017-03-27T22:50:45.744287 #3842] INFO -- : Completed 200 OK in 1414ms (Views: 1413.6ms)
|
1361
|
+
I, [2020-08-03T19:07:47.027613 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:47 -0400
|
1362
|
+
I, [2020-08-03T19:07:47.032564 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1363
|
+
I, [2020-08-03T19:07:47.035679 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1364
|
+
I, [2020-08-03T19:07:47.036369 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.5ms | Allocations: 98)
|
1365
|
+
I, [2020-08-03T19:07:47.042921 #2784] INFO -- : Completed 200 OK in 10ms (Views: 9.3ms | Allocations: 1312)
|
1366
|
+
I, [2020-08-03T19:07:47.045545 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:47 -0400
|
1367
|
+
I, [2020-08-03T19:07:47.046593 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1368
|
+
I, [2020-08-03T19:07:47.046679 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1369
|
+
I, [2020-08-03T19:07:47.049977 #2784] INFO -- : Rendering inline template within layouts/application
|
1370
|
+
I, [2020-08-03T19:07:48.823461 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1773.3ms | Allocations: 710139)
|
1371
|
+
I, [2020-08-03T19:07:48.825531 #2784] INFO -- : Completed 200 OK in 1779ms (Views: 1776.1ms | Allocations: 711252)
|
1372
|
+
I, [2020-08-03T19:07:48.833396 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:48 -0400
|
1373
|
+
I, [2020-08-03T19:07:48.834259 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1374
|
+
I, [2020-08-03T19:07:48.834332 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1375
|
+
I, [2020-08-03T19:07:48.835105 #2784] INFO -- : Rendering inline template within layouts/application
|
1376
|
+
I, [2020-08-03T19:07:49.035577 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 200.4ms | Allocations: 300170)
|
1377
|
+
I, [2020-08-03T19:07:49.037131 #2784] INFO -- : Completed 200 OK in 203ms (Views: 202.2ms | Allocations: 300789)
|
1378
|
+
I, [2020-08-03T19:07:49.280763 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
|
1379
|
+
I, [2020-08-03T19:07:49.281572 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1380
|
+
I, [2020-08-03T19:07:49.282134 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1381
|
+
I, [2020-08-03T19:07:49.282286 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1382
|
+
I, [2020-08-03T19:07:49.283218 #2784] INFO -- : Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 524)
|
1383
|
+
I, [2020-08-03T19:07:49.368231 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
|
1384
|
+
I, [2020-08-03T19:07:49.369249 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1385
|
+
I, [2020-08-03T19:07:49.369409 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1386
|
+
I, [2020-08-03T19:07:49.370076 #2784] INFO -- : Rendering inline template within layouts/application
|
1387
|
+
I, [2020-08-03T19:07:49.560516 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 190.3ms | Allocations: 300178)
|
1388
|
+
I, [2020-08-03T19:07:49.561771 #2784] INFO -- : Completed 200 OK in 192ms (Views: 191.9ms | Allocations: 300747)
|
1389
|
+
I, [2020-08-03T19:07:49.659283 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
|
1390
|
+
I, [2020-08-03T19:07:49.659942 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1391
|
+
I, [2020-08-03T19:07:49.660015 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1392
|
+
I, [2020-08-03T19:07:49.660705 #2784] INFO -- : Rendering inline template within layouts/application
|
1393
|
+
I, [2020-08-03T19:07:49.845460 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 184.7ms | Allocations: 300172)
|
1394
|
+
I, [2020-08-03T19:07:49.846395 #2784] INFO -- : Completed 200 OK in 186ms (Views: 186.0ms | Allocations: 300741)
|
1395
|
+
I, [2020-08-03T19:07:52.570963 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:52 -0400
|
1396
|
+
I, [2020-08-03T19:07:52.571629 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1397
|
+
I, [2020-08-03T19:07:52.572078 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1398
|
+
I, [2020-08-03T19:07:52.572179 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1399
|
+
I, [2020-08-03T19:07:52.572915 #2784] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 524)
|
1400
|
+
I, [2020-08-03T19:07:52.575122 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:52 -0400
|
1401
|
+
I, [2020-08-03T19:07:53.810372 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1402
|
+
I, [2020-08-03T19:07:53.810456 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1403
|
+
I, [2020-08-03T19:07:53.811334 #2784] INFO -- : Rendering inline template within layouts/application
|
1404
|
+
I, [2020-08-03T19:07:55.323969 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1512.5ms | Allocations: 740141)
|
1405
|
+
I, [2020-08-03T19:07:55.325478 #2784] INFO -- : Completed 200 OK in 1515ms (Views: 1514.3ms | Allocations: 740802)
|
1406
|
+
I, [2020-08-03T19:07:55.330961 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:55 -0400
|
1407
|
+
I, [2020-08-03T19:07:56.586894 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1408
|
+
I, [2020-08-03T19:07:56.586969 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1409
|
+
I, [2020-08-03T19:07:56.587730 #2784] INFO -- : Rendering inline template within layouts/application
|
1410
|
+
I, [2020-08-03T19:07:58.364828 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1777.0ms | Allocations: 740138)
|
1411
|
+
I, [2020-08-03T19:07:58.365827 #2784] INFO -- : Completed 200 OK in 1779ms (Views: 1778.2ms | Allocations: 740797)
|
1412
|
+
I, [2020-08-03T19:08:01.152553 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:08:01 -0400
|
1413
|
+
I, [2020-08-03T19:08:01.153120 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1414
|
+
I, [2020-08-03T19:08:01.153480 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1415
|
+
I, [2020-08-03T19:08:01.153645 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
|
1416
|
+
I, [2020-08-03T19:08:01.154878 #2784] INFO -- : Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 524)
|
1417
|
+
I, [2020-08-03T19:08:01.264807 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:08:01 -0400
|
1418
|
+
I, [2020-08-03T19:08:02.283036 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1419
|
+
I, [2020-08-03T19:08:02.283121 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1420
|
+
I, [2020-08-03T19:08:02.283850 #2784] INFO -- : Rendering inline template within layouts/application
|
1421
|
+
I, [2020-08-03T19:08:03.528806 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1244.9ms | Allocations: 740141)
|
1422
|
+
I, [2020-08-03T19:08:03.530321 #2784] INFO -- : Completed 200 OK in 1247ms (Views: 1246.6ms | Allocations: 740802)
|
1423
|
+
I, [2020-08-03T19:08:03.668750 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:08:03 -0400
|
1424
|
+
I, [2020-08-03T19:08:04.640655 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1425
|
+
I, [2020-08-03T19:08:04.640737 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1426
|
+
I, [2020-08-03T19:08:04.641397 #2784] INFO -- : Rendering inline template within layouts/application
|
1427
|
+
I, [2020-08-03T19:08:06.076780 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1435.3ms | Allocations: 740135)
|
1428
|
+
I, [2020-08-03T19:08:06.078611 #2784] INFO -- : Completed 200 OK in 1438ms (Views: 1437.3ms | Allocations: 740796)
|
data/spec/dummy/log/test.log
CHANGED
@@ -79806,3 +79806,1031 @@ Processing by Sitepress::SiteController#show as HTML
|
|
79806
79806
|
Rendering inline template within layouts/application
|
79807
79807
|
Rendered inline template within layouts/application (Duration: 0.4ms | Allocations: 65)
|
79808
79808
|
Completed 200 OK in 7ms (Views: 3.2ms | Allocations: 2048)
|
79809
|
+
Processing by Sitepress::SiteController#show as HTML
|
79810
|
+
Parameters: {"resource_path"=>"/time"}
|
79811
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79812
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 1.1ms | Allocations: 77)
|
79813
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.6ms | Allocations: 75)
|
79814
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 8.5ms | Allocations: 2027)
|
79815
|
+
Completed 200 OK in 18ms (Views: 12.1ms | Allocations: 6306)
|
79816
|
+
Processing by Sitepress::SiteController#show as HTML
|
79817
|
+
Parameters: {"resource_path"=>"/time"}
|
79818
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79819
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79820
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79821
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
79822
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2370)
|
79823
|
+
Processing by Sitepress::SiteController#show as HTML
|
79824
|
+
Parameters: {"resource_path"=>"/time"}
|
79825
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79826
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
79827
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79828
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
79829
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2370)
|
79830
|
+
Processing by Sitepress::SiteController#show as HTML
|
79831
|
+
Parameters: {"resource_path"=>"/time"}
|
79832
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79833
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79834
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79835
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
79836
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2370)
|
79837
|
+
Processing by Sitepress::SiteController#show as HTML
|
79838
|
+
Parameters: {"resource_path"=>"/time"}
|
79839
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79840
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79841
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79842
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 310)
|
79843
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 2370)
|
79844
|
+
Processing by Sitepress::SiteController#show as HTML
|
79845
|
+
Parameters: {"resource_path"=>"/time"}
|
79846
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79847
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79848
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
|
79849
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 2.2ms | Allocations: 310)
|
79850
|
+
Completed 200 OK in 15ms (Views: 2.9ms | Allocations: 2370)
|
79851
|
+
Processing by Sitepress::SiteController#show as HTML
|
79852
|
+
Parameters: {"resource_path"=>"/hi"}
|
79853
|
+
Rendering inline template within layouts/application
|
79854
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 66)
|
79855
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2179)
|
79856
|
+
Processing by Sitepress::SiteController#show as HTML
|
79857
|
+
Parameters: {"resource_path"=>"/hi"}
|
79858
|
+
Rendering inline template within layouts/application
|
79859
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
79860
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2066)
|
79861
|
+
Processing by Sitepress::SiteController#show as HTML
|
79862
|
+
Parameters: {"resource_path"=>"/hi"}
|
79863
|
+
Rendering inline template within layouts/application
|
79864
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
79865
|
+
Completed 200 OK in 3ms (Views: 0.8ms | Allocations: 2066)
|
79866
|
+
Processing by Sitepress::SiteController#show as HTML
|
79867
|
+
Parameters: {"resource_path"=>"/hi"}
|
79868
|
+
Rendering inline template within layouts/application
|
79869
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
79870
|
+
Completed 200 OK in 2ms (Views: 0.7ms | Allocations: 2066)
|
79871
|
+
Processing by Sitepress::SiteController#show as HTML
|
79872
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
79873
|
+
Completed 404 Not Found in 2ms (Allocations: 1793)
|
79874
|
+
Processing by Sitepress::SiteController#show as HTML
|
79875
|
+
Parameters: {"resource_path"=>"/hi"}
|
79876
|
+
Rendering inline template within layouts/application
|
79877
|
+
Rendered inline template within layouts/application (Duration: 1.6ms | Allocations: 230)
|
79878
|
+
Completed 200 OK in 470ms (Views: 10.1ms | Allocations: 123698)
|
79879
|
+
Processing by Sitepress::SiteController#show as HTML
|
79880
|
+
Parameters: {"resource_path"=>"/hi"}
|
79881
|
+
Rendering inline template within layouts/application
|
79882
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
79883
|
+
Completed 200 OK in 5ms (Views: 0.9ms | Allocations: 2049)
|
79884
|
+
Processing by Sitepress::SiteController#show as HTML
|
79885
|
+
Parameters: {"resource_path"=>"/hi"}
|
79886
|
+
Rendering inline template within layouts/application
|
79887
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 67)
|
79888
|
+
Completed 200 OK in 9ms (Views: 0.8ms | Allocations: 2054)
|
79889
|
+
Processing by Sitepress::SiteController#show as HTML
|
79890
|
+
Parameters: {"resource_path"=>"/hi"}
|
79891
|
+
Rendering inline template within layouts/application
|
79892
|
+
Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 65)
|
79893
|
+
Completed 200 OK in 3ms (Views: 0.6ms | Allocations: 2049)
|
79894
|
+
Processing by Sitepress::SiteController#show as HTML
|
79895
|
+
Parameters: {"resource_path"=>"/time"}
|
79896
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79897
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.7ms | Allocations: 77)
|
79898
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.6ms | Allocations: 75)
|
79899
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 3.9ms | Allocations: 886)
|
79900
|
+
Completed 200 OK in 10ms (Views: 6.9ms | Allocations: 3249)
|
79901
|
+
Processing by Sitepress::SiteController#show as HTML
|
79902
|
+
Parameters: {"resource_path"=>"/time"}
|
79903
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79904
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79905
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79906
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
79907
|
+
Completed 200 OK in 3ms (Views: 0.9ms | Allocations: 2299)
|
79908
|
+
Processing by Sitepress::SiteController#show as HTML
|
79909
|
+
Parameters: {"resource_path"=>"/time"}
|
79910
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79911
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79912
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
|
79913
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.6ms | Allocations: 274)
|
79914
|
+
Completed 200 OK in 5ms (Views: 2.3ms | Allocations: 2299)
|
79915
|
+
Processing by Sitepress::SiteController#show as HTML
|
79916
|
+
Parameters: {"resource_path"=>"/time"}
|
79917
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79918
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.3ms | Allocations: 6)
|
79919
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79920
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.4ms | Allocations: 274)
|
79921
|
+
Completed 200 OK in 5ms (Views: 2.0ms | Allocations: 2299)
|
79922
|
+
Processing by Sitepress::SiteController#show as HTML
|
79923
|
+
Parameters: {"resource_path"=>"/time"}
|
79924
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79925
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79926
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79927
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.1ms | Allocations: 274)
|
79928
|
+
Completed 200 OK in 4ms (Views: 1.7ms | Allocations: 2302)
|
79929
|
+
Processing by Sitepress::SiteController#show as HTML
|
79930
|
+
Parameters: {"resource_path"=>"/time"}
|
79931
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79932
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79933
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79934
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 274)
|
79935
|
+
Completed 200 OK in 4ms (Views: 1.3ms | Allocations: 2299)
|
79936
|
+
Processing by Sitepress::SiteController#show as HTML
|
79937
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
79938
|
+
Completed 404 Not Found in 2ms (Allocations: 1793)
|
79939
|
+
Processing by Sitepress::SiteController#show as HTML
|
79940
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
79941
|
+
Completed 404 Not Found in 2ms (Allocations: 1836)
|
79942
|
+
Processing by Sitepress::SiteController#show as HTML
|
79943
|
+
Parameters: {"resource_path"=>"/hi"}
|
79944
|
+
Rendering inline template within layouts/application
|
79945
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 82)
|
79946
|
+
Completed 200 OK in 8ms (Views: 2.0ms | Allocations: 3504)
|
79947
|
+
Processing by Sitepress::SiteController#show as HTML
|
79948
|
+
Parameters: {"resource_path"=>"/hi"}
|
79949
|
+
Rendering inline template within layouts/application
|
79950
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
79951
|
+
Completed 200 OK in 2ms (Views: 0.7ms | Allocations: 2067)
|
79952
|
+
Processing by Sitepress::SiteController#show as HTML
|
79953
|
+
Parameters: {"resource_path"=>"/hi"}
|
79954
|
+
Rendering inline template within layouts/application
|
79955
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
79956
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2067)
|
79957
|
+
Processing by Sitepress::SiteController#show as HTML
|
79958
|
+
Parameters: {"resource_path"=>"/hi"}
|
79959
|
+
Rendering inline template within layouts/application
|
79960
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
79961
|
+
Completed 200 OK in 3ms (Views: 0.7ms | Allocations: 2067)
|
79962
|
+
Processing by Sitepress::SiteController#show as HTML
|
79963
|
+
Parameters: {"resource_path"=>"/time"}
|
79964
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79965
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.9ms | Allocations: 76)
|
79966
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.7ms | Allocations: 75)
|
79967
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 7.3ms | Allocations: 2007)
|
79968
|
+
Completed 200 OK in 15ms (Views: 12.1ms | Allocations: 4941)
|
79969
|
+
Processing by Sitepress::SiteController#show as HTML
|
79970
|
+
Parameters: {"resource_path"=>"/time"}
|
79971
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79972
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79973
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79974
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
79975
|
+
Completed 200 OK in 3ms (Views: 1.2ms | Allocations: 2371)
|
79976
|
+
Processing by Sitepress::SiteController#show as HTML
|
79977
|
+
Parameters: {"resource_path"=>"/time"}
|
79978
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79979
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79980
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79981
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 310)
|
79982
|
+
Completed 200 OK in 4ms (Views: 1.3ms | Allocations: 2371)
|
79983
|
+
Processing by Sitepress::SiteController#show as HTML
|
79984
|
+
Parameters: {"resource_path"=>"/time"}
|
79985
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79986
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
79987
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79988
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
79989
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2371)
|
79990
|
+
Processing by Sitepress::SiteController#show as HTML
|
79991
|
+
Parameters: {"resource_path"=>"/time"}
|
79992
|
+
Rendering inline template within layouts/sitepress_test_layout
|
79993
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 6)
|
79994
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
79995
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.5ms | Allocations: 310)
|
79996
|
+
Completed 200 OK in 5ms (Views: 2.1ms | Allocations: 2371)
|
79997
|
+
Processing by Sitepress::SiteController#show as HTML
|
79998
|
+
Parameters: {"resource_path"=>"/time"}
|
79999
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80000
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80001
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80002
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
80003
|
+
Completed 200 OK in 3ms (Views: 1.2ms | Allocations: 2371)
|
80004
|
+
Processing by Sitepress::SiteController#show as HTML
|
80005
|
+
Parameters: {"resource_path"=>"/time"}
|
80006
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80007
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80008
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80009
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 313)
|
80010
|
+
Completed 200 OK in 7ms (Views: 1.2ms | Allocations: 2377)
|
80011
|
+
Processing by Sitepress::SiteController#show as HTML
|
80012
|
+
Parameters: {"resource_path"=>"/hi"}
|
80013
|
+
Rendering inline template within layouts/application
|
80014
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 82)
|
80015
|
+
Completed 200 OK in 9ms (Views: 2.3ms | Allocations: 3547)
|
80016
|
+
Processing by Sitepress::SiteController#show as HTML
|
80017
|
+
Parameters: {"resource_path"=>"/hi"}
|
80018
|
+
Rendering inline template within layouts/application
|
80019
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80020
|
+
Completed 200 OK in 5ms (Views: 0.7ms | Allocations: 2067)
|
80021
|
+
Processing by Sitepress::SiteController#show as HTML
|
80022
|
+
Parameters: {"resource_path"=>"/hi"}
|
80023
|
+
Rendering inline template within layouts/application
|
80024
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 67)
|
80025
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2072)
|
80026
|
+
Processing by Sitepress::SiteController#show as HTML
|
80027
|
+
Parameters: {"resource_path"=>"/hi"}
|
80028
|
+
Rendering inline template within layouts/application
|
80029
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80030
|
+
Completed 200 OK in 4ms (Views: 0.7ms | Allocations: 2067)
|
80031
|
+
Processing by Sitepress::SiteController#show as HTML
|
80032
|
+
Parameters: {"resource_path"=>"/time"}
|
80033
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80034
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.6ms | Allocations: 77)
|
80035
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.6ms | Allocations: 75)
|
80036
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 6.9ms | Allocations: 2008)
|
80037
|
+
Completed 200 OK in 14ms (Views: 11.0ms | Allocations: 4945)
|
80038
|
+
Processing by Sitepress::SiteController#show as HTML
|
80039
|
+
Parameters: {"resource_path"=>"/time"}
|
80040
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80041
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80042
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80043
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 310)
|
80044
|
+
Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2371)
|
80045
|
+
Processing by Sitepress::SiteController#show as HTML
|
80046
|
+
Parameters: {"resource_path"=>"/time"}
|
80047
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80048
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80049
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80050
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 310)
|
80051
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 2371)
|
80052
|
+
Processing by Sitepress::SiteController#show as HTML
|
80053
|
+
Parameters: {"resource_path"=>"/time"}
|
80054
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80055
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80056
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80057
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 310)
|
80058
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 2371)
|
80059
|
+
Processing by Sitepress::SiteController#show as HTML
|
80060
|
+
Parameters: {"resource_path"=>"/time"}
|
80061
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80062
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80063
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80064
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
80065
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2371)
|
80066
|
+
Processing by Sitepress::SiteController#show as HTML
|
80067
|
+
Parameters: {"resource_path"=>"/time"}
|
80068
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80069
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80070
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80071
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
80072
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 2371)
|
80073
|
+
Processing by Sitepress::SiteController#show as HTML
|
80074
|
+
Parameters: {"resource_path"=>"/time"}
|
80075
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80076
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80077
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80078
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 310)
|
80079
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 2371)
|
80080
|
+
Processing by Sitepress::SiteController#show as HTML
|
80081
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80082
|
+
Completed 404 Not Found in 2ms (Allocations: 1796)
|
80083
|
+
Processing by Sitepress::SiteController#show as HTML
|
80084
|
+
Parameters: {"resource_path"=>"/hi"}
|
80085
|
+
Rendering inline template within layouts/application
|
80086
|
+
Rendered inline template within layouts/application (Duration: 1.2ms | Allocations: 230)
|
80087
|
+
Completed 200 OK in 17ms (Views: 8.1ms | Allocations: 3907)
|
80088
|
+
Processing by Sitepress::SiteController#show as HTML
|
80089
|
+
Parameters: {"resource_path"=>"/hi"}
|
80090
|
+
Rendering inline template within layouts/application
|
80091
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80092
|
+
Completed 200 OK in 2ms (Views: 0.7ms | Allocations: 2049)
|
80093
|
+
Processing by Sitepress::SiteController#show as HTML
|
80094
|
+
Parameters: {"resource_path"=>"/hi"}
|
80095
|
+
Rendering inline template within layouts/application
|
80096
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80097
|
+
Completed 200 OK in 3ms (Views: 0.7ms | Allocations: 2049)
|
80098
|
+
Processing by Sitepress::SiteController#show as HTML
|
80099
|
+
Parameters: {"resource_path"=>"/hi"}
|
80100
|
+
Rendering inline template within layouts/application
|
80101
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 65)
|
80102
|
+
Completed 200 OK in 3ms (Views: 0.8ms | Allocations: 2049)
|
80103
|
+
Processing by Sitepress::SiteController#show as HTML
|
80104
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80105
|
+
Completed 404 Not Found in 1ms (Allocations: 1793)
|
80106
|
+
Processing by Sitepress::SiteController#show as HTML
|
80107
|
+
Parameters: {"resource_path"=>"/time"}
|
80108
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80109
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.6ms | Allocations: 76)
|
80110
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.8ms | Allocations: 75)
|
80111
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 5.5ms | Allocations: 885)
|
80112
|
+
Completed 200 OK in 13ms (Views: 8.6ms | Allocations: 3248)
|
80113
|
+
Processing by Sitepress::SiteController#show as HTML
|
80114
|
+
Parameters: {"resource_path"=>"/time"}
|
80115
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80116
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80117
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80118
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 274)
|
80119
|
+
Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 2299)
|
80120
|
+
Processing by Sitepress::SiteController#show as HTML
|
80121
|
+
Parameters: {"resource_path"=>"/time"}
|
80122
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80123
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80124
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
|
80125
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 274)
|
80126
|
+
Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2299)
|
80127
|
+
Processing by Sitepress::SiteController#show as HTML
|
80128
|
+
Parameters: {"resource_path"=>"/time"}
|
80129
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80130
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80131
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80132
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80133
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2299)
|
80134
|
+
Processing by Sitepress::SiteController#show as HTML
|
80135
|
+
Parameters: {"resource_path"=>"/time"}
|
80136
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80137
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80138
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80139
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80140
|
+
Completed 200 OK in 3ms (Views: 1.2ms | Allocations: 2299)
|
80141
|
+
Processing by Sitepress::SiteController#show as HTML
|
80142
|
+
Parameters: {"resource_path"=>"/time"}
|
80143
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80144
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80145
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80146
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80147
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80148
|
+
Processing by Sitepress::SiteController#show as HTML
|
80149
|
+
Parameters: {"resource_path"=>"/time"}
|
80150
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80151
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80152
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
|
80153
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.6ms | Allocations: 274)
|
80154
|
+
Completed 200 OK in 6ms (Views: 2.8ms | Allocations: 2299)
|
80155
|
+
Processing by Sitepress::SiteController#show as HTML
|
80156
|
+
Parameters: {"resource_path"=>"/time"}
|
80157
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80158
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.3ms | Allocations: 77)
|
80159
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.3ms | Allocations: 75)
|
80160
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 3.8ms | Allocations: 1052)
|
80161
|
+
Completed 200 OK in 14ms (Views: 7.8ms | Allocations: 5855)
|
80162
|
+
Processing by Sitepress::SiteController#show as HTML
|
80163
|
+
Parameters: {"resource_path"=>"/time"}
|
80164
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80165
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80166
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80167
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.9ms | Allocations: 279)
|
80168
|
+
Completed 200 OK in 4ms (Views: 1.6ms | Allocations: 2307)
|
80169
|
+
Processing by Sitepress::SiteController#show as HTML
|
80170
|
+
Parameters: {"resource_path"=>"/time"}
|
80171
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80172
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80173
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
|
80174
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.3ms | Allocations: 274)
|
80175
|
+
Completed 200 OK in 4ms (Views: 2.2ms | Allocations: 2299)
|
80176
|
+
Processing by Sitepress::SiteController#show as HTML
|
80177
|
+
Parameters: {"resource_path"=>"/time"}
|
80178
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80179
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80180
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80181
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.1ms | Allocations: 274)
|
80182
|
+
Completed 200 OK in 4ms (Views: 1.8ms | Allocations: 2299)
|
80183
|
+
Processing by Sitepress::SiteController#show as HTML
|
80184
|
+
Parameters: {"resource_path"=>"/time"}
|
80185
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80186
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80187
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80188
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80189
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80190
|
+
Processing by Sitepress::SiteController#show as HTML
|
80191
|
+
Parameters: {"resource_path"=>"/time"}
|
80192
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80193
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80194
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80195
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80196
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80197
|
+
Processing by Sitepress::SiteController#show as HTML
|
80198
|
+
Parameters: {"resource_path"=>"/time"}
|
80199
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80200
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80201
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80202
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.9ms | Allocations: 274)
|
80203
|
+
Completed 200 OK in 5ms (Views: 1.4ms | Allocations: 2299)
|
80204
|
+
Processing by Sitepress::SiteController#show as HTML
|
80205
|
+
Parameters: {"resource_path"=>"/hi"}
|
80206
|
+
Rendering inline template within layouts/application
|
80207
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 66)
|
80208
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2163)
|
80209
|
+
Processing by Sitepress::SiteController#show as HTML
|
80210
|
+
Parameters: {"resource_path"=>"/hi"}
|
80211
|
+
Rendering inline template within layouts/application
|
80212
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 65)
|
80213
|
+
Completed 200 OK in 3ms (Views: 0.8ms | Allocations: 2049)
|
80214
|
+
Processing by Sitepress::SiteController#show as HTML
|
80215
|
+
Parameters: {"resource_path"=>"/hi"}
|
80216
|
+
Rendering inline template within layouts/application
|
80217
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80218
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2049)
|
80219
|
+
Processing by Sitepress::SiteController#show as HTML
|
80220
|
+
Parameters: {"resource_path"=>"/hi"}
|
80221
|
+
Rendering inline template within layouts/application
|
80222
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80223
|
+
Completed 200 OK in 3ms (Views: 0.7ms | Allocations: 2049)
|
80224
|
+
Processing by Sitepress::SiteController#show as HTML
|
80225
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80226
|
+
Completed 404 Not Found in 2ms (Allocations: 1793)
|
80227
|
+
Processing by Sitepress::SiteController#show as HTML
|
80228
|
+
Parameters: {"resource_path"=>"/hi"}
|
80229
|
+
Rendering inline template within layouts/application
|
80230
|
+
Rendered inline template within layouts/application (Duration: 1.4ms | Allocations: 230)
|
80231
|
+
Completed 200 OK in 171ms (Views: 7.4ms | Allocations: 123698)
|
80232
|
+
Processing by Sitepress::SiteController#show as HTML
|
80233
|
+
Parameters: {"resource_path"=>"/hi"}
|
80234
|
+
Rendering inline template within layouts/application
|
80235
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80236
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2049)
|
80237
|
+
Processing by Sitepress::SiteController#show as HTML
|
80238
|
+
Parameters: {"resource_path"=>"/hi"}
|
80239
|
+
Rendering inline template within layouts/application
|
80240
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 67)
|
80241
|
+
Completed 200 OK in 9ms (Views: 0.8ms | Allocations: 2054)
|
80242
|
+
Processing by Sitepress::SiteController#show as HTML
|
80243
|
+
Parameters: {"resource_path"=>"/hi"}
|
80244
|
+
Rendering inline template within layouts/application
|
80245
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80246
|
+
Completed 200 OK in 3ms (Views: 0.7ms | Allocations: 2049)
|
80247
|
+
Processing by Sitepress::SiteController#show as HTML
|
80248
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80249
|
+
Completed 404 Not Found in 2ms (Allocations: 1793)
|
80250
|
+
Processing by Sitepress::SiteController#show as HTML
|
80251
|
+
Parameters: {"resource_path"=>"/time"}
|
80252
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80253
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.6ms | Allocations: 77)
|
80254
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.6ms | Allocations: 75)
|
80255
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 3.1ms | Allocations: 886)
|
80256
|
+
Completed 200 OK in 8ms (Views: 5.1ms | Allocations: 3249)
|
80257
|
+
Processing by Sitepress::SiteController#show as HTML
|
80258
|
+
Parameters: {"resource_path"=>"/time"}
|
80259
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80260
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80261
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80262
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 274)
|
80263
|
+
Completed 200 OK in 4ms (Views: 1.4ms | Allocations: 2299)
|
80264
|
+
Processing by Sitepress::SiteController#show as HTML
|
80265
|
+
Parameters: {"resource_path"=>"/time"}
|
80266
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80267
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80268
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80269
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80270
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80271
|
+
Processing by Sitepress::SiteController#show as HTML
|
80272
|
+
Parameters: {"resource_path"=>"/time"}
|
80273
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80274
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80275
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80276
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.1ms | Allocations: 274)
|
80277
|
+
Completed 200 OK in 4ms (Views: 1.8ms | Allocations: 2303)
|
80278
|
+
Processing by Sitepress::SiteController#show as HTML
|
80279
|
+
Parameters: {"resource_path"=>"/time"}
|
80280
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80281
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80282
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80283
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 274)
|
80284
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2299)
|
80285
|
+
Processing by Sitepress::SiteController#show as HTML
|
80286
|
+
Parameters: {"resource_path"=>"/time"}
|
80287
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80288
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80289
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80290
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 274)
|
80291
|
+
Completed 200 OK in 4ms (Views: 1.5ms | Allocations: 2299)
|
80292
|
+
Processing by Sitepress::SiteController#show as HTML
|
80293
|
+
Parameters: {"resource_path"=>"/time"}
|
80294
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80295
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.8ms | Allocations: 77)
|
80296
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 6.3ms | Allocations: 75)
|
80297
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 10.7ms | Allocations: 1052)
|
80298
|
+
Completed 200 OK in 210ms (Views: 16.5ms | Allocations: 124763)
|
80299
|
+
Processing by Sitepress::SiteController#show as HTML
|
80300
|
+
Parameters: {"resource_path"=>"/time"}
|
80301
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80302
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80303
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80304
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 274)
|
80305
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 2299)
|
80306
|
+
Processing by Sitepress::SiteController#show as HTML
|
80307
|
+
Parameters: {"resource_path"=>"/time"}
|
80308
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80309
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80310
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80311
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 277)
|
80312
|
+
Completed 200 OK in 12ms (Views: 1.5ms | Allocations: 2305)
|
80313
|
+
Processing by Sitepress::SiteController#show as HTML
|
80314
|
+
Parameters: {"resource_path"=>"/time"}
|
80315
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80316
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80317
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80318
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 274)
|
80319
|
+
Completed 200 OK in 3ms (Views: 0.9ms | Allocations: 2304)
|
80320
|
+
Processing by Sitepress::SiteController#show as HTML
|
80321
|
+
Parameters: {"resource_path"=>"/time"}
|
80322
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80323
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80324
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80325
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.9ms | Allocations: 274)
|
80326
|
+
Completed 200 OK in 5ms (Views: 1.4ms | Allocations: 2299)
|
80327
|
+
Processing by Sitepress::SiteController#show as HTML
|
80328
|
+
Parameters: {"resource_path"=>"/time"}
|
80329
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80330
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80331
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80332
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 274)
|
80333
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 2299)
|
80334
|
+
Processing by Sitepress::SiteController#show as HTML
|
80335
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80336
|
+
Completed 404 Not Found in 1ms (Allocations: 1793)
|
80337
|
+
Processing by Sitepress::SiteController#show as HTML
|
80338
|
+
Parameters: {"resource_path"=>"/hi"}
|
80339
|
+
Rendering inline template within layouts/application
|
80340
|
+
Rendered inline template within layouts/application (Duration: 0.5ms | Allocations: 66)
|
80341
|
+
Completed 200 OK in 5ms (Views: 1.8ms | Allocations: 2163)
|
80342
|
+
Processing by Sitepress::SiteController#show as HTML
|
80343
|
+
Parameters: {"resource_path"=>"/hi"}
|
80344
|
+
Rendering inline template within layouts/application
|
80345
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80346
|
+
Completed 200 OK in 5ms (Views: 0.8ms | Allocations: 2049)
|
80347
|
+
Processing by Sitepress::SiteController#show as HTML
|
80348
|
+
Parameters: {"resource_path"=>"/hi"}
|
80349
|
+
Rendering inline template within layouts/application
|
80350
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80351
|
+
Completed 200 OK in 2ms (Views: 0.7ms | Allocations: 2049)
|
80352
|
+
Processing by Sitepress::SiteController#show as HTML
|
80353
|
+
Parameters: {"resource_path"=>"/hi"}
|
80354
|
+
Rendering inline template within layouts/application
|
80355
|
+
Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 65)
|
80356
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2049)
|
80357
|
+
Processing by Sitepress::SiteController#show as HTML
|
80358
|
+
Parameters: {"resource_path"=>"/time"}
|
80359
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80360
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80361
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 52)
|
80362
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80363
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 51)
|
80364
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 3.8ms | Allocations: 1041)
|
80365
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80366
|
+
Completed 200 OK in 178ms (Views: 10.1ms | Allocations: 124814)
|
80367
|
+
Processing by Sitepress::SiteController#show as HTML
|
80368
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80369
|
+
Completed 404 Not Found in 9ms (Allocations: 1793)
|
80370
|
+
Processing by Sitepress::SiteController#show as HTML
|
80371
|
+
Parameters: {"resource_path"=>"/time"}
|
80372
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80373
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 1.4ms | Allocations: 76)
|
80374
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.8ms | Allocations: 74)
|
80375
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 3.1ms | Allocations: 416)
|
80376
|
+
Completed 200 OK in 6ms (Views: 4.3ms | Allocations: 2559)
|
80377
|
+
Processing by Sitepress::SiteController#show as HTML
|
80378
|
+
Parameters: {"resource_path"=>"/time"}
|
80379
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80380
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80381
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80382
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80383
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80384
|
+
Processing by Sitepress::SiteController#show as HTML
|
80385
|
+
Parameters: {"resource_path"=>"/time"}
|
80386
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80387
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80388
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
|
80389
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.2ms | Allocations: 274)
|
80390
|
+
Completed 200 OK in 4ms (Views: 2.0ms | Allocations: 2299)
|
80391
|
+
Processing by Sitepress::SiteController#show as HTML
|
80392
|
+
Parameters: {"resource_path"=>"/time"}
|
80393
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80394
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80395
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80396
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80397
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80398
|
+
Processing by Sitepress::SiteController#show as HTML
|
80399
|
+
Parameters: {"resource_path"=>"/time"}
|
80400
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80401
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80402
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80403
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80404
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80405
|
+
Processing by Sitepress::SiteController#show as HTML
|
80406
|
+
Parameters: {"resource_path"=>"/time"}
|
80407
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80408
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80409
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80410
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80411
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2302)
|
80412
|
+
Processing by Sitepress::SiteController#show as HTML
|
80413
|
+
Parameters: {"resource_path"=>"/hi"}
|
80414
|
+
Rendering inline template within layouts/application
|
80415
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 66)
|
80416
|
+
Completed 200 OK in 3ms (Views: 1.7ms | Allocations: 2162)
|
80417
|
+
Processing by Sitepress::SiteController#show as HTML
|
80418
|
+
Parameters: {"resource_path"=>"/hi"}
|
80419
|
+
Rendering inline template within layouts/application
|
80420
|
+
Rendered inline template within layouts/application (Duration: 0.6ms | Allocations: 65)
|
80421
|
+
Completed 200 OK in 4ms (Views: 1.7ms | Allocations: 2049)
|
80422
|
+
Processing by Sitepress::SiteController#show as HTML
|
80423
|
+
Parameters: {"resource_path"=>"/hi"}
|
80424
|
+
Rendering inline template within layouts/application
|
80425
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80426
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2049)
|
80427
|
+
Processing by Sitepress::SiteController#show as HTML
|
80428
|
+
Parameters: {"resource_path"=>"/hi"}
|
80429
|
+
Rendering inline template within layouts/application
|
80430
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 65)
|
80431
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 2049)
|
80432
|
+
Processing by Sitepress::SiteController#show as HTML
|
80433
|
+
Parameters: {"resource_path"=>"/time"}
|
80434
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80435
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80436
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 52)
|
80437
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80438
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 51)
|
80439
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 4.8ms | Allocations: 2051)
|
80440
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80441
|
+
Completed 500 Internal Server Error in 64ms (Views: 7.9ms | Allocations: 13778)
|
80442
|
+
Processing by Sitepress::SiteController#show as HTML
|
80443
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80444
|
+
Completed 404 Not Found in 1ms (Allocations: 1790)
|
80445
|
+
Processing by Sitepress::SiteController#show as HTML
|
80446
|
+
Parameters: {"resource_path"=>"/time"}
|
80447
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80448
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 76)
|
80449
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.2ms | Allocations: 74)
|
80450
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.2ms | Allocations: 452)
|
80451
|
+
Completed 200 OK in 4ms (Views: 1.8ms | Allocations: 2636)
|
80452
|
+
Processing by Sitepress::SiteController#show as HTML
|
80453
|
+
Parameters: {"resource_path"=>"/time"}
|
80454
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80455
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80456
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80457
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 310)
|
80458
|
+
Completed 200 OK in 3ms (Views: 1.2ms | Allocations: 2371)
|
80459
|
+
Processing by Sitepress::SiteController#show as HTML
|
80460
|
+
Parameters: {"resource_path"=>"/time"}
|
80461
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80462
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80463
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80464
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 310)
|
80465
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 2371)
|
80466
|
+
Processing by Sitepress::SiteController#show as HTML
|
80467
|
+
Parameters: {"resource_path"=>"/time"}
|
80468
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80469
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80470
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80471
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
80472
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2371)
|
80473
|
+
Processing by Sitepress::SiteController#show as HTML
|
80474
|
+
Parameters: {"resource_path"=>"/time"}
|
80475
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80476
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80477
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80478
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
80479
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2371)
|
80480
|
+
Processing by Sitepress::SiteController#show as HTML
|
80481
|
+
Parameters: {"resource_path"=>"/time"}
|
80482
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80483
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80484
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80485
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 310)
|
80486
|
+
Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 2371)
|
80487
|
+
Processing by Sitepress::SiteController#show as HTML
|
80488
|
+
Parameters: {"resource_path"=>"/hi"}
|
80489
|
+
Rendering inline template within layouts/application
|
80490
|
+
Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 66)
|
80491
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2180)
|
80492
|
+
Processing by Sitepress::SiteController#show as HTML
|
80493
|
+
Parameters: {"resource_path"=>"/hi"}
|
80494
|
+
Rendering inline template within layouts/application
|
80495
|
+
Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 65)
|
80496
|
+
Completed 200 OK in 2ms (Views: 0.4ms | Allocations: 2067)
|
80497
|
+
Processing by Sitepress::SiteController#show as HTML
|
80498
|
+
Parameters: {"resource_path"=>"/hi"}
|
80499
|
+
Rendering inline template within layouts/application
|
80500
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80501
|
+
Completed 200 OK in 2ms (Views: 0.7ms | Allocations: 2067)
|
80502
|
+
Processing by Sitepress::SiteController#show as HTML
|
80503
|
+
Parameters: {"resource_path"=>"/hi"}
|
80504
|
+
Rendering inline template within layouts/application
|
80505
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 65)
|
80506
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2067)
|
80507
|
+
Processing by Sitepress::SiteController#show as HTML
|
80508
|
+
Parameters: {"resource_path"=>"/hi"}
|
80509
|
+
Rendering inline template within layouts/application
|
80510
|
+
Rendered inline template within layouts/application (Duration: 0.8ms | Allocations: 230)
|
80511
|
+
Completed 200 OK in 8ms (Views: 4.6ms | Allocations: 3908)
|
80512
|
+
Processing by Sitepress::SiteController#show as HTML
|
80513
|
+
Parameters: {"resource_path"=>"/hi"}
|
80514
|
+
Rendering inline template within layouts/application
|
80515
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 67)
|
80516
|
+
Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2054)
|
80517
|
+
Processing by Sitepress::SiteController#show as HTML
|
80518
|
+
Parameters: {"resource_path"=>"/hi"}
|
80519
|
+
Rendering inline template within layouts/application
|
80520
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 65)
|
80521
|
+
Completed 200 OK in 3ms (Views: 0.8ms | Allocations: 2049)
|
80522
|
+
Processing by Sitepress::SiteController#show as HTML
|
80523
|
+
Parameters: {"resource_path"=>"/hi"}
|
80524
|
+
Rendering inline template within layouts/application
|
80525
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80526
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2049)
|
80527
|
+
Processing by Sitepress::SiteController#show as HTML
|
80528
|
+
Parameters: {"resource_path"=>"/time"}
|
80529
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80530
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.5ms | Allocations: 77)
|
80531
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.4ms | Allocations: 75)
|
80532
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 6.9ms | Allocations: 886)
|
80533
|
+
Completed 200 OK in 12ms (Views: 9.5ms | Allocations: 3249)
|
80534
|
+
Processing by Sitepress::SiteController#show as HTML
|
80535
|
+
Parameters: {"resource_path"=>"/time"}
|
80536
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80537
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80538
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80539
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.0ms | Allocations: 274)
|
80540
|
+
Completed 200 OK in 5ms (Views: 1.6ms | Allocations: 2299)
|
80541
|
+
Processing by Sitepress::SiteController#show as HTML
|
80542
|
+
Parameters: {"resource_path"=>"/time"}
|
80543
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80544
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80545
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80546
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.7ms | Allocations: 274)
|
80547
|
+
Completed 200 OK in 11ms (Views: 4.0ms | Allocations: 2299)
|
80548
|
+
Processing by Sitepress::SiteController#show as HTML
|
80549
|
+
Parameters: {"resource_path"=>"/time"}
|
80550
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80551
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80552
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80553
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 274)
|
80554
|
+
Completed 200 OK in 5ms (Views: 1.2ms | Allocations: 2299)
|
80555
|
+
Processing by Sitepress::SiteController#show as HTML
|
80556
|
+
Parameters: {"resource_path"=>"/time"}
|
80557
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80558
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80559
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80560
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80561
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2299)
|
80562
|
+
Processing by Sitepress::SiteController#show as HTML
|
80563
|
+
Parameters: {"resource_path"=>"/time"}
|
80564
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80565
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80566
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80567
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 2.9ms | Allocations: 274)
|
80568
|
+
Completed 200 OK in 9ms (Views: 6.4ms | Allocations: 2299)
|
80569
|
+
Processing by Sitepress::SiteController#show as HTML
|
80570
|
+
Parameters: {"resource_path"=>"/time"}
|
80571
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80572
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80573
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 51)
|
80574
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80575
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 50)
|
80576
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 401)
|
80577
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80578
|
+
Completed 500 Internal Server Error in 29ms (Views: 1.4ms | Allocations: 9956)
|
80579
|
+
Processing by Sitepress::SiteController#show as HTML
|
80580
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80581
|
+
Completed 404 Not Found in 2ms (Allocations: 1790)
|
80582
|
+
Processing by Sitepress::SiteController#show as HTML
|
80583
|
+
Parameters: {"resource_path"=>"/time"}
|
80584
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80585
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80586
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 52)
|
80587
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80588
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 51)
|
80589
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 5.5ms | Allocations: 2051)
|
80590
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80591
|
+
Completed 200 OK in 15ms (Views: 8.7ms | Allocations: 6413)
|
80592
|
+
Processing by Sitepress::SiteController#show as HTML
|
80593
|
+
Parameters: {"resource_path"=>"/time"}
|
80594
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80595
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80596
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 51)
|
80597
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80598
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 50)
|
80599
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.0ms | Allocations: 473)
|
80600
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80601
|
+
Completed 200 OK in 5ms (Views: 1.9ms | Allocations: 2721)
|
80602
|
+
Processing by Sitepress::SiteController#show as HTML
|
80603
|
+
Parameters: {"resource_path"=>"/time"}
|
80604
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80605
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.3ms | Allocations: 76)
|
80606
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.3ms | Allocations: 74)
|
80607
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.2ms | Allocations: 449)
|
80608
|
+
Completed 200 OK in 4ms (Views: 1.9ms | Allocations: 2626)
|
80609
|
+
Processing by Sitepress::SiteController#show as HTML
|
80610
|
+
Parameters: {"resource_path"=>"/time"}
|
80611
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80612
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80613
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80614
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
80615
|
+
Completed 200 OK in 4ms (Views: 1.2ms | Allocations: 2371)
|
80616
|
+
Processing by Sitepress::SiteController#show as HTML
|
80617
|
+
Parameters: {"resource_path"=>"/time"}
|
80618
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80619
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80620
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80621
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.9ms | Allocations: 310)
|
80622
|
+
Completed 200 OK in 3ms (Views: 1.3ms | Allocations: 2371)
|
80623
|
+
Processing by Sitepress::SiteController#show as HTML
|
80624
|
+
Parameters: {"resource_path"=>"/time"}
|
80625
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80626
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80627
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80628
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
80629
|
+
Completed 200 OK in 4ms (Views: 1.0ms | Allocations: 2371)
|
80630
|
+
Processing by Sitepress::SiteController#show as HTML
|
80631
|
+
Parameters: {"resource_path"=>"/time"}
|
80632
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80633
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80634
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80635
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 310)
|
80636
|
+
Completed 200 OK in 3ms (Views: 1.2ms | Allocations: 2371)
|
80637
|
+
Processing by Sitepress::SiteController#show as HTML
|
80638
|
+
Parameters: {"resource_path"=>"/time"}
|
80639
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80640
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80641
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80642
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.0ms | Allocations: 310)
|
80643
|
+
Completed 200 OK in 3ms (Views: 1.5ms | Allocations: 2371)
|
80644
|
+
Processing by Sitepress::SiteController#show as HTML
|
80645
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80646
|
+
Completed 404 Not Found in 2ms (Allocations: 1793)
|
80647
|
+
Processing by Sitepress::SiteController#show as HTML
|
80648
|
+
Parameters: {"resource_path"=>"/hi"}
|
80649
|
+
Rendering inline template within layouts/application
|
80650
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 66)
|
80651
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2180)
|
80652
|
+
Processing by Sitepress::SiteController#show as HTML
|
80653
|
+
Parameters: {"resource_path"=>"/hi"}
|
80654
|
+
Rendering inline template within layouts/application
|
80655
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80656
|
+
Completed 200 OK in 3ms (Views: 0.9ms | Allocations: 2067)
|
80657
|
+
Processing by Sitepress::SiteController#show as HTML
|
80658
|
+
Parameters: {"resource_path"=>"/hi"}
|
80659
|
+
Rendering inline template within layouts/application
|
80660
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80661
|
+
Completed 200 OK in 3ms (Views: 0.6ms | Allocations: 2067)
|
80662
|
+
Processing by Sitepress::SiteController#show as HTML
|
80663
|
+
Parameters: {"resource_path"=>"/hi"}
|
80664
|
+
Rendering inline template within layouts/application
|
80665
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80666
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2067)
|
80667
|
+
Processing by Sitepress::SiteController#show as HTML
|
80668
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80669
|
+
Completed 404 Not Found in 4ms (Allocations: 1836)
|
80670
|
+
Processing by Sitepress::SiteController#show as HTML
|
80671
|
+
Parameters: {"resource_path"=>"/time"}
|
80672
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80673
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80674
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 52)
|
80675
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80676
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.2ms | Allocations: 51)
|
80677
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 5.1ms | Allocations: 2051)
|
80678
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80679
|
+
Completed 200 OK in 15ms (Views: 8.5ms | Allocations: 6364)
|
80680
|
+
Processing by Sitepress::SiteController#show as HTML
|
80681
|
+
Parameters: {"resource_path"=>"/time"}
|
80682
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80683
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80684
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 51)
|
80685
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80686
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 50)
|
80687
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 2.0ms | Allocations: 473)
|
80688
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80689
|
+
Completed 500 Internal Server Error in 26ms (Views: 2.9ms | Allocations: 10061)
|
80690
|
+
Processing by Sitepress::SiteController#show as HTML
|
80691
|
+
Parameters: {"resource_path"=>"/time"}
|
80692
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80693
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 76)
|
80694
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.2ms | Allocations: 74)
|
80695
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.2ms | Allocations: 452)
|
80696
|
+
Completed 200 OK in 4ms (Views: 1.8ms | Allocations: 2636)
|
80697
|
+
Processing by Sitepress::SiteController#show as HTML
|
80698
|
+
Parameters: {"resource_path"=>"/time"}
|
80699
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80700
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80701
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80702
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
80703
|
+
Completed 200 OK in 4ms (Views: 1.1ms | Allocations: 2371)
|
80704
|
+
Processing by Sitepress::SiteController#show as HTML
|
80705
|
+
Parameters: {"resource_path"=>"/time"}
|
80706
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80707
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80708
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80709
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
80710
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2371)
|
80711
|
+
Processing by Sitepress::SiteController#show as HTML
|
80712
|
+
Parameters: {"resource_path"=>"/time"}
|
80713
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80714
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80715
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80716
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
80717
|
+
Completed 200 OK in 6ms (Views: 3.0ms | Allocations: 2371)
|
80718
|
+
Processing by Sitepress::SiteController#show as HTML
|
80719
|
+
Parameters: {"resource_path"=>"/time"}
|
80720
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80721
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80722
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80723
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 310)
|
80724
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2371)
|
80725
|
+
Processing by Sitepress::SiteController#show as HTML
|
80726
|
+
Parameters: {"resource_path"=>"/time"}
|
80727
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80728
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80729
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80730
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.5ms | Allocations: 310)
|
80731
|
+
Completed 200 OK in 5ms (Views: 2.4ms | Allocations: 2371)
|
80732
|
+
Processing by Sitepress::SiteController#show as HTML
|
80733
|
+
Parameters: {"resource_path"=>"/hi"}
|
80734
|
+
Rendering inline template within layouts/application
|
80735
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 66)
|
80736
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 2180)
|
80737
|
+
Processing by Sitepress::SiteController#show as HTML
|
80738
|
+
Parameters: {"resource_path"=>"/hi"}
|
80739
|
+
Rendering inline template within layouts/application
|
80740
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80741
|
+
Completed 200 OK in 3ms (Views: 0.7ms | Allocations: 2067)
|
80742
|
+
Processing by Sitepress::SiteController#show as HTML
|
80743
|
+
Parameters: {"resource_path"=>"/hi"}
|
80744
|
+
Rendering inline template within layouts/application
|
80745
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80746
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2067)
|
80747
|
+
Processing by Sitepress::SiteController#show as HTML
|
80748
|
+
Parameters: {"resource_path"=>"/hi"}
|
80749
|
+
Rendering inline template within layouts/application
|
80750
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80751
|
+
Completed 200 OK in 3ms (Views: 0.6ms | Allocations: 2067)
|
80752
|
+
Processing by Sitepress::SiteController#show as HTML
|
80753
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
80754
|
+
Completed 404 Not Found in 138ms (Allocations: 121622)
|
80755
|
+
Processing by Sitepress::SiteController#show as HTML
|
80756
|
+
Parameters: {"resource_path"=>"/time"}
|
80757
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80758
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80759
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 52)
|
80760
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80761
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 51)
|
80762
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 2.4ms | Allocations: 1040)
|
80763
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80764
|
+
Completed 200 OK in 18ms (Views: 13.6ms | Allocations: 4984)
|
80765
|
+
Processing by Sitepress::SiteController#show as HTML
|
80766
|
+
Parameters: {"resource_path"=>"/time"}
|
80767
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80768
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80769
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 51)
|
80770
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80771
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 50)
|
80772
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 401)
|
80773
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
80774
|
+
Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 2578)
|
80775
|
+
Processing by Sitepress::SiteController#show as HTML
|
80776
|
+
Parameters: {"resource_path"=>"/hi"}
|
80777
|
+
Rendering inline template within layouts/application
|
80778
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 66)
|
80779
|
+
Completed 200 OK in 3ms (Views: 1.2ms | Allocations: 2168)
|
80780
|
+
Processing by Sitepress::SiteController#show as HTML
|
80781
|
+
Parameters: {"resource_path"=>"/hi"}
|
80782
|
+
Rendering inline template within layouts/application
|
80783
|
+
Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 65)
|
80784
|
+
Completed 200 OK in 2ms (Views: 0.5ms | Allocations: 2049)
|
80785
|
+
Processing by Sitepress::SiteController#show as HTML
|
80786
|
+
Parameters: {"resource_path"=>"/hi"}
|
80787
|
+
Rendering inline template within layouts/application
|
80788
|
+
Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 65)
|
80789
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2049)
|
80790
|
+
Processing by Sitepress::SiteController#show as HTML
|
80791
|
+
Parameters: {"resource_path"=>"/hi"}
|
80792
|
+
Rendering inline template within layouts/application
|
80793
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
80794
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 2049)
|
80795
|
+
Processing by Sitepress::SiteController#show as HTML
|
80796
|
+
Parameters: {"resource_path"=>"/time"}
|
80797
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80798
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 75)
|
80799
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.2ms | Allocations: 74)
|
80800
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.0ms | Allocations: 412)
|
80801
|
+
Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 2548)
|
80802
|
+
Processing by Sitepress::SiteController#show as HTML
|
80803
|
+
Parameters: {"resource_path"=>"/time"}
|
80804
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80805
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80806
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80807
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80808
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80809
|
+
Processing by Sitepress::SiteController#show as HTML
|
80810
|
+
Parameters: {"resource_path"=>"/time"}
|
80811
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80812
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80813
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80814
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80815
|
+
Completed 200 OK in 4ms (Views: 1.0ms | Allocations: 2299)
|
80816
|
+
Processing by Sitepress::SiteController#show as HTML
|
80817
|
+
Parameters: {"resource_path"=>"/time"}
|
80818
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80819
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80820
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80821
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.2ms | Allocations: 274)
|
80822
|
+
Completed 200 OK in 4ms (Views: 1.6ms | Allocations: 2299)
|
80823
|
+
Processing by Sitepress::SiteController#show as HTML
|
80824
|
+
Parameters: {"resource_path"=>"/time"}
|
80825
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80826
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
80827
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80828
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 274)
|
80829
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 2299)
|
80830
|
+
Processing by Sitepress::SiteController#show as HTML
|
80831
|
+
Parameters: {"resource_path"=>"/time"}
|
80832
|
+
Rendering inline template within layouts/sitepress_test_layout
|
80833
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 6)
|
80834
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
80835
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.1ms | Allocations: 274)
|
80836
|
+
Completed 200 OK in 4ms (Views: 1.6ms | Allocations: 2299)
|