simple_pages 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +14 -14
- data/Rakefile +6 -0
- data/lib/simple_pages.rb +7 -3
- data/lib/simple_pages/version.rb +1 -1
- data/spec/controllers/simple_pages_controller_spec.rb +6 -0
- data/spec/dummy/config/routes.rb +3 -1
- data/spec/dummy/log/test.log +186 -1626
- metadata +3 -3
data/README.md
CHANGED
@@ -1,25 +1,27 @@
|
|
1
1
|
# Simple Pages
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
This gem aims to make it easy to have "static" pages in a Rails
|
4
|
+
application.
|
5
5
|
|
6
6
|
## Example
|
7
7
|
|
8
8
|
Include the SimplePages into a PagesController:
|
9
9
|
|
10
|
-
class PagesController
|
10
|
+
class PagesController < ApplicationController
|
11
11
|
include SimplePages
|
12
12
|
end
|
13
13
|
|
14
|
-
Then add into your routes
|
14
|
+
Then add the PagesController route into your routes:
|
15
15
|
|
16
|
-
|
16
|
+
Dummy::Application.routes.draw do
|
17
17
|
...
|
18
|
-
|
18
|
+
resources :pages
|
19
19
|
...
|
20
20
|
end
|
21
21
|
|
22
|
-
Now create the folder
|
22
|
+
Now create the pages folder into your views folder and put there the
|
23
|
+
templates you want to render. **Remember to add a show.html.erb as the
|
24
|
+
default template**:
|
23
25
|
|
24
26
|
+ app
|
25
27
|
|- views
|
@@ -27,7 +29,7 @@ Now create the folder pages into your views folder and put there the templates y
|
|
27
29
|
|- show.html.erb
|
28
30
|
|- about_us.html.erb
|
29
31
|
|
30
|
-
So you can access the views
|
32
|
+
So you can access the views as:
|
31
33
|
|
32
34
|
http://localhost:3000/pages/about-us
|
33
35
|
|
@@ -39,16 +41,14 @@ Let's say you want to put the PagesController as a default route and get this be
|
|
39
41
|
|
40
42
|
You can get it changing the routes to:
|
41
43
|
|
42
|
-
|
44
|
+
Dummy::Application.routes.draw do
|
43
45
|
...
|
44
|
-
|
46
|
+
match '*id' => 'pages#show'
|
45
47
|
end
|
46
48
|
|
47
|
-
##
|
48
|
-
|
49
|
-
fnando's has_permalink plugin where I got the [permalink method](http://github.com/fnando/has_permalink/blob/master/lib/permalink/string_ext.rb).
|
49
|
+
## License
|
50
50
|
|
51
|
-
Copyright (c)
|
51
|
+
Copyright (c) 2013 [Bruno Azisaka Maciel], released under the MIT license
|
52
52
|
|
53
53
|
Permission is hereby granted, free of charge, to any person obtaining
|
54
54
|
a copy of this software and associated documentation files (the
|
data/Rakefile
CHANGED
data/lib/simple_pages.rb
CHANGED
@@ -5,7 +5,11 @@ module SimplePages
|
|
5
5
|
|
6
6
|
module InstanceMethods
|
7
7
|
def show
|
8
|
-
respond_to?(page_action)
|
8
|
+
if page_action.present? && respond_to?(page_action)
|
9
|
+
executes_page_action
|
10
|
+
else
|
11
|
+
render_page_template
|
12
|
+
end
|
9
13
|
end
|
10
14
|
|
11
15
|
protected
|
@@ -14,7 +18,7 @@ module SimplePages
|
|
14
18
|
end
|
15
19
|
|
16
20
|
def executes_page_action
|
17
|
-
send page_action
|
21
|
+
send page_action if page_action != "show"
|
18
22
|
render page_template_path
|
19
23
|
rescue ActionView::MissingTemplate
|
20
24
|
render 'show'
|
@@ -36,7 +40,7 @@ module SimplePages
|
|
36
40
|
end
|
37
41
|
|
38
42
|
def page_permalink(string)
|
39
|
-
URI.unescape(string).parameterize.underscore
|
43
|
+
URI.unescape(string || "show").parameterize.underscore
|
40
44
|
end
|
41
45
|
end
|
42
46
|
end
|
data/lib/simple_pages/version.rb
CHANGED
@@ -34,4 +34,10 @@ describe SimplePagesController do
|
|
34
34
|
it { response.should be_success }
|
35
35
|
it { response.body.should =~ /\-1/ }
|
36
36
|
end
|
37
|
+
|
38
|
+
context "when the id is nil" do
|
39
|
+
before { get :show, id: nil }
|
40
|
+
it { response.should be_success }
|
41
|
+
it { should render_template 'show' }
|
42
|
+
end
|
37
43
|
end
|
data/spec/dummy/config/routes.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -1,1594 +1,116 @@
|
|
1
|
-
Processing by SimplePagesController#show as HTML
|
2
|
-
Parameters: {"id"=>"nothing"}
|
3
|
-
Completed 200 OK in 10ms (Views: 9.9ms)
|
4
|
-
Processing by SimplePagesController#show as HTML
|
5
|
-
Parameters: {"id"=>"nothing"}
|
6
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
7
|
-
Processing by SimplePagesController#show as HTML
|
8
|
-
Parameters: {"id"=>"testing"}
|
9
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
10
|
-
Processing by SimplePagesController#show as HTML
|
11
|
-
Parameters: {"id"=>"testing"}
|
12
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
13
|
-
Processing by SimplePagesController#show as HTML
|
14
|
-
Parameters: {"id"=>"plus"}
|
15
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
16
|
-
Processing by SimplePagesController#show as HTML
|
17
|
-
Parameters: {"id"=>"plus"}
|
18
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
19
|
-
Processing by SimplePagesController#show as HTML
|
20
|
-
Parameters: {"id"=>"plus"}
|
21
|
-
Completed 200 OK in 0ms (Views: 0.4ms)
|
22
|
-
Processing by SimplePagesController#show as HTML
|
23
|
-
Parameters: {"id"=>"minus"}
|
24
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
25
|
-
Processing by SimplePagesController#show as HTML
|
26
|
-
Parameters: {"id"=>"minus"}
|
27
|
-
Completed 200 OK in 0ms (Views: 0.4ms)
|
28
|
-
Processing by SimplePagesController#show as HTML
|
29
|
-
Parameters: {"id"=>"minus"}
|
30
|
-
Completed 200 OK in 0ms (Views: 0.4ms)
|
31
|
-
Processing by SimplePagesController#show as HTML
|
32
|
-
Parameters: {"id"=>"testing-testing"}
|
33
|
-
Completed 200 OK in 0ms (Views: 0.4ms)
|
34
|
-
Processing by SimplePagesController#show as HTML
|
35
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
36
|
-
Completed 200 OK in 0ms (Views: 0.4ms)
|
37
|
-
Processing by SimplePagesController#show as HTML
|
38
|
-
Parameters: {"id"=>"testing-testing"}
|
39
|
-
Completed 200 OK in 0ms (Views: 0.4ms)
|
40
|
-
Processing by SimplePagesController#show as HTML
|
41
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
42
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
43
|
-
Processing by SimplePagesController#show as HTML
|
44
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
45
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
46
|
-
Processing by SimplePagesController#show as HTML
|
47
|
-
Parameters: {"id"=>"nothing"}
|
48
|
-
Completed 200 OK in 9ms (Views: 8.5ms)
|
49
|
-
Processing by SimplePagesController#show as HTML
|
50
|
-
Parameters: {"id"=>"nothing"}
|
51
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
52
|
-
Processing by SimplePagesController#show as HTML
|
53
|
-
Parameters: {"id"=>"testing"}
|
54
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
55
|
-
Processing by SimplePagesController#show as HTML
|
56
|
-
Parameters: {"id"=>"testing"}
|
57
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
58
|
-
Processing by SimplePagesController#show as HTML
|
59
|
-
Parameters: {"id"=>"plus"}
|
60
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
61
|
-
Processing by SimplePagesController#show as HTML
|
62
|
-
Parameters: {"id"=>"plus"}
|
63
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
64
|
-
Processing by SimplePagesController#show as HTML
|
65
|
-
Parameters: {"id"=>"plus"}
|
66
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
67
|
-
Processing by SimplePagesController#show as HTML
|
68
|
-
Parameters: {"id"=>"minus"}
|
69
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
70
|
-
Processing by SimplePagesController#show as HTML
|
71
|
-
Parameters: {"id"=>"minus"}
|
72
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
73
|
-
Processing by SimplePagesController#show as HTML
|
74
|
-
Parameters: {"id"=>"minus"}
|
75
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
76
|
-
Processing by SimplePagesController#show as HTML
|
77
|
-
Parameters: {"id"=>"testing-testing"}
|
78
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
79
|
-
Processing by SimplePagesController#show as HTML
|
80
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
81
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
82
|
-
Processing by SimplePagesController#show as HTML
|
83
|
-
Parameters: {"id"=>"testing-testing"}
|
84
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
85
|
-
Processing by SimplePagesController#show as HTML
|
86
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
87
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
88
|
-
Processing by SimplePagesController#show as HTML
|
89
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
90
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
91
|
-
Processing by SimplePagesController#show as HTML
|
92
|
-
Parameters: {"id"=>"nothing"}
|
93
|
-
Completed 200 OK in 9ms (Views: 8.5ms)
|
94
|
-
Processing by SimplePagesController#show as HTML
|
95
|
-
Parameters: {"id"=>"nothing"}
|
96
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
97
|
-
Processing by SimplePagesController#show as HTML
|
98
|
-
Parameters: {"id"=>"testing"}
|
99
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
100
|
-
Processing by SimplePagesController#show as HTML
|
101
|
-
Parameters: {"id"=>"testing"}
|
102
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
103
|
-
Processing by SimplePagesController#show as HTML
|
104
|
-
Parameters: {"id"=>"plus"}
|
105
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
106
|
-
Processing by SimplePagesController#show as HTML
|
107
|
-
Parameters: {"id"=>"plus"}
|
108
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
109
|
-
Processing by SimplePagesController#show as HTML
|
110
|
-
Parameters: {"id"=>"plus"}
|
111
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
112
|
-
Processing by SimplePagesController#show as HTML
|
113
|
-
Parameters: {"id"=>"minus"}
|
114
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
115
|
-
Processing by SimplePagesController#show as HTML
|
116
|
-
Parameters: {"id"=>"minus"}
|
117
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
118
|
-
Processing by SimplePagesController#show as HTML
|
119
|
-
Parameters: {"id"=>"minus"}
|
120
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
121
|
-
Processing by SimplePagesController#show as HTML
|
122
|
-
Parameters: {"id"=>"testing-testing"}
|
123
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
124
|
-
Processing by SimplePagesController#show as HTML
|
125
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
126
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
127
|
-
Processing by SimplePagesController#show as HTML
|
128
|
-
Parameters: {"id"=>"testing-testing"}
|
129
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
130
|
-
Processing by SimplePagesController#show as HTML
|
131
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
132
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
133
|
-
Processing by SimplePagesController#show as HTML
|
134
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
135
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
136
|
-
Processing by I18nSimplePagesController#show as HTML
|
137
|
-
Parameters: {"id"=>"contact"}
|
138
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (0.2ms)
|
139
|
-
Completed 200 OK in 80ms (Views: 8.4ms)
|
140
|
-
Processing by I18nSimplePagesController#show as HTML
|
141
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
142
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
143
|
-
Processing by I18nSimplePagesController#show as HTML
|
144
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
145
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
146
|
-
Processing by I18nSimplePagesController#show as HTML
|
147
|
-
Parameters: {"id"=>"contato"}
|
148
|
-
Completed 404 Not Found in 6ms (Views: 1.1ms)
|
149
|
-
Processing by I18nSimplePagesController#show as HTML
|
150
|
-
Parameters: {"id"=>"contato"}
|
151
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
152
|
-
Processing by I18nSimplePagesController#show as HTML
|
153
|
-
Parameters: {"id"=>"contato"}
|
154
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
155
|
-
Processing by SimplePagesController#show as HTML
|
156
|
-
Parameters: {"id"=>"nothing"}
|
157
|
-
Completed 404 Not Found in 3ms (Views: 1.1ms)
|
158
|
-
Processing by SimplePagesController#show as HTML
|
159
|
-
Parameters: {"id"=>"nothing"}
|
160
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
161
|
-
Processing by SimplePagesController#show as HTML
|
162
|
-
Parameters: {"id"=>"testing"}
|
163
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
164
|
-
Processing by SimplePagesController#show as HTML
|
165
|
-
Parameters: {"id"=>"testing"}
|
166
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
167
|
-
Processing by SimplePagesController#show as HTML
|
168
|
-
Parameters: {"id"=>"plus"}
|
169
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
170
|
-
Processing by SimplePagesController#show as HTML
|
171
|
-
Parameters: {"id"=>"plus"}
|
172
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
173
|
-
Processing by SimplePagesController#show as HTML
|
174
|
-
Parameters: {"id"=>"plus"}
|
175
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
176
|
-
Processing by SimplePagesController#show as HTML
|
177
|
-
Parameters: {"id"=>"minus"}
|
178
|
-
Completed 200 OK in 2ms (Views: 1.0ms)
|
179
|
-
Processing by SimplePagesController#show as HTML
|
180
|
-
Parameters: {"id"=>"minus"}
|
181
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
182
|
-
Processing by SimplePagesController#show as HTML
|
183
|
-
Parameters: {"id"=>"minus"}
|
184
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
185
|
-
Processing by SimplePagesController#show as HTML
|
186
|
-
Parameters: {"id"=>"testing-testing"}
|
187
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
188
|
-
Processing by SimplePagesController#show as HTML
|
189
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
190
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
191
|
-
Processing by SimplePagesController#show as HTML
|
192
|
-
Parameters: {"id"=>"testing-testing"}
|
193
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
194
|
-
Processing by SimplePagesController#show as HTML
|
195
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
196
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
197
|
-
Processing by SimplePagesController#show as HTML
|
198
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
199
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
200
|
-
Processing by I18nSimplePagesController#show as HTML
|
201
|
-
Parameters: {"id"=>"contact"}
|
202
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (0.2ms)
|
203
|
-
Completed 200 OK in 81ms (Views: 8.8ms)
|
204
|
-
Processing by I18nSimplePagesController#show as HTML
|
205
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
206
|
-
Completed 200 OK in 2ms (Views: 1.8ms)
|
207
|
-
Processing by I18nSimplePagesController#show as HTML
|
208
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
209
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
210
|
-
Processing by I18nSimplePagesController#show as HTML
|
211
|
-
Parameters: {"id"=>"contato"}
|
212
|
-
Completed 404 Not Found in 6ms (Views: 1.1ms)
|
213
|
-
Processing by I18nSimplePagesController#show as HTML
|
214
|
-
Parameters: {"id"=>"contato"}
|
215
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
216
|
-
Processing by I18nSimplePagesController#show as HTML
|
217
|
-
Parameters: {"id"=>"contato"}
|
218
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
219
|
-
Processing by SimplePagesController#show as HTML
|
220
|
-
Parameters: {"id"=>"nothing"}
|
221
|
-
Completed 404 Not Found in 3ms (Views: 1.1ms)
|
222
|
-
Processing by SimplePagesController#show as HTML
|
223
|
-
Parameters: {"id"=>"nothing"}
|
224
|
-
Completed 404 Not Found in 1ms (Views: 0.7ms)
|
225
|
-
Processing by SimplePagesController#show as HTML
|
226
|
-
Parameters: {"id"=>"testing"}
|
227
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
228
|
-
Processing by SimplePagesController#show as HTML
|
229
|
-
Parameters: {"id"=>"testing"}
|
230
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
231
|
-
Processing by SimplePagesController#show as HTML
|
232
|
-
Parameters: {"id"=>"plus"}
|
233
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
234
|
-
Processing by SimplePagesController#show as HTML
|
235
|
-
Parameters: {"id"=>"plus"}
|
236
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
237
|
-
Processing by SimplePagesController#show as HTML
|
238
|
-
Parameters: {"id"=>"plus"}
|
239
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
240
|
-
Processing by SimplePagesController#show as HTML
|
241
|
-
Parameters: {"id"=>"minus"}
|
242
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
243
|
-
Processing by SimplePagesController#show as HTML
|
244
|
-
Parameters: {"id"=>"minus"}
|
245
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
246
|
-
Processing by SimplePagesController#show as HTML
|
247
|
-
Parameters: {"id"=>"minus"}
|
248
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
249
|
-
Processing by SimplePagesController#show as HTML
|
250
|
-
Parameters: {"id"=>"testing-testing"}
|
251
|
-
Completed 404 Not Found in 3ms (Views: 1.0ms)
|
252
|
-
Processing by SimplePagesController#show as HTML
|
253
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
254
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
255
|
-
Processing by SimplePagesController#show as HTML
|
256
|
-
Parameters: {"id"=>"testing-testing"}
|
257
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
258
|
-
Processing by SimplePagesController#show as HTML
|
259
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
260
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
261
|
-
Processing by SimplePagesController#show as HTML
|
262
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
263
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
264
|
-
Processing by I18nSimplePagesController#show as HTML
|
265
|
-
Parameters: {"id"=>"contact"}
|
266
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (0.2ms)
|
267
|
-
Completed 200 OK in 77ms (Views: 8.3ms)
|
268
|
-
Processing by I18nSimplePagesController#show as HTML
|
269
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
270
|
-
Completed 200 OK in 2ms (Views: 1.5ms)
|
271
|
-
Processing by I18nSimplePagesController#show as HTML
|
272
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
273
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
274
|
-
Processing by I18nSimplePagesController#show as HTML
|
275
|
-
Parameters: {"id"=>"contato"}
|
276
|
-
Completed 404 Not Found in 6ms (Views: 1.1ms)
|
277
|
-
Processing by I18nSimplePagesController#show as HTML
|
278
|
-
Parameters: {"id"=>"contato"}
|
279
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
280
|
-
Processing by I18nSimplePagesController#show as HTML
|
281
|
-
Parameters: {"id"=>"contato"}
|
282
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
283
|
-
Processing by SimplePagesController#show as HTML
|
284
|
-
Parameters: {"id"=>"nothing"}
|
285
|
-
Completed 404 Not Found in 2ms (Views: 1.0ms)
|
286
|
-
Processing by SimplePagesController#show as HTML
|
287
|
-
Parameters: {"id"=>"nothing"}
|
288
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
289
|
-
Processing by SimplePagesController#show as HTML
|
290
|
-
Parameters: {"id"=>"testing"}
|
291
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
292
|
-
Processing by SimplePagesController#show as HTML
|
293
|
-
Parameters: {"id"=>"testing"}
|
294
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
295
|
-
Processing by SimplePagesController#show as HTML
|
296
|
-
Parameters: {"id"=>"plus"}
|
297
|
-
Completed 200 OK in 1ms (Views: 1.2ms)
|
298
|
-
Processing by SimplePagesController#show as HTML
|
299
|
-
Parameters: {"id"=>"plus"}
|
300
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
301
|
-
Processing by SimplePagesController#show as HTML
|
302
|
-
Parameters: {"id"=>"plus"}
|
303
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
304
|
-
Processing by SimplePagesController#show as HTML
|
305
|
-
Parameters: {"id"=>"minus"}
|
306
|
-
Completed 200 OK in 2ms (Views: 0.9ms)
|
307
|
-
Processing by SimplePagesController#show as HTML
|
308
|
-
Parameters: {"id"=>"minus"}
|
309
|
-
Completed 200 OK in 2ms (Views: 0.8ms)
|
310
|
-
Processing by SimplePagesController#show as HTML
|
311
|
-
Parameters: {"id"=>"minus"}
|
312
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
313
|
-
Processing by SimplePagesController#show as HTML
|
314
|
-
Parameters: {"id"=>"testing-testing"}
|
315
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
316
|
-
Processing by SimplePagesController#show as HTML
|
317
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
318
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
319
|
-
Processing by SimplePagesController#show as HTML
|
320
|
-
Parameters: {"id"=>"testing-testing"}
|
321
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
322
|
-
Processing by SimplePagesController#show as HTML
|
323
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
324
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
325
|
-
Processing by SimplePagesController#show as HTML
|
326
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
327
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
328
|
-
Processing by I18nSimplePagesController#show as HTML
|
329
|
-
Parameters: {"id"=>"contact"}
|
330
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.4ms)
|
331
|
-
Completed 200 OK in 83ms (Views: 11.5ms)
|
332
|
-
Processing by I18nSimplePagesController#show as HTML
|
333
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
334
|
-
Completed 200 OK in 3ms (Views: 2.3ms)
|
335
|
-
Processing by I18nSimplePagesController#show as HTML
|
336
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
337
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
338
|
-
Processing by I18nSimplePagesController#show as HTML
|
339
|
-
Parameters: {"id"=>"contato"}
|
340
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
341
|
-
Processing by I18nSimplePagesController#show as HTML
|
342
|
-
Parameters: {"id"=>"contato"}
|
343
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
344
|
-
Processing by I18nSimplePagesController#show as HTML
|
345
|
-
Parameters: {"id"=>"contato"}
|
346
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
347
|
-
Processing by SimplePagesController#show as HTML
|
348
|
-
Parameters: {"id"=>"nothing"}
|
349
|
-
Completed 404 Not Found in 3ms (Views: 1.6ms)
|
350
|
-
Processing by SimplePagesController#show as HTML
|
351
|
-
Parameters: {"id"=>"nothing"}
|
352
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
353
|
-
Processing by SimplePagesController#show as HTML
|
354
|
-
Parameters: {"id"=>"testing"}
|
355
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
356
|
-
Processing by SimplePagesController#show as HTML
|
357
|
-
Parameters: {"id"=>"testing"}
|
358
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
359
|
-
Processing by SimplePagesController#show as HTML
|
360
|
-
Parameters: {"id"=>"plus"}
|
361
|
-
Completed 200 OK in 2ms (Views: 1.8ms)
|
362
|
-
Processing by SimplePagesController#show as HTML
|
363
|
-
Parameters: {"id"=>"plus"}
|
364
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
365
|
-
Processing by SimplePagesController#show as HTML
|
366
|
-
Parameters: {"id"=>"plus"}
|
367
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
368
|
-
Processing by SimplePagesController#show as HTML
|
369
|
-
Parameters: {"id"=>"minus"}
|
370
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
371
|
-
Processing by SimplePagesController#show as HTML
|
372
|
-
Parameters: {"id"=>"minus"}
|
373
|
-
Completed 200 OK in 2ms (Views: 1.0ms)
|
374
|
-
Processing by SimplePagesController#show as HTML
|
375
|
-
Parameters: {"id"=>"minus"}
|
376
|
-
Completed 200 OK in 2ms (Views: 0.9ms)
|
377
|
-
Processing by SimplePagesController#show as HTML
|
378
|
-
Parameters: {"id"=>"testing-testing"}
|
379
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
380
|
-
Processing by SimplePagesController#show as HTML
|
381
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
382
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
383
|
-
Processing by SimplePagesController#show as HTML
|
384
|
-
Parameters: {"id"=>"testing-testing"}
|
385
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
386
|
-
Processing by SimplePagesController#show as HTML
|
387
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
388
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
389
|
-
Processing by SimplePagesController#show as HTML
|
390
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
391
|
-
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
392
|
-
Processing by I18nSimplePagesController#show as HTML
|
393
|
-
Parameters: {"id"=>"contact"}
|
394
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.0ms)
|
395
|
-
Completed 200 OK in 79ms (Views: 11.1ms)
|
396
|
-
Processing by I18nSimplePagesController#show as HTML
|
397
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
398
|
-
Completed 200 OK in 3ms (Views: 2.5ms)
|
399
|
-
Processing by I18nSimplePagesController#show as HTML
|
400
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
401
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
402
|
-
Processing by I18nSimplePagesController#show as HTML
|
403
|
-
Parameters: {"id"=>"contato"}
|
404
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
405
|
-
Processing by I18nSimplePagesController#show as HTML
|
406
|
-
Parameters: {"id"=>"contato"}
|
407
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
408
|
-
Processing by I18nSimplePagesController#show as HTML
|
409
|
-
Parameters: {"id"=>"contato"}
|
410
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
411
|
-
Processing by SimplePagesController#show as HTML
|
412
|
-
Parameters: {"id"=>"nothing"}
|
413
|
-
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
414
|
-
Processing by SimplePagesController#show as HTML
|
415
|
-
Parameters: {"id"=>"nothing"}
|
416
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
417
|
-
Processing by SimplePagesController#show as HTML
|
418
|
-
Parameters: {"id"=>"testing"}
|
419
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
420
|
-
Processing by SimplePagesController#show as HTML
|
421
|
-
Parameters: {"id"=>"testing"}
|
422
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
423
|
-
Processing by SimplePagesController#show as HTML
|
424
|
-
Parameters: {"id"=>"plus"}
|
425
|
-
Completed 200 OK in 2ms (Views: 1.8ms)
|
426
|
-
Processing by SimplePagesController#show as HTML
|
427
|
-
Parameters: {"id"=>"plus"}
|
428
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
429
|
-
Processing by SimplePagesController#show as HTML
|
430
|
-
Parameters: {"id"=>"plus"}
|
431
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
432
|
-
Processing by SimplePagesController#show as HTML
|
433
|
-
Parameters: {"id"=>"minus"}
|
434
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
435
|
-
Processing by SimplePagesController#show as HTML
|
436
|
-
Parameters: {"id"=>"minus"}
|
437
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
438
|
-
Processing by SimplePagesController#show as HTML
|
439
|
-
Parameters: {"id"=>"minus"}
|
440
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
441
|
-
Processing by SimplePagesController#show as HTML
|
442
|
-
Parameters: {"id"=>"testing-testing"}
|
443
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
444
|
-
Processing by SimplePagesController#show as HTML
|
445
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
446
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
447
|
-
Processing by SimplePagesController#show as HTML
|
448
|
-
Parameters: {"id"=>"testing-testing"}
|
449
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
450
|
-
Processing by SimplePagesController#show as HTML
|
451
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
452
|
-
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
453
|
-
Processing by SimplePagesController#show as HTML
|
454
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
455
|
-
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
456
|
-
Processing by I18nSimplePagesController#show as HTML
|
457
|
-
Parameters: {"id"=>"contact"}
|
458
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
459
|
-
Completed 200 OK in 83ms (Views: 10.4ms)
|
460
|
-
Processing by I18nSimplePagesController#show as HTML
|
461
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
462
|
-
Completed 200 OK in 3ms (Views: 2.3ms)
|
463
|
-
Processing by I18nSimplePagesController#show as HTML
|
464
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
465
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
466
|
-
Processing by I18nSimplePagesController#show as HTML
|
467
|
-
Parameters: {"id"=>"contato"}
|
468
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
469
|
-
Processing by I18nSimplePagesController#show as HTML
|
470
|
-
Parameters: {"id"=>"contato"}
|
471
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
472
|
-
Processing by I18nSimplePagesController#show as HTML
|
473
|
-
Parameters: {"id"=>"contato"}
|
474
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
475
|
-
Processing by SimplePagesController#show as HTML
|
476
|
-
Parameters: {"id"=>"nothing"}
|
477
|
-
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
478
|
-
Processing by SimplePagesController#show as HTML
|
479
|
-
Parameters: {"id"=>"nothing"}
|
480
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
481
|
-
Processing by SimplePagesController#show as HTML
|
482
|
-
Parameters: {"id"=>"testing"}
|
483
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
484
|
-
Processing by SimplePagesController#show as HTML
|
485
|
-
Parameters: {"id"=>"testing"}
|
486
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
487
|
-
Processing by SimplePagesController#show as HTML
|
488
|
-
Parameters: {"id"=>"plus"}
|
489
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
490
|
-
Processing by SimplePagesController#show as HTML
|
491
|
-
Parameters: {"id"=>"plus"}
|
492
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
493
|
-
Processing by SimplePagesController#show as HTML
|
494
|
-
Parameters: {"id"=>"plus"}
|
495
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
496
|
-
Processing by SimplePagesController#show as HTML
|
497
|
-
Parameters: {"id"=>"minus"}
|
498
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
499
|
-
Processing by SimplePagesController#show as HTML
|
500
|
-
Parameters: {"id"=>"minus"}
|
501
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
502
|
-
Processing by SimplePagesController#show as HTML
|
503
|
-
Parameters: {"id"=>"minus"}
|
504
|
-
Completed 200 OK in 2ms (Views: 1.0ms)
|
505
|
-
Processing by SimplePagesController#show as HTML
|
506
|
-
Parameters: {"id"=>"testing-testing"}
|
507
|
-
Completed 404 Not Found in 2ms (Views: 0.7ms)
|
508
|
-
Processing by SimplePagesController#show as HTML
|
509
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
510
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
511
|
-
Processing by SimplePagesController#show as HTML
|
512
|
-
Parameters: {"id"=>"testing-testing"}
|
513
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
514
|
-
Processing by SimplePagesController#show as HTML
|
515
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
516
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
517
|
-
Processing by SimplePagesController#show as HTML
|
518
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
519
|
-
Completed 404 Not Found in 1ms (Views: 0.7ms)
|
520
|
-
Processing by I18nSimplePagesController#show as HTML
|
521
|
-
Parameters: {"id"=>"contact"}
|
522
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
523
|
-
Completed 200 OK in 79ms (Views: 11.0ms)
|
524
|
-
Processing by I18nSimplePagesController#show as HTML
|
525
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
526
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
527
|
-
Processing by I18nSimplePagesController#show as HTML
|
528
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
529
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
530
|
-
Processing by I18nSimplePagesController#show as HTML
|
531
|
-
Parameters: {"id"=>"contato"}
|
532
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
533
|
-
Processing by I18nSimplePagesController#show as HTML
|
534
|
-
Parameters: {"id"=>"contato"}
|
535
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
536
|
-
Processing by I18nSimplePagesController#show as HTML
|
537
|
-
Parameters: {"id"=>"contato"}
|
538
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
539
|
-
Processing by SimplePagesController#show as HTML
|
540
|
-
Parameters: {"id"=>"nothing"}
|
541
|
-
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
542
|
-
Processing by SimplePagesController#show as HTML
|
543
|
-
Parameters: {"id"=>"nothing"}
|
544
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
545
|
-
Processing by SimplePagesController#show as HTML
|
546
|
-
Parameters: {"id"=>"testing"}
|
547
|
-
Completed 200 OK in 2ms (Views: 1.5ms)
|
548
|
-
Processing by SimplePagesController#show as HTML
|
549
|
-
Parameters: {"id"=>"testing"}
|
550
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
551
|
-
Processing by SimplePagesController#show as HTML
|
552
|
-
Parameters: {"id"=>"plus"}
|
553
|
-
Completed 200 OK in 2ms (Views: 1.8ms)
|
554
|
-
Processing by SimplePagesController#show as HTML
|
555
|
-
Parameters: {"id"=>"plus"}
|
556
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
557
|
-
Processing by SimplePagesController#show as HTML
|
558
|
-
Parameters: {"id"=>"plus"}
|
559
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
560
|
-
Processing by SimplePagesController#show as HTML
|
561
|
-
Parameters: {"id"=>"minus"}
|
562
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
563
|
-
Processing by SimplePagesController#show as HTML
|
564
|
-
Parameters: {"id"=>"minus"}
|
565
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
566
|
-
Processing by SimplePagesController#show as HTML
|
567
|
-
Parameters: {"id"=>"minus"}
|
568
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
569
|
-
Processing by SimplePagesController#show as HTML
|
570
|
-
Parameters: {"id"=>"testing-testing"}
|
571
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
572
|
-
Processing by SimplePagesController#show as HTML
|
573
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
574
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
575
|
-
Processing by SimplePagesController#show as HTML
|
576
|
-
Parameters: {"id"=>"testing-testing"}
|
577
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
578
|
-
Processing by SimplePagesController#show as HTML
|
579
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
580
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
581
|
-
Processing by SimplePagesController#show as HTML
|
582
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
583
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
584
|
-
Processing by I18nSimplePagesController#show as HTML
|
585
|
-
Parameters: {"id"=>"contact"}
|
586
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
587
|
-
Completed 200 OK in 78ms (Views: 10.9ms)
|
588
|
-
Processing by I18nSimplePagesController#show as HTML
|
589
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
590
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
591
|
-
Processing by I18nSimplePagesController#show as HTML
|
592
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
593
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
594
|
-
Processing by I18nSimplePagesController#show as HTML
|
595
|
-
Parameters: {"id"=>"contato"}
|
596
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
597
|
-
Processing by I18nSimplePagesController#show as HTML
|
598
|
-
Parameters: {"id"=>"contato"}
|
599
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
600
|
-
Processing by I18nSimplePagesController#show as HTML
|
601
|
-
Parameters: {"id"=>"contato"}
|
602
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
603
|
-
Processing by SimplePagesController#show as HTML
|
604
|
-
Parameters: {"id"=>"nothing"}
|
605
|
-
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
606
|
-
Processing by SimplePagesController#show as HTML
|
607
|
-
Parameters: {"id"=>"nothing"}
|
608
|
-
Completed 404 Not Found in 1ms (Views: 0.9ms)
|
609
|
-
Processing by SimplePagesController#show as HTML
|
610
|
-
Parameters: {"id"=>"testing"}
|
611
|
-
Completed 200 OK in 2ms (Views: 2.2ms)
|
612
|
-
Processing by SimplePagesController#show as HTML
|
613
|
-
Parameters: {"id"=>"testing"}
|
614
|
-
Completed 200 OK in 2ms (Views: 1.5ms)
|
615
|
-
Processing by SimplePagesController#show as HTML
|
616
|
-
Parameters: {"id"=>"plus"}
|
617
|
-
Completed 200 OK in 3ms (Views: 2.5ms)
|
618
|
-
Processing by SimplePagesController#show as HTML
|
619
|
-
Parameters: {"id"=>"plus"}
|
620
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
621
|
-
Processing by SimplePagesController#show as HTML
|
622
|
-
Parameters: {"id"=>"plus"}
|
623
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
624
|
-
Processing by SimplePagesController#show as HTML
|
625
|
-
Parameters: {"id"=>"minus"}
|
626
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
627
|
-
Processing by SimplePagesController#show as HTML
|
628
|
-
Parameters: {"id"=>"minus"}
|
629
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
630
|
-
Processing by SimplePagesController#show as HTML
|
631
|
-
Parameters: {"id"=>"minus"}
|
632
|
-
Completed 200 OK in 2ms (Views: 1.0ms)
|
633
|
-
Processing by SimplePagesController#show as HTML
|
634
|
-
Parameters: {"id"=>"testing-testing"}
|
635
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
636
|
-
Processing by SimplePagesController#show as HTML
|
637
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
638
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
639
|
-
Processing by SimplePagesController#show as HTML
|
640
|
-
Parameters: {"id"=>"testing-testing"}
|
641
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
642
|
-
Processing by SimplePagesController#show as HTML
|
643
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
644
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
645
|
-
Processing by SimplePagesController#show as HTML
|
646
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
647
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
648
|
-
Processing by I18nSimplePagesController#show as HTML
|
649
|
-
Parameters: {"id"=>"contact"}
|
650
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.0ms)
|
651
|
-
Completed 200 OK in 90ms (Views: 11.3ms)
|
652
|
-
Processing by I18nSimplePagesController#show as HTML
|
653
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
654
|
-
Completed 200 OK in 3ms (Views: 2.3ms)
|
655
|
-
Processing by I18nSimplePagesController#show as HTML
|
656
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
657
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
658
|
-
Processing by I18nSimplePagesController#show as HTML
|
659
|
-
Parameters: {"id"=>"contato"}
|
660
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
661
|
-
Processing by I18nSimplePagesController#show as HTML
|
662
|
-
Parameters: {"id"=>"contato"}
|
663
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
664
|
-
Processing by I18nSimplePagesController#show as HTML
|
665
|
-
Parameters: {"id"=>"contato"}
|
666
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
667
|
-
Processing by SimplePagesController#show as HTML
|
668
|
-
Parameters: {"id"=>"nothing"}
|
669
|
-
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
670
|
-
Processing by SimplePagesController#show as HTML
|
671
|
-
Parameters: {"id"=>"nothing"}
|
672
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
673
|
-
Processing by SimplePagesController#show as HTML
|
674
|
-
Parameters: {"id"=>"testing"}
|
675
|
-
Completed 200 OK in 3ms (Views: 2.5ms)
|
676
|
-
Processing by SimplePagesController#show as HTML
|
677
|
-
Parameters: {"id"=>"testing"}
|
678
|
-
Completed 200 OK in 2ms (Views: 1.5ms)
|
679
|
-
Processing by SimplePagesController#show as HTML
|
680
|
-
Parameters: {"id"=>"plus"}
|
681
|
-
Completed 200 OK in 2ms (Views: 2.0ms)
|
682
|
-
Processing by SimplePagesController#show as HTML
|
683
|
-
Parameters: {"id"=>"plus"}
|
684
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
685
|
-
Processing by SimplePagesController#show as HTML
|
686
|
-
Parameters: {"id"=>"plus"}
|
687
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
688
|
-
Processing by SimplePagesController#show as HTML
|
689
|
-
Parameters: {"id"=>"minus"}
|
690
|
-
Completed 404 Not Found in 2ms (Views: 1.1ms)
|
691
|
-
Processing by SimplePagesController#show as HTML
|
692
|
-
Parameters: {"id"=>"minus"}
|
693
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
694
|
-
Processing by SimplePagesController#show as HTML
|
695
|
-
Parameters: {"id"=>"minus"}
|
696
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
697
|
-
Processing by SimplePagesController#show as HTML
|
698
|
-
Parameters: {"id"=>"testing-testing"}
|
699
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
700
|
-
Processing by SimplePagesController#show as HTML
|
701
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
702
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
703
|
-
Processing by SimplePagesController#show as HTML
|
704
|
-
Parameters: {"id"=>"testing-testing"}
|
705
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
706
|
-
Processing by SimplePagesController#show as HTML
|
707
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
708
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
709
|
-
Processing by SimplePagesController#show as HTML
|
710
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
711
|
-
Completed 404 Not Found in 1ms (Views: 0.7ms)
|
712
|
-
Processing by I18nSimplePagesController#show as HTML
|
713
|
-
Parameters: {"id"=>"contact"}
|
714
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
715
|
-
Completed 200 OK in 85ms (Views: 11.1ms)
|
716
|
-
Processing by I18nSimplePagesController#show as HTML
|
717
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
718
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
719
|
-
Processing by I18nSimplePagesController#show as HTML
|
720
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
721
|
-
Completed 200 OK in 2ms (Views: 1.8ms)
|
722
|
-
Processing by I18nSimplePagesController#show as HTML
|
723
|
-
Parameters: {"id"=>"contato"}
|
724
|
-
Completed 404 Not Found in 7ms (Views: 1.9ms)
|
725
|
-
Processing by I18nSimplePagesController#show as HTML
|
726
|
-
Parameters: {"id"=>"contato"}
|
727
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
728
|
-
Processing by I18nSimplePagesController#show as HTML
|
729
|
-
Parameters: {"id"=>"contato"}
|
730
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
731
|
-
Processing by SimplePagesController#show as HTML
|
732
|
-
Parameters: {"id"=>"nothing"}
|
733
|
-
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
734
|
-
Processing by SimplePagesController#show as HTML
|
735
|
-
Parameters: {"id"=>"nothing"}
|
736
|
-
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
737
|
-
Processing by SimplePagesController#show as HTML
|
738
|
-
Parameters: {"id"=>"testing"}
|
739
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
740
|
-
Processing by SimplePagesController#show as HTML
|
741
|
-
Parameters: {"id"=>"testing"}
|
742
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
743
|
-
Processing by SimplePagesController#show as HTML
|
744
|
-
Parameters: {"id"=>"plus"}
|
745
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
746
|
-
Processing by SimplePagesController#show as HTML
|
747
|
-
Parameters: {"id"=>"plus"}
|
748
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
749
|
-
Processing by SimplePagesController#show as HTML
|
750
|
-
Parameters: {"id"=>"plus"}
|
751
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
752
|
-
Processing by SimplePagesController#show as HTML
|
753
|
-
Parameters: {"id"=>"minus"}
|
754
|
-
Completed 200 OK in 3ms (Views: 1.4ms)
|
755
|
-
Processing by SimplePagesController#show as HTML
|
756
|
-
Parameters: {"id"=>"minus"}
|
757
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
758
|
-
Processing by SimplePagesController#show as HTML
|
759
|
-
Parameters: {"id"=>"minus"}
|
760
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
761
|
-
Processing by SimplePagesController#show as HTML
|
762
|
-
Parameters: {"id"=>"testing-testing"}
|
763
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
764
|
-
Processing by SimplePagesController#show as HTML
|
765
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
766
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
767
|
-
Processing by SimplePagesController#show as HTML
|
768
|
-
Parameters: {"id"=>"testing-testing"}
|
769
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
770
|
-
Processing by SimplePagesController#show as HTML
|
771
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
772
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
773
|
-
Processing by SimplePagesController#show as HTML
|
774
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
775
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
776
|
-
Processing by I18nSimplePagesController#show as HTML
|
777
|
-
Parameters: {"id"=>"contact"}
|
778
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
779
|
-
Completed 200 OK in 78ms (Views: 11.0ms)
|
780
|
-
Processing by I18nSimplePagesController#show as HTML
|
781
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
782
|
-
Completed 200 OK in 3ms (Views: 2.3ms)
|
783
|
-
Processing by I18nSimplePagesController#show as HTML
|
784
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
785
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
786
|
-
Processing by I18nSimplePagesController#show as HTML
|
787
|
-
Parameters: {"id"=>"contato"}
|
788
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
789
|
-
Processing by I18nSimplePagesController#show as HTML
|
790
|
-
Parameters: {"id"=>"contato"}
|
791
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
792
|
-
Processing by I18nSimplePagesController#show as HTML
|
793
|
-
Parameters: {"id"=>"contato"}
|
794
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
795
|
-
Processing by SimplePagesController#show as HTML
|
796
|
-
Parameters: {"id"=>"nothing"}
|
797
|
-
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
798
|
-
Processing by SimplePagesController#show as HTML
|
799
|
-
Parameters: {"id"=>"nothing"}
|
800
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
801
|
-
Processing by SimplePagesController#show as HTML
|
802
|
-
Parameters: {"id"=>"testing"}
|
803
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
804
|
-
Processing by SimplePagesController#show as HTML
|
805
|
-
Parameters: {"id"=>"testing"}
|
806
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
807
|
-
Processing by SimplePagesController#show as HTML
|
808
|
-
Parameters: {"id"=>"plus"}
|
809
|
-
Completed 200 OK in 3ms (Views: 2.6ms)
|
810
|
-
Processing by SimplePagesController#show as HTML
|
811
|
-
Parameters: {"id"=>"plus"}
|
812
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
813
|
-
Processing by SimplePagesController#show as HTML
|
814
|
-
Parameters: {"id"=>"plus"}
|
815
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
816
|
-
Processing by SimplePagesController#show as HTML
|
817
|
-
Parameters: {"id"=>"minus"}
|
818
|
-
Completed 200 OK in 3ms (Views: 1.6ms)
|
819
|
-
Processing by SimplePagesController#show as HTML
|
820
|
-
Parameters: {"id"=>"minus"}
|
821
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
822
|
-
Processing by SimplePagesController#show as HTML
|
823
|
-
Parameters: {"id"=>"minus"}
|
824
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
825
|
-
Processing by SimplePagesController#show as HTML
|
826
|
-
Parameters: {"id"=>"testing-testing"}
|
827
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
828
|
-
Processing by SimplePagesController#show as HTML
|
829
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
830
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
831
|
-
Processing by SimplePagesController#show as HTML
|
832
|
-
Parameters: {"id"=>"testing-testing"}
|
833
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
834
|
-
Processing by SimplePagesController#show as HTML
|
835
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
836
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
837
|
-
Processing by SimplePagesController#show as HTML
|
838
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
839
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
840
|
-
Processing by I18nSimplePagesController#show as HTML
|
841
|
-
Parameters: {"id"=>"contact"}
|
842
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
843
|
-
Completed 200 OK in 127ms (Views: 11.4ms)
|
844
|
-
Processing by I18nSimplePagesController#show as HTML
|
845
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
846
|
-
Completed 200 OK in 3ms (Views: 2.6ms)
|
847
|
-
Processing by I18nSimplePagesController#show as HTML
|
848
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
849
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
850
|
-
Processing by I18nSimplePagesController#show as HTML
|
851
|
-
Parameters: {"id"=>"contato"}
|
852
|
-
Completed 404 Not Found in 7ms (Views: 2.1ms)
|
853
|
-
Processing by I18nSimplePagesController#show as HTML
|
854
|
-
Parameters: {"id"=>"contato"}
|
855
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
856
|
-
Processing by I18nSimplePagesController#show as HTML
|
857
|
-
Parameters: {"id"=>"contato"}
|
858
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
859
|
-
Processing by SimplePagesController#show as HTML
|
860
|
-
Parameters: {"id"=>"nothing"}
|
861
|
-
Completed 404 Not Found in 4ms (Views: 1.9ms)
|
862
|
-
Processing by SimplePagesController#show as HTML
|
863
|
-
Parameters: {"id"=>"nothing"}
|
864
|
-
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
865
|
-
Processing by SimplePagesController#show as HTML
|
866
|
-
Parameters: {"id"=>"testing"}
|
867
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
868
|
-
Processing by SimplePagesController#show as HTML
|
869
|
-
Parameters: {"id"=>"testing"}
|
870
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
871
|
-
Processing by SimplePagesController#show as HTML
|
872
|
-
Parameters: {"id"=>"plus"}
|
873
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
874
|
-
Processing by SimplePagesController#show as HTML
|
875
|
-
Parameters: {"id"=>"plus"}
|
876
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
877
|
-
Processing by SimplePagesController#show as HTML
|
878
|
-
Parameters: {"id"=>"plus"}
|
879
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
880
|
-
Processing by SimplePagesController#show as HTML
|
881
|
-
Parameters: {"id"=>"minus"}
|
882
|
-
Completed 200 OK in 3ms (Views: 1.8ms)
|
883
|
-
Processing by SimplePagesController#show as HTML
|
884
|
-
Parameters: {"id"=>"minus"}
|
885
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
886
|
-
Processing by SimplePagesController#show as HTML
|
887
|
-
Parameters: {"id"=>"minus"}
|
888
|
-
Completed 200 OK in 2ms (Views: 0.8ms)
|
889
|
-
Processing by SimplePagesController#show as HTML
|
890
|
-
Parameters: {"id"=>"testing-testing"}
|
891
|
-
Completed 200 OK in 1ms (Views: 1.2ms)
|
892
|
-
Processing by SimplePagesController#show as HTML
|
893
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
894
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
895
|
-
Processing by SimplePagesController#show as HTML
|
896
|
-
Parameters: {"id"=>"testing-testing"}
|
897
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
898
|
-
Processing by SimplePagesController#show as HTML
|
899
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
900
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
901
|
-
Processing by SimplePagesController#show as HTML
|
902
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
903
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
904
|
-
Processing by I18nSimplePagesController#show as HTML
|
905
|
-
Parameters: {"id"=>"contact"}
|
906
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.0ms)
|
907
|
-
Completed 200 OK in 102ms (Views: 10.7ms)
|
908
|
-
Processing by I18nSimplePagesController#show as HTML
|
909
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
910
|
-
Completed 200 OK in 3ms (Views: 2.5ms)
|
911
|
-
Processing by I18nSimplePagesController#show as HTML
|
912
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
913
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
914
|
-
Processing by I18nSimplePagesController#show as HTML
|
915
|
-
Parameters: {"id"=>"contato"}
|
916
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
917
|
-
Processing by I18nSimplePagesController#show as HTML
|
918
|
-
Parameters: {"id"=>"contato"}
|
919
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
920
|
-
Processing by I18nSimplePagesController#show as HTML
|
921
|
-
Parameters: {"id"=>"contato"}
|
922
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
923
|
-
Processing by SimplePagesController#show as HTML
|
924
|
-
Parameters: {"id"=>"nothing"}
|
925
|
-
Completed 404 Not Found in 3ms (Views: 1.6ms)
|
926
|
-
Processing by SimplePagesController#show as HTML
|
927
|
-
Parameters: {"id"=>"nothing"}
|
928
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
929
|
-
Processing by SimplePagesController#show as HTML
|
930
|
-
Parameters: {"id"=>"testing"}
|
931
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
932
|
-
Processing by SimplePagesController#show as HTML
|
933
|
-
Parameters: {"id"=>"testing"}
|
934
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
935
|
-
Processing by SimplePagesController#show as HTML
|
936
|
-
Parameters: {"id"=>"plus"}
|
937
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
938
|
-
Processing by SimplePagesController#show as HTML
|
939
|
-
Parameters: {"id"=>"plus"}
|
940
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
941
|
-
Processing by SimplePagesController#show as HTML
|
942
|
-
Parameters: {"id"=>"plus"}
|
943
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
944
|
-
Processing by SimplePagesController#show as HTML
|
945
|
-
Parameters: {"id"=>"minus"}
|
946
|
-
Completed 200 OK in 3ms (Views: 1.6ms)
|
947
|
-
Processing by SimplePagesController#show as HTML
|
948
|
-
Parameters: {"id"=>"minus"}
|
949
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
950
|
-
Processing by SimplePagesController#show as HTML
|
951
|
-
Parameters: {"id"=>"minus"}
|
952
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
953
|
-
Processing by SimplePagesController#show as HTML
|
954
|
-
Parameters: {"id"=>"testing-testing"}
|
955
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
956
|
-
Processing by SimplePagesController#show as HTML
|
957
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
958
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
959
|
-
Processing by SimplePagesController#show as HTML
|
960
|
-
Parameters: {"id"=>"testing-testing"}
|
961
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
962
|
-
Processing by SimplePagesController#show as HTML
|
963
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
964
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
965
|
-
Processing by SimplePagesController#show as HTML
|
966
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
967
|
-
Completed 404 Not Found in 3ms (Views: 1.0ms)
|
968
|
-
Processing by I18nSimplePagesController#show as HTML
|
969
|
-
Parameters: {"id"=>"contact"}
|
970
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.0ms)
|
971
|
-
Completed 200 OK in 85ms (Views: 11.1ms)
|
972
|
-
Processing by I18nSimplePagesController#show as HTML
|
973
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
974
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
975
|
-
Processing by I18nSimplePagesController#show as HTML
|
976
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
977
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
978
|
-
Processing by I18nSimplePagesController#show as HTML
|
979
|
-
Parameters: {"id"=>"contato"}
|
980
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
981
|
-
Processing by I18nSimplePagesController#show as HTML
|
982
|
-
Parameters: {"id"=>"contato"}
|
983
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
984
|
-
Processing by I18nSimplePagesController#show as HTML
|
985
|
-
Parameters: {"id"=>"contato"}
|
986
|
-
Completed 404 Not Found in 2ms (Views: 1.2ms)
|
987
|
-
Processing by SimplePagesController#show as HTML
|
988
|
-
Parameters: {"id"=>"nothing"}
|
989
|
-
Completed 404 Not Found in 5ms (Views: 2.7ms)
|
990
|
-
Processing by SimplePagesController#show as HTML
|
991
|
-
Parameters: {"id"=>"nothing"}
|
992
|
-
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
993
|
-
Processing by SimplePagesController#show as HTML
|
994
|
-
Parameters: {"id"=>"testing"}
|
995
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
996
|
-
Processing by SimplePagesController#show as HTML
|
997
|
-
Parameters: {"id"=>"testing"}
|
998
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
999
|
-
Processing by SimplePagesController#show as HTML
|
1000
|
-
Parameters: {"id"=>"plus"}
|
1001
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
1002
|
-
Processing by SimplePagesController#show as HTML
|
1003
|
-
Parameters: {"id"=>"plus"}
|
1004
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1005
|
-
Processing by SimplePagesController#show as HTML
|
1006
|
-
Parameters: {"id"=>"plus"}
|
1007
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1008
|
-
Processing by SimplePagesController#show as HTML
|
1009
|
-
Parameters: {"id"=>"minus"}
|
1010
|
-
Completed 200 OK in 3ms (Views: 1.4ms)
|
1011
|
-
Processing by SimplePagesController#show as HTML
|
1012
|
-
Parameters: {"id"=>"minus"}
|
1013
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1014
|
-
Processing by SimplePagesController#show as HTML
|
1015
|
-
Parameters: {"id"=>"minus"}
|
1016
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1017
|
-
Processing by SimplePagesController#show as HTML
|
1018
|
-
Parameters: {"id"=>"testing-testing"}
|
1019
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
1020
|
-
Processing by SimplePagesController#show as HTML
|
1021
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1022
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
1023
|
-
Processing by SimplePagesController#show as HTML
|
1024
|
-
Parameters: {"id"=>"testing-testing"}
|
1025
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
1026
|
-
Processing by SimplePagesController#show as HTML
|
1027
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1028
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
1029
|
-
Processing by SimplePagesController#show as HTML
|
1030
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1031
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
1032
|
-
Processing by I18nSimplePagesController#show as HTML
|
1033
|
-
Parameters: {"id"=>"contact"}
|
1034
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.0ms)
|
1035
|
-
Completed 200 OK in 86ms (Views: 11.0ms)
|
1036
|
-
Processing by I18nSimplePagesController#show as HTML
|
1037
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1038
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
1039
|
-
Processing by I18nSimplePagesController#show as HTML
|
1040
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1041
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1042
|
-
Processing by I18nSimplePagesController#show as HTML
|
1043
|
-
Parameters: {"id"=>"contato"}
|
1044
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
1045
|
-
Processing by I18nSimplePagesController#show as HTML
|
1046
|
-
Parameters: {"id"=>"contato"}
|
1047
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1048
|
-
Processing by I18nSimplePagesController#show as HTML
|
1049
|
-
Parameters: {"id"=>"contato"}
|
1050
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1051
|
-
Processing by SimplePagesController#show as HTML
|
1052
|
-
Parameters: {"id"=>"nothing"}
|
1053
|
-
Completed 404 Not Found in 3ms (Views: 1.6ms)
|
1054
|
-
Processing by SimplePagesController#show as HTML
|
1055
|
-
Parameters: {"id"=>"nothing"}
|
1056
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1057
|
-
Processing by SimplePagesController#show as HTML
|
1058
|
-
Parameters: {"id"=>"testing"}
|
1059
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
1060
|
-
Processing by SimplePagesController#show as HTML
|
1061
|
-
Parameters: {"id"=>"testing"}
|
1062
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1063
|
-
Processing by SimplePagesController#show as HTML
|
1064
|
-
Parameters: {"id"=>"plus"}
|
1065
|
-
Completed 200 OK in 2ms (Views: 1.8ms)
|
1066
|
-
Processing by SimplePagesController#show as HTML
|
1067
|
-
Parameters: {"id"=>"plus"}
|
1068
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1069
|
-
Processing by SimplePagesController#show as HTML
|
1070
|
-
Parameters: {"id"=>"plus"}
|
1071
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
1072
|
-
Processing by SimplePagesController#show as HTML
|
1073
|
-
Parameters: {"id"=>"minus"}
|
1074
|
-
Completed 200 OK in 3ms (Views: 1.6ms)
|
1075
|
-
Processing by SimplePagesController#show as HTML
|
1076
|
-
Parameters: {"id"=>"minus"}
|
1077
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
1078
|
-
Processing by SimplePagesController#show as HTML
|
1079
|
-
Parameters: {"id"=>"minus"}
|
1080
|
-
Completed 200 OK in 2ms (Views: 0.9ms)
|
1081
|
-
Processing by SimplePagesController#show as HTML
|
1082
|
-
Parameters: {"id"=>"testing-testing"}
|
1083
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
1084
|
-
Processing by SimplePagesController#show as HTML
|
1085
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1086
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
1087
|
-
Processing by SimplePagesController#show as HTML
|
1088
|
-
Parameters: {"id"=>"testing-testing"}
|
1089
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
1090
|
-
Processing by SimplePagesController#show as HTML
|
1091
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1092
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
1093
|
-
Processing by SimplePagesController#show as HTML
|
1094
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1095
|
-
Completed 404 Not Found in 3ms (Views: 0.9ms)
|
1096
|
-
Processing by I18nSimplePagesController#show as HTML
|
1097
|
-
Parameters: {"id"=>"contact"}
|
1098
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
1099
|
-
Completed 200 OK in 83ms (Views: 11.0ms)
|
1100
|
-
Processing by I18nSimplePagesController#show as HTML
|
1101
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1102
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
1103
|
-
Processing by I18nSimplePagesController#show as HTML
|
1104
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1105
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1106
|
-
Processing by I18nSimplePagesController#show as HTML
|
1107
|
-
Parameters: {"id"=>"contato"}
|
1108
|
-
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
1109
|
-
Processing by I18nSimplePagesController#show as HTML
|
1110
|
-
Parameters: {"id"=>"contato"}
|
1111
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1112
|
-
Processing by I18nSimplePagesController#show as HTML
|
1113
|
-
Parameters: {"id"=>"contato"}
|
1114
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1115
|
-
Processing by SimplePagesController#show as HTML
|
1116
|
-
Parameters: {"id"=>"nothing"}
|
1117
|
-
Completed 404 Not Found in 4ms (Views: 1.8ms)
|
1118
|
-
Processing by SimplePagesController#show as HTML
|
1119
|
-
Parameters: {"id"=>"nothing"}
|
1120
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1121
|
-
Processing by SimplePagesController#show as HTML
|
1122
|
-
Parameters: {"id"=>"testing"}
|
1123
|
-
Completed 200 OK in 2ms (Views: 1.8ms)
|
1124
|
-
Processing by SimplePagesController#show as HTML
|
1125
|
-
Parameters: {"id"=>"testing"}
|
1126
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
1127
|
-
Processing by SimplePagesController#show as HTML
|
1128
|
-
Parameters: {"id"=>"plus"}
|
1129
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
1130
|
-
Processing by SimplePagesController#show as HTML
|
1131
|
-
Parameters: {"id"=>"plus"}
|
1132
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1133
|
-
Processing by SimplePagesController#show as HTML
|
1134
|
-
Parameters: {"id"=>"plus"}
|
1135
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1136
|
-
Processing by SimplePagesController#show as HTML
|
1137
|
-
Parameters: {"id"=>"minus"}
|
1138
|
-
Completed 200 OK in 2ms (Views: 1.4ms)
|
1139
|
-
Processing by SimplePagesController#show as HTML
|
1140
|
-
Parameters: {"id"=>"minus"}
|
1141
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1142
|
-
Processing by SimplePagesController#show as HTML
|
1143
|
-
Parameters: {"id"=>"minus"}
|
1144
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1145
|
-
Processing by SimplePagesController#show as HTML
|
1146
|
-
Parameters: {"id"=>"testing-testing"}
|
1147
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
1148
|
-
Processing by SimplePagesController#show as HTML
|
1149
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1150
|
-
Completed 200 OK in 2ms (Views: 1.2ms)
|
1151
|
-
Processing by SimplePagesController#show as HTML
|
1152
|
-
Parameters: {"id"=>"testing-testing"}
|
1153
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1154
|
-
Processing by SimplePagesController#show as HTML
|
1155
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1156
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
1157
|
-
Processing by SimplePagesController#show as HTML
|
1158
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1159
|
-
Completed 404 Not Found in 2ms (Views: 0.5ms)
|
1160
|
-
Processing by I18nSimplePagesController#show as HTML
|
1161
|
-
Parameters: {"id"=>"contact"}
|
1162
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.6ms)
|
1163
|
-
Completed 200 OK in 103ms (Views: 9.4ms)
|
1164
|
-
Processing by I18nSimplePagesController#show as HTML
|
1165
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1166
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
1167
|
-
Processing by I18nSimplePagesController#show as HTML
|
1168
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1169
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1170
|
-
Processing by I18nSimplePagesController#show as HTML
|
1171
|
-
Parameters: {"id"=>"contato"}
|
1172
|
-
Completed 404 Not Found in 5ms (Views: 1.5ms)
|
1173
|
-
Processing by I18nSimplePagesController#show as HTML
|
1174
|
-
Parameters: {"id"=>"contato"}
|
1175
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1176
|
-
Processing by I18nSimplePagesController#show as HTML
|
1177
|
-
Parameters: {"id"=>"contato"}
|
1178
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1179
|
-
Processing by SimplePagesController#show as HTML
|
1180
|
-
Parameters: {"id"=>"nothing"}
|
1181
|
-
Completed 404 Not Found in 3ms (Views: 1.6ms)
|
1182
|
-
Processing by SimplePagesController#show as HTML
|
1183
|
-
Parameters: {"id"=>"nothing"}
|
1184
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1185
|
-
Processing by SimplePagesController#show as HTML
|
1186
|
-
Parameters: {"id"=>"testing"}
|
1187
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
1188
|
-
Processing by SimplePagesController#show as HTML
|
1189
|
-
Parameters: {"id"=>"testing"}
|
1190
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1191
|
-
Processing by SimplePagesController#show as HTML
|
1192
|
-
Parameters: {"id"=>"plus"}
|
1193
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
1194
|
-
Processing by SimplePagesController#show as HTML
|
1195
|
-
Parameters: {"id"=>"plus"}
|
1196
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1197
|
-
Processing by SimplePagesController#show as HTML
|
1198
|
-
Parameters: {"id"=>"plus"}
|
1199
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1200
|
-
Processing by SimplePagesController#show as HTML
|
1201
|
-
Parameters: {"id"=>"minus"}
|
1202
|
-
Completed 200 OK in 3ms (Views: 1.4ms)
|
1203
|
-
Processing by SimplePagesController#show as HTML
|
1204
|
-
Parameters: {"id"=>"minus"}
|
1205
|
-
Completed 200 OK in 2ms (Views: 0.9ms)
|
1206
|
-
Processing by SimplePagesController#show as HTML
|
1207
|
-
Parameters: {"id"=>"minus"}
|
1208
|
-
Completed 200 OK in 2ms (Views: 0.9ms)
|
1209
|
-
Processing by SimplePagesController#show as HTML
|
1210
|
-
Parameters: {"id"=>"testing-testing"}
|
1211
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
1212
|
-
Processing by SimplePagesController#show as HTML
|
1213
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1214
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1215
|
-
Processing by SimplePagesController#show as HTML
|
1216
|
-
Parameters: {"id"=>"testing-testing"}
|
1217
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
1218
|
-
Processing by SimplePagesController#show as HTML
|
1219
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1220
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
1221
|
-
Processing by SimplePagesController#show as HTML
|
1222
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1223
|
-
Completed 404 Not Found in 3ms (Views: 0.9ms)
|
1224
|
-
Processing by I18nSimplePagesController#show as HTML
|
1225
|
-
Parameters: {"id"=>"contact"}
|
1226
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.6ms)
|
1227
|
-
Completed 200 OK in 101ms (Views: 9.5ms)
|
1228
|
-
Processing by I18nSimplePagesController#show as HTML
|
1229
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1230
|
-
Completed 200 OK in 3ms (Views: 2.4ms)
|
1231
|
-
Processing by I18nSimplePagesController#show as HTML
|
1232
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1233
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1234
|
-
Processing by I18nSimplePagesController#show as HTML
|
1235
|
-
Parameters: {"id"=>"contato"}
|
1236
|
-
Completed 404 Not Found in 5ms (Views: 1.5ms)
|
1237
|
-
Processing by I18nSimplePagesController#show as HTML
|
1238
|
-
Parameters: {"id"=>"contato"}
|
1239
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1240
|
-
Processing by I18nSimplePagesController#show as HTML
|
1241
|
-
Parameters: {"id"=>"contato"}
|
1242
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1243
|
-
Processing by SimplePagesController#show as HTML
|
1244
|
-
Parameters: {"id"=>"nothing"}
|
1245
|
-
Completed 404 Not Found in 5ms (Views: 2.7ms)
|
1246
|
-
Processing by SimplePagesController#show as HTML
|
1247
|
-
Parameters: {"id"=>"nothing"}
|
1248
|
-
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
1249
|
-
Processing by SimplePagesController#show as HTML
|
1250
|
-
Parameters: {"id"=>"testing"}
|
1251
|
-
Completed 200 OK in 2ms (Views: 2.1ms)
|
1252
|
-
Processing by SimplePagesController#show as HTML
|
1253
|
-
Parameters: {"id"=>"testing"}
|
1254
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1255
|
-
Processing by SimplePagesController#show as HTML
|
1256
|
-
Parameters: {"id"=>"plus"}
|
1257
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
1258
|
-
Processing by SimplePagesController#show as HTML
|
1259
|
-
Parameters: {"id"=>"plus"}
|
1260
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1261
|
-
Processing by SimplePagesController#show as HTML
|
1262
|
-
Parameters: {"id"=>"plus"}
|
1263
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1264
|
-
Processing by SimplePagesController#show as HTML
|
1265
|
-
Parameters: {"id"=>"minus"}
|
1266
|
-
Completed 200 OK in 3ms (Views: 1.5ms)
|
1267
|
-
Processing by SimplePagesController#show as HTML
|
1268
|
-
Parameters: {"id"=>"minus"}
|
1269
|
-
Completed 200 OK in 2ms (Views: 0.8ms)
|
1270
|
-
Processing by SimplePagesController#show as HTML
|
1271
|
-
Parameters: {"id"=>"minus"}
|
1272
|
-
Completed 200 OK in 2ms (Views: 0.9ms)
|
1273
|
-
Processing by SimplePagesController#show as HTML
|
1274
|
-
Parameters: {"id"=>"testing-testing"}
|
1275
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
1276
|
-
Processing by SimplePagesController#show as HTML
|
1277
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1278
|
-
Completed 200 OK in 2ms (Views: 1.5ms)
|
1279
|
-
Processing by SimplePagesController#show as HTML
|
1280
|
-
Parameters: {"id"=>"testing-testing"}
|
1281
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
1282
|
-
Processing by SimplePagesController#show as HTML
|
1283
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1284
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
1285
|
-
Processing by SimplePagesController#show as HTML
|
1286
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1287
|
-
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
1288
|
-
Processing by I18nSimplePagesController#show as HTML
|
1289
|
-
Parameters: {"id"=>"contact"}
|
1290
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.6ms)
|
1291
|
-
Completed 200 OK in 101ms (Views: 9.6ms)
|
1292
|
-
Processing by I18nSimplePagesController#show as HTML
|
1293
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1294
|
-
Completed 200 OK in 3ms (Views: 2.5ms)
|
1295
|
-
Processing by I18nSimplePagesController#show as HTML
|
1296
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1297
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1298
|
-
Processing by I18nSimplePagesController#show as HTML
|
1299
|
-
Parameters: {"id"=>"contato"}
|
1300
|
-
Completed 404 Not Found in 5ms (Views: 1.5ms)
|
1301
|
-
Processing by I18nSimplePagesController#show as HTML
|
1302
|
-
Parameters: {"id"=>"contato"}
|
1303
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1304
|
-
Processing by I18nSimplePagesController#show as HTML
|
1305
|
-
Parameters: {"id"=>"contato"}
|
1306
|
-
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
1307
|
-
Processing by SimplePagesController#show as HTML
|
1308
|
-
Parameters: {"id"=>"nothing"}
|
1309
|
-
Completed 404 Not Found in 5ms (Views: 2.7ms)
|
1310
|
-
Processing by SimplePagesController#show as HTML
|
1311
|
-
Parameters: {"id"=>"nothing"}
|
1312
|
-
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
1313
|
-
Processing by SimplePagesController#show as HTML
|
1314
|
-
Parameters: {"id"=>"testing"}
|
1315
|
-
Completed 200 OK in 2ms (Views: 1.7ms)
|
1316
|
-
Processing by SimplePagesController#show as HTML
|
1317
|
-
Parameters: {"id"=>"testing"}
|
1318
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1319
|
-
Processing by SimplePagesController#show as HTML
|
1320
|
-
Parameters: {"id"=>"plus"}
|
1321
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
1322
|
-
Processing by SimplePagesController#show as HTML
|
1323
|
-
Parameters: {"id"=>"plus"}
|
1324
|
-
Completed 200 OK in 1ms (Views: 1.2ms)
|
1325
|
-
Processing by SimplePagesController#show as HTML
|
1326
|
-
Parameters: {"id"=>"plus"}
|
1327
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1328
|
-
Processing by SimplePagesController#show as HTML
|
1329
|
-
Parameters: {"id"=>"minus"}
|
1330
|
-
Completed 200 OK in 3ms (Views: 1.4ms)
|
1331
|
-
Processing by SimplePagesController#show as HTML
|
1332
|
-
Parameters: {"id"=>"minus"}
|
1333
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1334
|
-
Processing by SimplePagesController#show as HTML
|
1335
|
-
Parameters: {"id"=>"minus"}
|
1336
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1337
|
-
Processing by SimplePagesController#show as HTML
|
1338
|
-
Parameters: {"id"=>"testing-testing"}
|
1339
|
-
Completed 200 OK in 2ms (Views: 1.2ms)
|
1340
|
-
Processing by SimplePagesController#show as HTML
|
1341
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1342
|
-
Completed 200 OK in 2ms (Views: 1.3ms)
|
1343
|
-
Processing by SimplePagesController#show as HTML
|
1344
|
-
Parameters: {"id"=>"testing-testing"}
|
1345
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1346
|
-
Processing by SimplePagesController#show as HTML
|
1347
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1348
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
1349
|
-
Processing by SimplePagesController#show as HTML
|
1350
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1351
|
-
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
1352
|
-
Processing by I18nSimplePagesController#show as HTML
|
1353
|
-
Parameters: {"id"=>"contact"}
|
1354
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.6ms)
|
1355
|
-
Completed 200 OK in 84ms (Views: 9.9ms)
|
1356
|
-
Processing by I18nSimplePagesController#show as HTML
|
1357
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1358
|
-
Completed 200 OK in 3ms (Views: 2.5ms)
|
1359
|
-
Processing by I18nSimplePagesController#show as HTML
|
1360
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1361
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1362
|
-
Processing by I18nSimplePagesController#show as HTML
|
1363
|
-
Parameters: {"id"=>"contato"}
|
1364
|
-
Completed 404 Not Found in 6ms (Views: 1.7ms)
|
1365
|
-
Processing by I18nSimplePagesController#show as HTML
|
1366
|
-
Parameters: {"id"=>"contato"}
|
1367
|
-
Completed 200 OK in 2ms (Views: 1.0ms)
|
1368
|
-
Processing by I18nSimplePagesController#show as HTML
|
1369
|
-
Parameters: {"id"=>"contato"}
|
1370
|
-
Completed 404 Not Found in 2ms (Views: 1.0ms)
|
1371
|
-
Processing by SimplePagesController#show as HTML
|
1372
|
-
Parameters: {"id"=>"nothing"}
|
1373
|
-
Completed 404 Not Found in 6ms (Views: 2.8ms)
|
1374
|
-
Processing by SimplePagesController#show as HTML
|
1375
|
-
Parameters: {"id"=>"nothing"}
|
1376
|
-
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
1377
|
-
Processing by SimplePagesController#show as HTML
|
1378
|
-
Parameters: {"id"=>"testing"}
|
1379
|
-
Completed 200 OK in 2ms (Views: 1.6ms)
|
1380
|
-
Processing by SimplePagesController#show as HTML
|
1381
|
-
Parameters: {"id"=>"testing"}
|
1382
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1383
|
-
Processing by SimplePagesController#show as HTML
|
1384
|
-
Parameters: {"id"=>"plus"}
|
1385
|
-
Completed 200 OK in 3ms (Views: 2.2ms)
|
1386
|
-
Processing by SimplePagesController#show as HTML
|
1387
|
-
Parameters: {"id"=>"plus"}
|
1388
|
-
Completed 200 OK in 1ms (Views: 1.0ms)
|
1389
|
-
Processing by SimplePagesController#show as HTML
|
1390
|
-
Parameters: {"id"=>"plus"}
|
1391
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1392
|
-
Processing by SimplePagesController#show as HTML
|
1393
|
-
Parameters: {"id"=>"minus"}
|
1394
|
-
Completed 200 OK in 3ms (Views: 1.4ms)
|
1395
|
-
Processing by SimplePagesController#show as HTML
|
1396
|
-
Parameters: {"id"=>"minus"}
|
1397
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1398
|
-
Processing by SimplePagesController#show as HTML
|
1399
|
-
Parameters: {"id"=>"minus"}
|
1400
|
-
Completed 200 OK in 1ms (Views: 0.8ms)
|
1401
|
-
Processing by SimplePagesController#show as HTML
|
1402
|
-
Parameters: {"id"=>"testing-testing"}
|
1403
|
-
Completed 200 OK in 1ms (Views: 1.1ms)
|
1404
|
-
Processing by SimplePagesController#show as HTML
|
1405
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1406
|
-
Completed 200 OK in 2ms (Views: 1.2ms)
|
1407
|
-
Processing by SimplePagesController#show as HTML
|
1408
|
-
Parameters: {"id"=>"testing-testing"}
|
1409
|
-
Completed 200 OK in 1ms (Views: 0.7ms)
|
1410
|
-
Processing by SimplePagesController#show as HTML
|
1411
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1412
|
-
Completed 200 OK in 1ms (Views: 0.9ms)
|
1413
|
-
Processing by SimplePagesController#show as HTML
|
1414
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1415
|
-
Completed 404 Not Found in 2ms (Views: 0.6ms)
|
1416
|
-
Processing by I18nSimplePagesController#show as HTML
|
1417
|
-
Parameters: {"id"=>"contact"}
|
1418
|
-
Completed 500 Internal Server Error in 0ms
|
1419
|
-
Processing by I18nSimplePagesController#show as HTML
|
1420
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1421
|
-
Completed 500 Internal Server Error in 0ms
|
1422
|
-
Processing by I18nSimplePagesController#show as HTML
|
1423
|
-
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1424
|
-
Completed 500 Internal Server Error in 0ms
|
1425
|
-
Processing by I18nSimplePagesController#show as HTML
|
1426
|
-
Parameters: {"id"=>"contato"}
|
1427
|
-
Completed 500 Internal Server Error in 0ms
|
1428
|
-
Processing by I18nSimplePagesController#show as HTML
|
1429
|
-
Parameters: {"id"=>"contato"}
|
1430
|
-
Completed 500 Internal Server Error in 0ms
|
1431
|
-
Processing by I18nSimplePagesController#show as HTML
|
1432
|
-
Parameters: {"id"=>"contato"}
|
1433
|
-
Completed 500 Internal Server Error in 0ms
|
1434
|
-
Processing by SimplePagesController#show as HTML
|
1435
|
-
Parameters: {"id"=>"nothing"}
|
1436
|
-
Completed 500 Internal Server Error in 0ms
|
1437
|
-
Processing by SimplePagesController#show as HTML
|
1438
|
-
Parameters: {"id"=>"nothing"}
|
1439
|
-
Completed 500 Internal Server Error in 0ms
|
1440
|
-
Processing by SimplePagesController#show as HTML
|
1441
|
-
Parameters: {"id"=>"testing"}
|
1442
|
-
Completed 500 Internal Server Error in 0ms
|
1443
|
-
Processing by SimplePagesController#show as HTML
|
1444
|
-
Parameters: {"id"=>"testing"}
|
1445
|
-
Completed 500 Internal Server Error in 0ms
|
1446
|
-
Processing by SimplePagesController#show as HTML
|
1447
|
-
Parameters: {"id"=>"plus"}
|
1448
|
-
Completed 500 Internal Server Error in 0ms
|
1449
|
-
Processing by SimplePagesController#show as HTML
|
1450
|
-
Parameters: {"id"=>"plus"}
|
1451
|
-
Completed 500 Internal Server Error in 0ms
|
1452
|
-
Processing by SimplePagesController#show as HTML
|
1453
|
-
Parameters: {"id"=>"plus"}
|
1454
|
-
Completed 500 Internal Server Error in 0ms
|
1455
|
-
Processing by SimplePagesController#show as HTML
|
1456
|
-
Parameters: {"id"=>"minus"}
|
1457
|
-
Completed 500 Internal Server Error in 0ms
|
1458
|
-
Processing by SimplePagesController#show as HTML
|
1459
|
-
Parameters: {"id"=>"minus"}
|
1460
|
-
Completed 500 Internal Server Error in 0ms
|
1461
|
-
Processing by SimplePagesController#show as HTML
|
1462
|
-
Parameters: {"id"=>"minus"}
|
1463
|
-
Completed 500 Internal Server Error in 0ms
|
1464
|
-
Processing by SimplePagesController#show as HTML
|
1465
|
-
Parameters: {"id"=>"testing-testing"}
|
1466
|
-
Completed 500 Internal Server Error in 0ms
|
1467
|
-
Processing by SimplePagesController#show as HTML
|
1468
|
-
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1469
|
-
Completed 500 Internal Server Error in 0ms
|
1470
|
-
Processing by SimplePagesController#show as HTML
|
1471
|
-
Parameters: {"id"=>"testing-testing"}
|
1472
|
-
Completed 500 Internal Server Error in 0ms
|
1473
|
-
Processing by SimplePagesController#show as HTML
|
1474
|
-
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1475
|
-
Completed 500 Internal Server Error in 0ms
|
1476
|
-
Processing by SimplePagesController#show as HTML
|
1477
|
-
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1478
|
-
Completed 500 Internal Server Error in 0ms
|
1479
1
|
Processing by I18nSimplePagesController#show as HTML
|
1480
2
|
Parameters: {"id"=>"contact"}
|
1481
3
|
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.6ms)
|
1482
|
-
Completed 200 OK in
|
4
|
+
Completed 200 OK in 120ms (Views: 10.1ms)
|
1483
5
|
Processing by I18nSimplePagesController#show as HTML
|
1484
6
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1485
|
-
Completed 200 OK in 3ms (Views: 2.
|
7
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
1486
8
|
Processing by I18nSimplePagesController#show as HTML
|
1487
9
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1488
10
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1489
11
|
Processing by I18nSimplePagesController#show as HTML
|
1490
12
|
Parameters: {"id"=>"contato"}
|
1491
|
-
Completed 404 Not Found in
|
13
|
+
Completed 404 Not Found in 6ms (Views: 1.7ms)
|
1492
14
|
Processing by I18nSimplePagesController#show as HTML
|
1493
15
|
Parameters: {"id"=>"contato"}
|
1494
|
-
Completed 200 OK in
|
16
|
+
Completed 200 OK in 2ms (Views: 1.1ms)
|
1495
17
|
Processing by I18nSimplePagesController#show as HTML
|
1496
18
|
Parameters: {"id"=>"contato"}
|
1497
|
-
Completed 404 Not Found in
|
19
|
+
Completed 404 Not Found in 2ms (Views: 1.2ms)
|
1498
20
|
Processing by SimplePagesController#show as HTML
|
1499
21
|
Parameters: {"id"=>"nothing"}
|
1500
|
-
Completed 404 Not Found in 3ms (Views: 1.
|
22
|
+
Completed 404 Not Found in 3ms (Views: 1.5ms)
|
1501
23
|
Processing by SimplePagesController#show as HTML
|
1502
24
|
Parameters: {"id"=>"nothing"}
|
1503
25
|
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
1504
26
|
Processing by SimplePagesController#show as HTML
|
1505
27
|
Parameters: {"id"=>"testing"}
|
1506
|
-
Completed 200 OK in 2ms (Views: 1.
|
28
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1507
29
|
Processing by SimplePagesController#show as HTML
|
1508
30
|
Parameters: {"id"=>"testing"}
|
1509
|
-
Completed 200 OK in
|
31
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
1510
32
|
Processing by SimplePagesController#show as HTML
|
1511
33
|
Parameters: {"id"=>"plus"}
|
1512
|
-
Completed 200 OK in 2ms (Views:
|
34
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
1513
35
|
Processing by SimplePagesController#show as HTML
|
1514
36
|
Parameters: {"id"=>"plus"}
|
1515
|
-
Completed 200 OK in 1ms (Views:
|
37
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1516
38
|
Processing by SimplePagesController#show as HTML
|
1517
39
|
Parameters: {"id"=>"plus"}
|
1518
|
-
Completed 200 OK in 1ms (Views:
|
40
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1519
41
|
Processing by SimplePagesController#show as HTML
|
1520
42
|
Parameters: {"id"=>"minus"}
|
1521
43
|
Completed 200 OK in 3ms (Views: 1.8ms)
|
1522
44
|
Processing by SimplePagesController#show as HTML
|
1523
45
|
Parameters: {"id"=>"minus"}
|
1524
|
-
Completed 200 OK in
|
46
|
+
Completed 200 OK in 2ms (Views: 0.9ms)
|
1525
47
|
Processing by SimplePagesController#show as HTML
|
1526
48
|
Parameters: {"id"=>"minus"}
|
1527
|
-
Completed 200 OK in
|
49
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
1528
50
|
Processing by SimplePagesController#show as HTML
|
1529
51
|
Parameters: {"id"=>"testing-testing"}
|
1530
|
-
Completed 200 OK in 1ms (Views: 1.
|
52
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1531
53
|
Processing by SimplePagesController#show as HTML
|
1532
54
|
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1533
|
-
Completed 200 OK in
|
55
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1534
56
|
Processing by SimplePagesController#show as HTML
|
1535
57
|
Parameters: {"id"=>"testing-testing"}
|
1536
|
-
Completed 200 OK in 1ms (Views: 0.
|
58
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1537
59
|
Processing by SimplePagesController#show as HTML
|
1538
60
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1539
|
-
Completed 200 OK in 1ms (Views: 0.
|
61
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1540
62
|
Processing by SimplePagesController#show as HTML
|
1541
63
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1542
64
|
Completed 200 OK in 1ms (Views: 0.8ms)
|
1543
65
|
Processing by I18nSimplePagesController#show as HTML
|
1544
66
|
Parameters: {"id"=>"contact"}
|
1545
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.
|
1546
|
-
Completed 200 OK in 85ms (Views: 11.
|
67
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.1ms)
|
68
|
+
Completed 200 OK in 85ms (Views: 11.7ms)
|
1547
69
|
Processing by I18nSimplePagesController#show as HTML
|
1548
70
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1549
|
-
Completed 200 OK in
|
71
|
+
Completed 200 OK in 4ms (Views: 3.2ms)
|
1550
72
|
Processing by I18nSimplePagesController#show as HTML
|
1551
73
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1552
|
-
Completed 200 OK in 1ms (Views:
|
74
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1553
75
|
Processing by I18nSimplePagesController#show as HTML
|
1554
76
|
Parameters: {"id"=>"contato"}
|
1555
77
|
Completed 404 Not Found in 6ms (Views: 1.7ms)
|
1556
78
|
Processing by I18nSimplePagesController#show as HTML
|
1557
79
|
Parameters: {"id"=>"contato"}
|
1558
|
-
Completed 200 OK in
|
80
|
+
Completed 200 OK in 2ms (Views: 1.0ms)
|
1559
81
|
Processing by I18nSimplePagesController#show as HTML
|
1560
82
|
Parameters: {"id"=>"contato"}
|
1561
|
-
Completed 404 Not Found in
|
83
|
+
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
1562
84
|
Processing by SimplePagesController#show as HTML
|
1563
85
|
Parameters: {"id"=>"nothing"}
|
1564
|
-
Completed 404 Not Found in 3ms (Views: 1.
|
86
|
+
Completed 404 Not Found in 3ms (Views: 1.7ms)
|
1565
87
|
Processing by SimplePagesController#show as HTML
|
1566
88
|
Parameters: {"id"=>"nothing"}
|
1567
|
-
Completed 404 Not Found in
|
89
|
+
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
1568
90
|
Processing by SimplePagesController#show as HTML
|
1569
91
|
Parameters: {"id"=>"testing"}
|
1570
|
-
Completed 200 OK in
|
92
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1571
93
|
Processing by SimplePagesController#show as HTML
|
1572
94
|
Parameters: {"id"=>"testing"}
|
1573
|
-
Completed 200 OK in 2ms (Views: 1.
|
95
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
1574
96
|
Processing by SimplePagesController#show as HTML
|
1575
97
|
Parameters: {"id"=>"plus"}
|
1576
|
-
Completed 200 OK in 2ms (Views: 1.
|
98
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1577
99
|
Processing by SimplePagesController#show as HTML
|
1578
100
|
Parameters: {"id"=>"plus"}
|
1579
|
-
Completed 200 OK in
|
101
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1580
102
|
Processing by SimplePagesController#show as HTML
|
1581
103
|
Parameters: {"id"=>"plus"}
|
1582
104
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1583
105
|
Processing by SimplePagesController#show as HTML
|
1584
106
|
Parameters: {"id"=>"minus"}
|
1585
|
-
Completed 200 OK in
|
107
|
+
Completed 200 OK in 3ms (Views: 1.4ms)
|
1586
108
|
Processing by SimplePagesController#show as HTML
|
1587
109
|
Parameters: {"id"=>"minus"}
|
1588
|
-
Completed 200 OK in
|
110
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1589
111
|
Processing by SimplePagesController#show as HTML
|
1590
112
|
Parameters: {"id"=>"minus"}
|
1591
|
-
Completed 200 OK in
|
113
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1592
114
|
Processing by SimplePagesController#show as HTML
|
1593
115
|
Parameters: {"id"=>"testing-testing"}
|
1594
116
|
Completed 200 OK in 1ms (Views: 1.0ms)
|
@@ -1597,26 +119,26 @@ Processing by SimplePagesController#show as HTML
|
|
1597
119
|
Completed 200 OK in 1ms (Views: 1.0ms)
|
1598
120
|
Processing by SimplePagesController#show as HTML
|
1599
121
|
Parameters: {"id"=>"testing-testing"}
|
1600
|
-
Completed 200 OK in 1ms (Views:
|
122
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
1601
123
|
Processing by SimplePagesController#show as HTML
|
1602
124
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1603
|
-
Completed 200 OK in 1ms (Views: 0.
|
125
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1604
126
|
Processing by SimplePagesController#show as HTML
|
1605
127
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1606
|
-
Completed 200 OK in 1ms (Views: 0.
|
128
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1607
129
|
Processing by I18nSimplePagesController#show as HTML
|
1608
130
|
Parameters: {"id"=>"contact"}
|
1609
|
-
Rendered i18n_simple_pages/
|
1610
|
-
Completed
|
131
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.7ms)
|
132
|
+
Completed 200 OK in 104ms (Views: 10.2ms)
|
1611
133
|
Processing by I18nSimplePagesController#show as HTML
|
1612
134
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1613
|
-
Completed 200 OK in 3ms (Views: 2.
|
135
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
1614
136
|
Processing by I18nSimplePagesController#show as HTML
|
1615
137
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1616
138
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1617
139
|
Processing by I18nSimplePagesController#show as HTML
|
1618
140
|
Parameters: {"id"=>"contato"}
|
1619
|
-
Completed 404 Not Found in
|
141
|
+
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
1620
142
|
Processing by I18nSimplePagesController#show as HTML
|
1621
143
|
Parameters: {"id"=>"contato"}
|
1622
144
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
@@ -1625,28 +147,28 @@ Processing by I18nSimplePagesController#show as HTML
|
|
1625
147
|
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1626
148
|
Processing by SimplePagesController#show as HTML
|
1627
149
|
Parameters: {"id"=>"nothing"}
|
1628
|
-
Completed 404 Not Found in 3ms (Views: 1.
|
150
|
+
Completed 404 Not Found in 3ms (Views: 1.7ms)
|
1629
151
|
Processing by SimplePagesController#show as HTML
|
1630
152
|
Parameters: {"id"=>"nothing"}
|
1631
153
|
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1632
154
|
Processing by SimplePagesController#show as HTML
|
1633
155
|
Parameters: {"id"=>"testing"}
|
1634
|
-
Completed
|
156
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
1635
157
|
Processing by SimplePagesController#show as HTML
|
1636
158
|
Parameters: {"id"=>"testing"}
|
1637
|
-
Completed
|
159
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1638
160
|
Processing by SimplePagesController#show as HTML
|
1639
161
|
Parameters: {"id"=>"plus"}
|
1640
|
-
Completed 200 OK in
|
162
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
1641
163
|
Processing by SimplePagesController#show as HTML
|
1642
164
|
Parameters: {"id"=>"plus"}
|
1643
|
-
Completed 200 OK in 1ms (Views:
|
165
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1644
166
|
Processing by SimplePagesController#show as HTML
|
1645
167
|
Parameters: {"id"=>"plus"}
|
1646
|
-
Completed 200 OK in
|
168
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1647
169
|
Processing by SimplePagesController#show as HTML
|
1648
170
|
Parameters: {"id"=>"minus"}
|
1649
|
-
Completed 200 OK in
|
171
|
+
Completed 200 OK in 3ms (Views: 1.9ms)
|
1650
172
|
Processing by SimplePagesController#show as HTML
|
1651
173
|
Parameters: {"id"=>"minus"}
|
1652
174
|
Completed 200 OK in 1ms (Views: 0.8ms)
|
@@ -1655,32 +177,32 @@ Processing by SimplePagesController#show as HTML
|
|
1655
177
|
Completed 200 OK in 1ms (Views: 0.8ms)
|
1656
178
|
Processing by SimplePagesController#show as HTML
|
1657
179
|
Parameters: {"id"=>"testing-testing"}
|
1658
|
-
Completed
|
180
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1659
181
|
Processing by SimplePagesController#show as HTML
|
1660
182
|
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1661
|
-
Completed
|
183
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1662
184
|
Processing by SimplePagesController#show as HTML
|
1663
185
|
Parameters: {"id"=>"testing-testing"}
|
1664
|
-
Completed
|
186
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1665
187
|
Processing by SimplePagesController#show as HTML
|
1666
188
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1667
|
-
Completed
|
189
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1668
190
|
Processing by SimplePagesController#show as HTML
|
1669
191
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1670
|
-
Completed
|
192
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|
1671
193
|
Processing by I18nSimplePagesController#show as HTML
|
1672
194
|
Parameters: {"id"=>"contact"}
|
1673
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (
|
1674
|
-
Completed 200 OK in 80ms (Views:
|
195
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
196
|
+
Completed 200 OK in 80ms (Views: 10.9ms)
|
1675
197
|
Processing by I18nSimplePagesController#show as HTML
|
1676
198
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1677
|
-
Completed 200 OK in 3ms (Views: 2.
|
199
|
+
Completed 200 OK in 3ms (Views: 2.3ms)
|
1678
200
|
Processing by I18nSimplePagesController#show as HTML
|
1679
201
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1680
202
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1681
203
|
Processing by I18nSimplePagesController#show as HTML
|
1682
204
|
Parameters: {"id"=>"contato"}
|
1683
|
-
Completed 404 Not Found in 6ms (Views: 1.
|
205
|
+
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
1684
206
|
Processing by I18nSimplePagesController#show as HTML
|
1685
207
|
Parameters: {"id"=>"contato"}
|
1686
208
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
@@ -1707,16 +229,22 @@ Processing by SimplePagesController#show as HTML
|
|
1707
229
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1708
230
|
Processing by SimplePagesController#show as HTML
|
1709
231
|
Parameters: {"id"=>"plus"}
|
1710
|
-
Completed 200 OK in 1ms (Views:
|
232
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1711
233
|
Processing by SimplePagesController#show as HTML
|
1712
234
|
Parameters: {"id"=>"minus"}
|
1713
235
|
Completed 200 OK in 3ms (Views: 1.5ms)
|
1714
236
|
Processing by SimplePagesController#show as HTML
|
1715
237
|
Parameters: {"id"=>"minus"}
|
1716
|
-
Completed 200 OK in
|
238
|
+
Completed 200 OK in 2ms (Views: 1.0ms)
|
1717
239
|
Processing by SimplePagesController#show as HTML
|
1718
240
|
Parameters: {"id"=>"minus"}
|
1719
|
-
Completed 200 OK in
|
241
|
+
Completed 200 OK in 2ms (Views: 0.9ms)
|
242
|
+
Processing by SimplePagesController#show as HTML
|
243
|
+
Parameters: {"id"=>nil}
|
244
|
+
Completed 500 Internal Server Error in 0ms
|
245
|
+
Processing by SimplePagesController#show as HTML
|
246
|
+
Parameters: {"id"=>nil}
|
247
|
+
Completed 500 Internal Server Error in 0ms
|
1720
248
|
Processing by SimplePagesController#show as HTML
|
1721
249
|
Parameters: {"id"=>"testing-testing"}
|
1722
250
|
Completed 200 OK in 1ms (Views: 1.0ms)
|
@@ -1725,20 +253,20 @@ Processing by SimplePagesController#show as HTML
|
|
1725
253
|
Completed 200 OK in 1ms (Views: 1.0ms)
|
1726
254
|
Processing by SimplePagesController#show as HTML
|
1727
255
|
Parameters: {"id"=>"testing-testing"}
|
1728
|
-
Completed 200 OK in
|
256
|
+
Completed 200 OK in 2ms (Views: 1.1ms)
|
1729
257
|
Processing by SimplePagesController#show as HTML
|
1730
258
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1731
|
-
Completed 200 OK in
|
259
|
+
Completed 200 OK in 2ms (Views: 1.1ms)
|
1732
260
|
Processing by SimplePagesController#show as HTML
|
1733
261
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1734
262
|
Completed 200 OK in 1ms (Views: 0.7ms)
|
1735
263
|
Processing by I18nSimplePagesController#show as HTML
|
1736
264
|
Parameters: {"id"=>"contact"}
|
1737
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (
|
1738
|
-
Completed 200 OK in
|
265
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
266
|
+
Completed 200 OK in 83ms (Views: 11.0ms)
|
1739
267
|
Processing by I18nSimplePagesController#show as HTML
|
1740
268
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1741
|
-
Completed 200 OK in 3ms (Views: 2.
|
269
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1742
270
|
Processing by I18nSimplePagesController#show as HTML
|
1743
271
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1744
272
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
@@ -1747,25 +275,25 @@ Processing by I18nSimplePagesController#show as HTML
|
|
1747
275
|
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
1748
276
|
Processing by I18nSimplePagesController#show as HTML
|
1749
277
|
Parameters: {"id"=>"contato"}
|
1750
|
-
Completed 200 OK in
|
278
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1751
279
|
Processing by I18nSimplePagesController#show as HTML
|
1752
280
|
Parameters: {"id"=>"contato"}
|
1753
281
|
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1754
282
|
Processing by SimplePagesController#show as HTML
|
1755
283
|
Parameters: {"id"=>"nothing"}
|
1756
|
-
Completed 404 Not Found in 3ms (Views: 1.
|
284
|
+
Completed 404 Not Found in 3ms (Views: 1.7ms)
|
1757
285
|
Processing by SimplePagesController#show as HTML
|
1758
286
|
Parameters: {"id"=>"nothing"}
|
1759
|
-
Completed 404 Not Found in
|
287
|
+
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1760
288
|
Processing by SimplePagesController#show as HTML
|
1761
289
|
Parameters: {"id"=>"testing"}
|
1762
|
-
Completed 200 OK in
|
290
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1763
291
|
Processing by SimplePagesController#show as HTML
|
1764
292
|
Parameters: {"id"=>"testing"}
|
1765
|
-
Completed 200 OK in
|
293
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1766
294
|
Processing by SimplePagesController#show as HTML
|
1767
295
|
Parameters: {"id"=>"plus"}
|
1768
|
-
Completed 200 OK in 2ms (Views:
|
296
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
1769
297
|
Processing by SimplePagesController#show as HTML
|
1770
298
|
Parameters: {"id"=>"plus"}
|
1771
299
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
@@ -1774,13 +302,19 @@ Processing by SimplePagesController#show as HTML
|
|
1774
302
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1775
303
|
Processing by SimplePagesController#show as HTML
|
1776
304
|
Parameters: {"id"=>"minus"}
|
1777
|
-
Completed 200 OK in 3ms (Views:
|
305
|
+
Completed 200 OK in 3ms (Views: 2.0ms)
|
1778
306
|
Processing by SimplePagesController#show as HTML
|
1779
307
|
Parameters: {"id"=>"minus"}
|
1780
|
-
Completed 200 OK in
|
308
|
+
Completed 200 OK in 2ms (Views: 0.9ms)
|
1781
309
|
Processing by SimplePagesController#show as HTML
|
1782
310
|
Parameters: {"id"=>"minus"}
|
1783
311
|
Completed 200 OK in 1ms (Views: 0.8ms)
|
312
|
+
Processing by SimplePagesController#show as HTML
|
313
|
+
Parameters: {"id"=>nil}
|
314
|
+
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
315
|
+
Processing by SimplePagesController#show as HTML
|
316
|
+
Parameters: {"id"=>nil}
|
317
|
+
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1784
318
|
Processing by SimplePagesController#show as HTML
|
1785
319
|
Parameters: {"id"=>"testing-testing"}
|
1786
320
|
Completed 200 OK in 1ms (Views: 1.0ms)
|
@@ -1789,44 +323,44 @@ Processing by SimplePagesController#show as HTML
|
|
1789
323
|
Completed 200 OK in 1ms (Views: 1.0ms)
|
1790
324
|
Processing by SimplePagesController#show as HTML
|
1791
325
|
Parameters: {"id"=>"testing-testing"}
|
1792
|
-
Completed 200 OK in 1ms (Views: 0.
|
326
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1793
327
|
Processing by SimplePagesController#show as HTML
|
1794
328
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1795
|
-
Completed 200 OK in 1ms (Views: 0.
|
329
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1796
330
|
Processing by SimplePagesController#show as HTML
|
1797
331
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1798
|
-
Completed 200 OK in 1ms (Views: 0.
|
332
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1799
333
|
Processing by I18nSimplePagesController#show as HTML
|
1800
334
|
Parameters: {"id"=>"contact"}
|
1801
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (
|
1802
|
-
Completed 200 OK in
|
335
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (2.9ms)
|
336
|
+
Completed 200 OK in 82ms (Views: 13.8ms)
|
1803
337
|
Processing by I18nSimplePagesController#show as HTML
|
1804
338
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1805
|
-
Completed 200 OK in 3ms (Views: 2.
|
339
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
1806
340
|
Processing by I18nSimplePagesController#show as HTML
|
1807
341
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1808
|
-
Completed 200 OK in 1ms (Views:
|
342
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1809
343
|
Processing by I18nSimplePagesController#show as HTML
|
1810
344
|
Parameters: {"id"=>"contato"}
|
1811
|
-
Completed 404 Not Found in
|
345
|
+
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
1812
346
|
Processing by I18nSimplePagesController#show as HTML
|
1813
347
|
Parameters: {"id"=>"contato"}
|
1814
348
|
Completed 200 OK in 2ms (Views: 1.0ms)
|
1815
349
|
Processing by I18nSimplePagesController#show as HTML
|
1816
350
|
Parameters: {"id"=>"contato"}
|
1817
|
-
Completed 404 Not Found in
|
351
|
+
Completed 404 Not Found in 2ms (Views: 1.3ms)
|
1818
352
|
Processing by SimplePagesController#show as HTML
|
1819
353
|
Parameters: {"id"=>"nothing"}
|
1820
|
-
Completed 404 Not Found in
|
354
|
+
Completed 404 Not Found in 3ms (Views: 1.6ms)
|
1821
355
|
Processing by SimplePagesController#show as HTML
|
1822
356
|
Parameters: {"id"=>"nothing"}
|
1823
|
-
Completed 404 Not Found in
|
357
|
+
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
1824
358
|
Processing by SimplePagesController#show as HTML
|
1825
359
|
Parameters: {"id"=>"testing"}
|
1826
|
-
Completed 200 OK in 2ms (Views: 1.
|
360
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1827
361
|
Processing by SimplePagesController#show as HTML
|
1828
362
|
Parameters: {"id"=>"testing"}
|
1829
|
-
Completed 200 OK in
|
363
|
+
Completed 200 OK in 2ms (Views: 1.2ms)
|
1830
364
|
Processing by SimplePagesController#show as HTML
|
1831
365
|
Parameters: {"id"=>"plus"}
|
1832
366
|
Completed 200 OK in 2ms (Views: 1.8ms)
|
@@ -1835,161 +369,181 @@ Processing by SimplePagesController#show as HTML
|
|
1835
369
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1836
370
|
Processing by SimplePagesController#show as HTML
|
1837
371
|
Parameters: {"id"=>"plus"}
|
1838
|
-
Completed 200 OK in 1ms (Views:
|
372
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1839
373
|
Processing by SimplePagesController#show as HTML
|
1840
374
|
Parameters: {"id"=>"minus"}
|
1841
|
-
Completed 200 OK in 3ms (Views: 1.
|
375
|
+
Completed 200 OK in 3ms (Views: 1.4ms)
|
1842
376
|
Processing by SimplePagesController#show as HTML
|
1843
377
|
Parameters: {"id"=>"minus"}
|
1844
|
-
Completed 200 OK in 2ms (Views: 0.
|
378
|
+
Completed 200 OK in 2ms (Views: 0.9ms)
|
1845
379
|
Processing by SimplePagesController#show as HTML
|
1846
380
|
Parameters: {"id"=>"minus"}
|
1847
381
|
Completed 200 OK in 2ms (Views: 0.9ms)
|
382
|
+
Processing by SimplePagesController#show as HTML
|
383
|
+
Parameters: {"id"=>nil}
|
384
|
+
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
385
|
+
Processing by SimplePagesController#show as HTML
|
386
|
+
Parameters: {"id"=>nil}
|
387
|
+
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
1848
388
|
Processing by SimplePagesController#show as HTML
|
1849
389
|
Parameters: {"id"=>"testing-testing"}
|
1850
|
-
Completed 200 OK in
|
390
|
+
Completed 200 OK in 2ms (Views: 1.3ms)
|
1851
391
|
Processing by SimplePagesController#show as HTML
|
1852
392
|
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1853
393
|
Completed 200 OK in 1ms (Views: 1.1ms)
|
1854
394
|
Processing by SimplePagesController#show as HTML
|
1855
395
|
Parameters: {"id"=>"testing-testing"}
|
1856
|
-
Completed 200 OK in 1ms (Views: 0.
|
396
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1857
397
|
Processing by SimplePagesController#show as HTML
|
1858
398
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1859
|
-
Completed 200 OK in
|
399
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1860
400
|
Processing by SimplePagesController#show as HTML
|
1861
401
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1862
|
-
Completed 200 OK in
|
402
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1863
403
|
Processing by I18nSimplePagesController#show as HTML
|
1864
404
|
Parameters: {"id"=>"contact"}
|
1865
|
-
|
405
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
406
|
+
Completed 200 OK in 82ms (Views: 11.1ms)
|
1866
407
|
Processing by I18nSimplePagesController#show as HTML
|
1867
408
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1868
|
-
Completed
|
409
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1869
410
|
Processing by I18nSimplePagesController#show as HTML
|
1870
411
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1871
|
-
Completed
|
412
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1872
413
|
Processing by I18nSimplePagesController#show as HTML
|
1873
414
|
Parameters: {"id"=>"contato"}
|
1874
|
-
Completed
|
415
|
+
Completed 404 Not Found in 6ms (Views: 1.7ms)
|
1875
416
|
Processing by I18nSimplePagesController#show as HTML
|
1876
417
|
Parameters: {"id"=>"contato"}
|
1877
|
-
Completed
|
418
|
+
Completed 200 OK in 2ms (Views: 1.0ms)
|
1878
419
|
Processing by I18nSimplePagesController#show as HTML
|
1879
420
|
Parameters: {"id"=>"contato"}
|
1880
|
-
Completed
|
421
|
+
Completed 404 Not Found in 2ms (Views: 1.4ms)
|
1881
422
|
Processing by SimplePagesController#show as HTML
|
1882
423
|
Parameters: {"id"=>"nothing"}
|
1883
|
-
Completed
|
424
|
+
Completed 404 Not Found in 5ms (Views: 2.1ms)
|
1884
425
|
Processing by SimplePagesController#show as HTML
|
1885
426
|
Parameters: {"id"=>"nothing"}
|
1886
|
-
Completed
|
427
|
+
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
1887
428
|
Processing by SimplePagesController#show as HTML
|
1888
429
|
Parameters: {"id"=>"testing"}
|
1889
|
-
Completed
|
430
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
1890
431
|
Processing by SimplePagesController#show as HTML
|
1891
432
|
Parameters: {"id"=>"testing"}
|
1892
|
-
Completed
|
433
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1893
434
|
Processing by SimplePagesController#show as HTML
|
1894
435
|
Parameters: {"id"=>"plus"}
|
1895
|
-
Completed
|
436
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
1896
437
|
Processing by SimplePagesController#show as HTML
|
1897
438
|
Parameters: {"id"=>"plus"}
|
1898
|
-
Completed
|
439
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1899
440
|
Processing by SimplePagesController#show as HTML
|
1900
441
|
Parameters: {"id"=>"plus"}
|
1901
|
-
Completed
|
442
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1902
443
|
Processing by SimplePagesController#show as HTML
|
1903
444
|
Parameters: {"id"=>"minus"}
|
1904
|
-
Completed
|
445
|
+
Completed 200 OK in 3ms (Views: 1.4ms)
|
1905
446
|
Processing by SimplePagesController#show as HTML
|
1906
447
|
Parameters: {"id"=>"minus"}
|
1907
|
-
Completed
|
448
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1908
449
|
Processing by SimplePagesController#show as HTML
|
1909
450
|
Parameters: {"id"=>"minus"}
|
1910
|
-
Completed
|
451
|
+
Completed 200 OK in 2ms (Views: 0.9ms)
|
452
|
+
Processing by SimplePagesController#show as HTML
|
453
|
+
Parameters: {"id"=>nil}
|
454
|
+
Completed 404 Not Found in 2ms (Views: 0.9ms)
|
455
|
+
Processing by SimplePagesController#show as HTML
|
456
|
+
Parameters: {"id"=>nil}
|
457
|
+
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
1911
458
|
Processing by SimplePagesController#show as HTML
|
1912
459
|
Parameters: {"id"=>"testing-testing"}
|
1913
|
-
Completed
|
460
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1914
461
|
Processing by SimplePagesController#show as HTML
|
1915
462
|
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1916
|
-
Completed
|
463
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1917
464
|
Processing by SimplePagesController#show as HTML
|
1918
465
|
Parameters: {"id"=>"testing-testing"}
|
1919
|
-
Completed
|
466
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1920
467
|
Processing by SimplePagesController#show as HTML
|
1921
468
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1922
|
-
Completed
|
469
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1923
470
|
Processing by SimplePagesController#show as HTML
|
1924
471
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1925
|
-
Completed
|
472
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1926
473
|
Processing by I18nSimplePagesController#show as HTML
|
1927
474
|
Parameters: {"id"=>"contact"}
|
1928
|
-
|
475
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.9ms)
|
476
|
+
Completed 200 OK in 80ms (Views: 10.8ms)
|
1929
477
|
Processing by I18nSimplePagesController#show as HTML
|
1930
478
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1931
|
-
Completed
|
479
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
1932
480
|
Processing by I18nSimplePagesController#show as HTML
|
1933
481
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1934
|
-
Completed
|
482
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1935
483
|
Processing by I18nSimplePagesController#show as HTML
|
1936
484
|
Parameters: {"id"=>"contato"}
|
1937
|
-
Completed
|
485
|
+
Completed 404 Not Found in 6ms (Views: 1.6ms)
|
1938
486
|
Processing by I18nSimplePagesController#show as HTML
|
1939
487
|
Parameters: {"id"=>"contato"}
|
1940
|
-
Completed
|
488
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1941
489
|
Processing by I18nSimplePagesController#show as HTML
|
1942
490
|
Parameters: {"id"=>"contato"}
|
1943
|
-
Completed
|
491
|
+
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
1944
492
|
Processing by SimplePagesController#show as HTML
|
1945
493
|
Parameters: {"id"=>"nothing"}
|
1946
|
-
Completed
|
494
|
+
Completed 404 Not Found in 4ms (Views: 1.8ms)
|
1947
495
|
Processing by SimplePagesController#show as HTML
|
1948
496
|
Parameters: {"id"=>"nothing"}
|
1949
|
-
Completed
|
497
|
+
Completed 404 Not Found in 2ms (Views: 0.8ms)
|
1950
498
|
Processing by SimplePagesController#show as HTML
|
1951
499
|
Parameters: {"id"=>"testing"}
|
1952
|
-
Completed
|
500
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
1953
501
|
Processing by SimplePagesController#show as HTML
|
1954
502
|
Parameters: {"id"=>"testing"}
|
1955
|
-
Completed
|
503
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1956
504
|
Processing by SimplePagesController#show as HTML
|
1957
505
|
Parameters: {"id"=>"plus"}
|
1958
|
-
Completed
|
506
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
1959
507
|
Processing by SimplePagesController#show as HTML
|
1960
508
|
Parameters: {"id"=>"plus"}
|
1961
|
-
Completed
|
509
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1962
510
|
Processing by SimplePagesController#show as HTML
|
1963
511
|
Parameters: {"id"=>"plus"}
|
1964
|
-
Completed
|
512
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
1965
513
|
Processing by SimplePagesController#show as HTML
|
1966
514
|
Parameters: {"id"=>"minus"}
|
1967
|
-
Completed
|
515
|
+
Completed 200 OK in 3ms (Views: 1.5ms)
|
1968
516
|
Processing by SimplePagesController#show as HTML
|
1969
517
|
Parameters: {"id"=>"minus"}
|
1970
|
-
Completed
|
518
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
1971
519
|
Processing by SimplePagesController#show as HTML
|
1972
520
|
Parameters: {"id"=>"minus"}
|
1973
|
-
Completed
|
521
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
522
|
+
Processing by SimplePagesController#show as HTML
|
523
|
+
Parameters: {"id"=>nil}
|
524
|
+
Completed 500 Internal Server Error in 68ms
|
525
|
+
Processing by SimplePagesController#show as HTML
|
526
|
+
Parameters: {"id"=>nil}
|
527
|
+
Completed 500 Internal Server Error in 63ms
|
1974
528
|
Processing by SimplePagesController#show as HTML
|
1975
529
|
Parameters: {"id"=>"testing-testing"}
|
1976
|
-
Completed
|
530
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1977
531
|
Processing by SimplePagesController#show as HTML
|
1978
532
|
Parameters: {"id"=>"são-paulo-ribeirão"}
|
1979
|
-
Completed
|
533
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
1980
534
|
Processing by SimplePagesController#show as HTML
|
1981
535
|
Parameters: {"id"=>"testing-testing"}
|
1982
|
-
Completed
|
536
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
1983
537
|
Processing by SimplePagesController#show as HTML
|
1984
538
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
1985
|
-
Completed
|
539
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1986
540
|
Processing by SimplePagesController#show as HTML
|
1987
541
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
1988
|
-
Completed
|
542
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
1989
543
|
Processing by I18nSimplePagesController#show as HTML
|
1990
544
|
Parameters: {"id"=>"contact"}
|
1991
|
-
Rendered i18n_simple_pages/contact.html.erb within layouts/application (
|
1992
|
-
Completed 200 OK in
|
545
|
+
Rendered i18n_simple_pages/contact.html.erb within layouts/application (1.6ms)
|
546
|
+
Completed 200 OK in 100ms (Views: 9.4ms)
|
1993
547
|
Processing by I18nSimplePagesController#show as HTML
|
1994
548
|
Parameters: {"locale"=>"pt", "id"=>"contato"}
|
1995
549
|
Completed 200 OK in 3ms (Views: 2.4ms)
|
@@ -1998,7 +552,7 @@ Processing by I18nSimplePagesController#show as HTML
|
|
1998
552
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
1999
553
|
Processing by I18nSimplePagesController#show as HTML
|
2000
554
|
Parameters: {"id"=>"contato"}
|
2001
|
-
Completed 404 Not Found in
|
555
|
+
Completed 404 Not Found in 5ms (Views: 1.5ms)
|
2002
556
|
Processing by I18nSimplePagesController#show as HTML
|
2003
557
|
Parameters: {"id"=>"contato"}
|
2004
558
|
Completed 200 OK in 1ms (Views: 0.9ms)
|
@@ -2007,13 +561,13 @@ Processing by I18nSimplePagesController#show as HTML
|
|
2007
561
|
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
2008
562
|
Processing by SimplePagesController#show as HTML
|
2009
563
|
Parameters: {"id"=>"nothing"}
|
2010
|
-
Completed 404 Not Found in 3ms (Views: 1.
|
564
|
+
Completed 404 Not Found in 3ms (Views: 1.6ms)
|
2011
565
|
Processing by SimplePagesController#show as HTML
|
2012
566
|
Parameters: {"id"=>"nothing"}
|
2013
|
-
Completed 404 Not Found in
|
567
|
+
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
2014
568
|
Processing by SimplePagesController#show as HTML
|
2015
569
|
Parameters: {"id"=>"testing"}
|
2016
|
-
Completed 200 OK in
|
570
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
2017
571
|
Processing by SimplePagesController#show as HTML
|
2018
572
|
Parameters: {"id"=>"testing"}
|
2019
573
|
Completed 200 OK in 1ms (Views: 1.0ms)
|
@@ -2022,31 +576,37 @@ Processing by SimplePagesController#show as HTML
|
|
2022
576
|
Completed 200 OK in 2ms (Views: 1.6ms)
|
2023
577
|
Processing by SimplePagesController#show as HTML
|
2024
578
|
Parameters: {"id"=>"plus"}
|
2025
|
-
Completed 200 OK in
|
579
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
2026
580
|
Processing by SimplePagesController#show as HTML
|
2027
581
|
Parameters: {"id"=>"plus"}
|
2028
|
-
Completed 200 OK in
|
582
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
2029
583
|
Processing by SimplePagesController#show as HTML
|
2030
584
|
Parameters: {"id"=>"minus"}
|
2031
|
-
Completed 200 OK in 3ms (Views: 1.
|
585
|
+
Completed 200 OK in 3ms (Views: 1.6ms)
|
2032
586
|
Processing by SimplePagesController#show as HTML
|
2033
587
|
Parameters: {"id"=>"minus"}
|
2034
|
-
Completed 200 OK in
|
588
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
2035
589
|
Processing by SimplePagesController#show as HTML
|
2036
590
|
Parameters: {"id"=>"minus"}
|
2037
|
-
Completed 200 OK in
|
591
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
592
|
+
Processing by SimplePagesController#show as HTML
|
593
|
+
Parameters: {"id"=>nil}
|
594
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
595
|
+
Processing by SimplePagesController#show as HTML
|
596
|
+
Parameters: {"id"=>nil}
|
597
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
2038
598
|
Processing by SimplePagesController#show as HTML
|
2039
599
|
Parameters: {"id"=>"testing-testing"}
|
2040
|
-
Completed 200 OK in
|
600
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
2041
601
|
Processing by SimplePagesController#show as HTML
|
2042
602
|
Parameters: {"id"=>"são-paulo-ribeirão"}
|
2043
603
|
Completed 200 OK in 2ms (Views: 1.2ms)
|
2044
604
|
Processing by SimplePagesController#show as HTML
|
2045
605
|
Parameters: {"id"=>"testing-testing"}
|
2046
|
-
Completed 200 OK in 1ms (Views:
|
606
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
2047
607
|
Processing by SimplePagesController#show as HTML
|
2048
608
|
Parameters: {"id"=>"são-paulo_ribeirão"}
|
2049
|
-
Completed 200 OK in 1ms (Views: 0.
|
609
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
2050
610
|
Processing by SimplePagesController#show as HTML
|
2051
611
|
Parameters: {"id"=>"são-paulo%20ribeirão"}
|
2052
|
-
Completed 200 OK in 1ms (Views: 0.
|
612
|
+
Completed 200 OK in 1ms (Views: 0.6ms)
|