lolita 3.3.0 → 3.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/assets/javascripts/lolita/tab.js +1 -0
- data/lib/lolita/adapter/common_helper.rb +16 -23
- data/lib/lolita/version.rb +1 -1
- data/spec/adapter/common_helper_spec.rb +2 -2
- data/spec/rails_app/log/development.log +544 -0
- data/spec/support/formatter_spec.rb +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e316e004610480a0f99a5bd843f260c03b09ebba
|
4
|
+
data.tar.gz: f9c5d00c4ade03a2a38e07717aea73f95ad5462f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91a1eae8478ba56a35211e8d9b8fc9de0da63d31638f17fe91aee8294a6661f463b33b835dcdce3f59f82b54897840149f5af576bffaecaab3bd657a04ab25d8
|
7
|
+
data.tar.gz: 4a1480a82243c05baad3a251c0c86baf5fbd7419274fdb293f089f52876b873d30efe04318460e2db81580ef7747c0c818c9531a2823dac9745b681c11c5ff64
|
data/README.md
CHANGED
@@ -76,6 +76,7 @@ $(function(){
|
|
76
76
|
var $id_holder = $(this).parents(".autocomplete-container").eq(0).find("input[type=hidden]").eq(0);
|
77
77
|
if($id_holder){
|
78
78
|
$id_holder.val(ui.item.id);
|
79
|
+
$id_holder.trigger('change')
|
79
80
|
}
|
80
81
|
} else {
|
81
82
|
var li = $("<li></li>").appendTo($(this).parents(".autocomplete-container").eq(0).find("ul"));
|
@@ -39,19 +39,19 @@ module Lolita
|
|
39
39
|
|
40
40
|
def nested_criteria
|
41
41
|
nested_hsh = params[:nested]
|
42
|
-
if params[:nested] && !params[:nested][:association]
|
42
|
+
@nested_criteria ||= if params[:nested] && !params[:nested][:association]
|
43
43
|
nested_hsh = nested_hsh.reject{|k,v| [:parent,:path].include?(k.to_sym)}
|
44
44
|
@adapter.klass.where(nested_hsh)
|
45
45
|
else
|
46
|
-
|
46
|
+
nil
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
50
|
def ability_criteria
|
51
|
-
if @adapter.klass.respond_to?(:accessible_by)
|
51
|
+
@ability_criteria ||= if @adapter.klass.respond_to?(:accessible_by)
|
52
52
|
@adapter.klass.accessible_by(current_ability)
|
53
53
|
else
|
54
|
-
|
54
|
+
nil
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
@@ -64,35 +64,28 @@ module Lolita
|
|
64
64
|
end
|
65
65
|
|
66
66
|
def custom_criteria
|
67
|
-
if @options[:pagination_method]
|
68
|
-
|
69
|
-
@options[:pagination_method].each do |method_name|
|
70
|
-
@options[:previous_scope] = scope
|
71
|
-
if new_criteria = pagination_criteria_for_klass(method_name,@page,@per,@options)
|
72
|
-
@custom_criteria = @custom_criteria ? @custom_criteria.merge(new_criteria) : new_criteria
|
73
|
-
end
|
74
|
-
end
|
75
|
-
else
|
76
|
-
@custom_criteria = pagination_scope_for_klass(@options[:pagination_method],@page,@per,@options)
|
77
|
-
end
|
78
|
-
unless @custom_criteria
|
79
|
-
raise ArgumentError, "Didn't generate any scope from #{@options} page:{page} per:#{@per}"
|
80
|
-
else
|
81
|
-
@custom_criteria
|
82
|
-
end
|
67
|
+
@custom_criteria ||= if @options[:pagination_method]
|
68
|
+
pagination_scope_for_klass(@options[:pagination_method], @page, @per, @options)
|
83
69
|
else
|
84
|
-
|
70
|
+
nil
|
85
71
|
end
|
86
72
|
end
|
87
73
|
|
88
|
-
def pagination_scope_for_klass(method_name,page,per,options)
|
74
|
+
def pagination_scope_for_klass(method_name, page, per, options)
|
89
75
|
if @adapter.klass.respond_to?(method_name)
|
90
76
|
@adapter.klass.send(method_name,page,per,options)
|
91
77
|
end
|
92
78
|
end
|
93
79
|
|
94
80
|
def create_page
|
95
|
-
page_criteria = relation.merge(
|
81
|
+
page_criteria = ability_criteria ? relation.merge(ability_criteria) : relation
|
82
|
+
page_criteria = if nested_criteria
|
83
|
+
page_criteria.merge(nested_criteria)
|
84
|
+
elsif custom_criteria
|
85
|
+
custom_criteria.merge(page_criteria)
|
86
|
+
else
|
87
|
+
page_criteria
|
88
|
+
end
|
96
89
|
unless page_criteria.respond_to?(:current_page)
|
97
90
|
page_criteria = page_criteria.order(sorting).page(@page).per(@per)
|
98
91
|
end
|
data/lib/lolita/version.rb
CHANGED
@@ -64,13 +64,13 @@ describe Lolita::Adapter::CommonHelper do
|
|
64
64
|
end
|
65
65
|
end
|
66
66
|
context "without nested params" do
|
67
|
-
its(:nested_criteria){ should
|
67
|
+
its(:nested_criteria){ should be_nil }
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
71
|
describe '#ability_criteria' do
|
72
72
|
context "without" do
|
73
|
-
its(:ability_criteria){ should
|
73
|
+
its(:ability_criteria){ should be_nil }
|
74
74
|
end
|
75
75
|
|
76
76
|
context "with abilities" do
|
@@ -13177,3 +13177,547 @@ Processing by Lolita::RestController#index as HTML
|
|
13177
13177
|
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.8ms)
|
13178
13178
|
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.1ms)
|
13179
13179
|
Completed 200 OK in 52ms (Views: 49.8ms)
|
13180
|
+
Processing by Lolita::RestController#index as HTML
|
13181
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (136.6ms)
|
13182
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (2.4ms)
|
13183
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (1.5ms)
|
13184
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.9ms)
|
13185
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (7.5ms)
|
13186
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (1.4ms)
|
13187
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (13.4ms)
|
13188
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (2.7ms)
|
13189
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (164.5ms)
|
13190
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (1.2ms)
|
13191
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (1.2ms)
|
13192
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (4.3ms)
|
13193
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (2.4ms)
|
13194
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (4.8ms)
|
13195
|
+
Completed 200 OK in 576ms (Views: 573.6ms)
|
13196
|
+
Processing by Lolita::RestController#new as HTML
|
13197
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (1.3ms)
|
13198
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (2.0ms)
|
13199
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13200
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (9.8ms)
|
13201
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (13.9ms)
|
13202
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (1.3ms)
|
13203
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (1.6ms)
|
13204
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (1.2ms)
|
13205
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.9ms)
|
13206
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (7.3ms)
|
13207
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.7ms)
|
13208
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.4ms)
|
13209
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.6ms)
|
13210
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13211
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (1.0ms)
|
13212
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.1ms)
|
13213
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13214
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13215
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (2.3ms)
|
13216
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.2ms)
|
13217
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13218
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (3.9ms)
|
13219
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (8.2ms)
|
13220
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13221
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (52.2ms)
|
13222
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (57.4ms)
|
13223
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13224
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13225
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.2ms)
|
13226
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13227
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (1.9ms)
|
13228
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (5.7ms)
|
13229
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (9.6ms)
|
13230
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13231
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13232
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.1ms)
|
13233
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (119.7ms)
|
13234
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (122.4ms)
|
13235
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (125.0ms)
|
13236
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (131.9ms)
|
13237
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (137.9ms)
|
13238
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (162.1ms)
|
13239
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13240
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13241
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.4ms)
|
13242
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (1.0ms)
|
13243
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.3ms)
|
13244
|
+
Completed 200 OK in 198ms (Views: 196.6ms)
|
13245
|
+
Processing by Lolita::RestController#new as HTML
|
13246
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13247
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13248
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13249
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (5.2ms)
|
13250
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (6.6ms)
|
13251
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (0.3ms)
|
13252
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (0.1ms)
|
13253
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.7ms)
|
13254
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13255
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.5ms)
|
13256
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13257
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.6ms)
|
13258
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.4ms)
|
13259
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (1.0ms)
|
13260
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (0.5ms)
|
13261
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.0ms)
|
13262
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13263
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13264
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (1.7ms)
|
13265
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.3ms)
|
13266
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13267
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (3.2ms)
|
13268
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.9ms)
|
13269
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13270
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (1.6ms)
|
13271
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.3ms)
|
13272
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13273
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13274
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.8ms)
|
13275
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13276
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (0.6ms)
|
13277
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (2.4ms)
|
13278
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.0ms)
|
13279
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13280
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.4ms)
|
13281
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.6ms)
|
13282
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (59.5ms)
|
13283
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (61.2ms)
|
13284
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (63.1ms)
|
13285
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (66.5ms)
|
13286
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (70.9ms)
|
13287
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (82.5ms)
|
13288
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13289
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13290
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.7ms)
|
13291
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (1.0ms)
|
13292
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.3ms)
|
13293
|
+
Completed 200 OK in 120ms (Views: 118.2ms)
|
13294
|
+
Processing by Lolita::RestController#index as HTML
|
13295
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (0.3ms)
|
13296
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (1.0ms)
|
13297
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (0.4ms)
|
13298
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.2ms)
|
13299
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (3.4ms)
|
13300
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (0.6ms)
|
13301
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (7.0ms)
|
13302
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (1.3ms)
|
13303
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (15.8ms)
|
13304
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13305
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13306
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.6ms)
|
13307
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.9ms)
|
13308
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.2ms)
|
13309
|
+
Completed 200 OK in 52ms (Views: 50.2ms)
|
13310
|
+
Processing by Lolita::RestController#index as HTML
|
13311
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (0.4ms)
|
13312
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (1.0ms)
|
13313
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (0.4ms)
|
13314
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.2ms)
|
13315
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (3.4ms)
|
13316
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (0.6ms)
|
13317
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (7.1ms)
|
13318
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (1.5ms)
|
13319
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (16.8ms)
|
13320
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13321
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13322
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.6ms)
|
13323
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.8ms)
|
13324
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.2ms)
|
13325
|
+
Completed 200 OK in 58ms (Views: 54.7ms)
|
13326
|
+
Processing by Lolita::RestController#index as HTML
|
13327
|
+
Completed 500 Internal Server Error in 2ms
|
13328
|
+
Processing by Lolita::RestController#new as HTML
|
13329
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (1.0ms)
|
13330
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.9ms)
|
13331
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13332
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (7.2ms)
|
13333
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (9.8ms)
|
13334
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (1.1ms)
|
13335
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (1.5ms)
|
13336
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (1.1ms)
|
13337
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.8ms)
|
13338
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.8ms)
|
13339
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13340
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13341
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.7ms)
|
13342
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13343
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (0.9ms)
|
13344
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.5ms)
|
13345
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13346
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13347
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (2.0ms)
|
13348
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.6ms)
|
13349
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13350
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (3.5ms)
|
13351
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (7.4ms)
|
13352
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13353
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (2.6ms)
|
13354
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.4ms)
|
13355
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13356
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13357
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.8ms)
|
13358
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13359
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (1.7ms)
|
13360
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (5.2ms)
|
13361
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (8.8ms)
|
13362
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13363
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13364
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.7ms)
|
13365
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (62.7ms)
|
13366
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (65.3ms)
|
13367
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (67.9ms)
|
13368
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (74.1ms)
|
13369
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (79.6ms)
|
13370
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (97.2ms)
|
13371
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (1.1ms)
|
13372
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (1.2ms)
|
13373
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (3.9ms)
|
13374
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (52.4ms)
|
13375
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (54.7ms)
|
13376
|
+
Completed 200 OK in 220ms (Views: 218.6ms)
|
13377
|
+
Processing by Lolita::RestController#new as HTML
|
13378
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13379
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13380
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13381
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (4.9ms)
|
13382
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (6.4ms)
|
13383
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (0.3ms)
|
13384
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (0.1ms)
|
13385
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13386
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13387
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.2ms)
|
13388
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13389
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.4ms)
|
13390
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.0ms)
|
13391
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13392
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (0.3ms)
|
13393
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.2ms)
|
13394
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13395
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.4ms)
|
13396
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (1.7ms)
|
13397
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.5ms)
|
13398
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13399
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (3.1ms)
|
13400
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (7.4ms)
|
13401
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13402
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (1.7ms)
|
13403
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.4ms)
|
13404
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13405
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13406
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.8ms)
|
13407
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13408
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (0.6ms)
|
13409
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (2.2ms)
|
13410
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.7ms)
|
13411
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13412
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13413
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.7ms)
|
13414
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (56.9ms)
|
13415
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (58.6ms)
|
13416
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (60.4ms)
|
13417
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (63.8ms)
|
13418
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (68.2ms)
|
13419
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (79.9ms)
|
13420
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13421
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13422
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.5ms)
|
13423
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.9ms)
|
13424
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.2ms)
|
13425
|
+
Completed 200 OK in 114ms (Views: 112.7ms)
|
13426
|
+
Processing by Lolita::RestController#index as HTML
|
13427
|
+
Completed 500 Internal Server Error in 1ms
|
13428
|
+
Processing by Lolita::RestController#index as HTML
|
13429
|
+
Completed 500 Internal Server Error in 1ms
|
13430
|
+
Processing by Lolita::RestController#index as HTML
|
13431
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (54.4ms)
|
13432
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (2.0ms)
|
13433
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (1.2ms)
|
13434
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.8ms)
|
13435
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (5.9ms)
|
13436
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (1.3ms)
|
13437
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (10.9ms)
|
13438
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (2.5ms)
|
13439
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (78.4ms)
|
13440
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (1.1ms)
|
13441
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (1.0ms)
|
13442
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (3.7ms)
|
13443
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (2.1ms)
|
13444
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (4.1ms)
|
13445
|
+
Completed 200 OK in 150ms (Views: 146.9ms)
|
13446
|
+
Processing by Lolita::RestController#new as HTML
|
13447
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (1.0ms)
|
13448
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.9ms)
|
13449
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13450
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (7.2ms)
|
13451
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (10.1ms)
|
13452
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (1.0ms)
|
13453
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (1.8ms)
|
13454
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (1.1ms)
|
13455
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.8ms)
|
13456
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.8ms)
|
13457
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.4ms)
|
13458
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13459
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.7ms)
|
13460
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13461
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (0.9ms)
|
13462
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.5ms)
|
13463
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13464
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13465
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (2.1ms)
|
13466
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.8ms)
|
13467
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13468
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (3.7ms)
|
13469
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (7.6ms)
|
13470
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13471
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (2.7ms)
|
13472
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.5ms)
|
13473
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13474
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13475
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.0ms)
|
13476
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13477
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (1.7ms)
|
13478
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (5.3ms)
|
13479
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (9.2ms)
|
13480
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13481
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13482
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.7ms)
|
13483
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (64.3ms)
|
13484
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (67.1ms)
|
13485
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (69.9ms)
|
13486
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (77.3ms)
|
13487
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (82.7ms)
|
13488
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (100.2ms)
|
13489
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13490
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13491
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.4ms)
|
13492
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.9ms)
|
13493
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.1ms)
|
13494
|
+
Completed 200 OK in 135ms (Views: 133.2ms)
|
13495
|
+
Processing by Lolita::RestController#new as HTML
|
13496
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13497
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13498
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13499
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (4.5ms)
|
13500
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (5.9ms)
|
13501
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (0.3ms)
|
13502
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (0.1ms)
|
13503
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13504
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13505
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.1ms)
|
13506
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13507
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13508
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.4ms)
|
13509
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.7ms)
|
13510
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (0.3ms)
|
13511
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.7ms)
|
13512
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13513
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13514
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (1.6ms)
|
13515
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.0ms)
|
13516
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13517
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (3.2ms)
|
13518
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.9ms)
|
13519
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13520
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (1.8ms)
|
13521
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.4ms)
|
13522
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13523
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13524
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.9ms)
|
13525
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13526
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (0.5ms)
|
13527
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (2.2ms)
|
13528
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.8ms)
|
13529
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13530
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13531
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.7ms)
|
13532
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (55.6ms)
|
13533
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (57.3ms)
|
13534
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (59.1ms)
|
13535
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (62.5ms)
|
13536
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (66.8ms)
|
13537
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (77.7ms)
|
13538
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13539
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13540
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.5ms)
|
13541
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.9ms)
|
13542
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.1ms)
|
13543
|
+
Completed 200 OK in 111ms (Views: 110.3ms)
|
13544
|
+
Processing by Lolita::RestController#index as HTML
|
13545
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (0.3ms)
|
13546
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (0.8ms)
|
13547
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (0.4ms)
|
13548
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.2ms)
|
13549
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (3.6ms)
|
13550
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (0.5ms)
|
13551
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (7.0ms)
|
13552
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (1.3ms)
|
13553
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (14.9ms)
|
13554
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13555
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13556
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.5ms)
|
13557
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.8ms)
|
13558
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.0ms)
|
13559
|
+
Completed 200 OK in 50ms (Views: 47.7ms)
|
13560
|
+
Processing by Lolita::RestController#index as HTML
|
13561
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (0.3ms)
|
13562
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (0.8ms)
|
13563
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (0.3ms)
|
13564
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.2ms)
|
13565
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (3.1ms)
|
13566
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (0.6ms)
|
13567
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (6.8ms)
|
13568
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (1.4ms)
|
13569
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (14.9ms)
|
13570
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13571
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13572
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.4ms)
|
13573
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (1.0ms)
|
13574
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.3ms)
|
13575
|
+
Completed 200 OK in 50ms (Views: 48.2ms)
|
13576
|
+
Processing by Lolita::RestController#index as HTML
|
13577
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (54.0ms)
|
13578
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (2.2ms)
|
13579
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (1.2ms)
|
13580
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.9ms)
|
13581
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (6.3ms)
|
13582
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (1.4ms)
|
13583
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (11.8ms)
|
13584
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (2.6ms)
|
13585
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (79.4ms)
|
13586
|
+
Compiled lolita/tab.js (2ms) (pid 1423)
|
13587
|
+
Compiled lolita/application.js (4ms) (pid 1423)
|
13588
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (1.8ms)
|
13589
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (1.2ms)
|
13590
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (4.4ms)
|
13591
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (2.4ms)
|
13592
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (4.7ms)
|
13593
|
+
Completed 200 OK in 203ms (Views: 200.1ms)
|
13594
|
+
Processing by Lolita::RestController#new as HTML
|
13595
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (1.0ms)
|
13596
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (1.0ms)
|
13597
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13598
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (7.7ms)
|
13599
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (10.7ms)
|
13600
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (1.4ms)
|
13601
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (1.9ms)
|
13602
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (1.2ms)
|
13603
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.8ms)
|
13604
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.9ms)
|
13605
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13606
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13607
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.9ms)
|
13608
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13609
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (1.0ms)
|
13610
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.1ms)
|
13611
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13612
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13613
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (2.2ms)
|
13614
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.9ms)
|
13615
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13616
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (4.2ms)
|
13617
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (8.4ms)
|
13618
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13619
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (2.8ms)
|
13620
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (7.0ms)
|
13621
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13622
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13623
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.3ms)
|
13624
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13625
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (1.8ms)
|
13626
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (5.4ms)
|
13627
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (9.2ms)
|
13628
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13629
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13630
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.0ms)
|
13631
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (67.2ms)
|
13632
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (70.0ms)
|
13633
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (72.7ms)
|
13634
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (80.3ms)
|
13635
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (86.0ms)
|
13636
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (105.3ms)
|
13637
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13638
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13639
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.5ms)
|
13640
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.9ms)
|
13641
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.3ms)
|
13642
|
+
Completed 200 OK in 141ms (Views: 139.3ms)
|
13643
|
+
Processing by Lolita::RestController#new as HTML
|
13644
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13645
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.3ms)
|
13646
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_save_button.html.haml (0.4ms)
|
13647
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_buttons.html.haml (5.0ms)
|
13648
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_right_sidebar.html.haml (6.4ms)
|
13649
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_title.html.haml (0.3ms)
|
13650
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_error_msg.html.haml (0.1ms)
|
13651
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13652
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.4ms)
|
13653
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.2ms)
|
13654
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13655
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.4ms)
|
13656
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.7ms)
|
13657
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (1.1ms)
|
13658
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/boolean/_display.html.haml (0.4ms)
|
13659
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.1ms)
|
13660
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13661
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13662
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/big_decimal/_display.html.haml (1.6ms)
|
13663
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.0ms)
|
13664
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13665
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date_time/_display.html.haml (3.1ms)
|
13666
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (7.0ms)
|
13667
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13668
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/date/_display.html.haml (1.6ms)
|
13669
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (5.2ms)
|
13670
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13671
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13672
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (4.1ms)
|
13673
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.6ms)
|
13674
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_input.html.haml (0.6ms)
|
13675
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/array/autocomplete/_display.html.haml (2.3ms)
|
13676
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (6.0ms)
|
13677
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_label.html.haml (0.5ms)
|
13678
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/string/_display.html.haml (0.3ms)
|
13679
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/field/_display.html.haml (3.8ms)
|
13680
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_fields.html.haml (56.9ms)
|
13681
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/default/_display.html.haml (58.6ms)
|
13682
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/content/_display.html.haml (60.3ms)
|
13683
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tab/_display.html.haml (63.6ms)
|
13684
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_form.html.haml (67.9ms)
|
13685
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/tabs/_display.html.haml (79.3ms)
|
13686
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13687
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13688
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.5ms)
|
13689
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.9ms)
|
13690
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.2ms)
|
13691
|
+
Completed 200 OK in 184ms (Views: 182.6ms)
|
13692
|
+
Processing by Lolita::RestController#index as HTML
|
13693
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (0.3ms)
|
13694
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (1.0ms)
|
13695
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (0.4ms)
|
13696
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.2ms)
|
13697
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (3.7ms)
|
13698
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (0.6ms)
|
13699
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (7.3ms)
|
13700
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (1.3ms)
|
13701
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (15.9ms)
|
13702
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13703
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13704
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.5ms)
|
13705
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.9ms)
|
13706
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.2ms)
|
13707
|
+
Completed 200 OK in 52ms (Views: 50.3ms)
|
13708
|
+
Processing by Lolita::RestController#index as HTML
|
13709
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_title.html.haml (0.3ms)
|
13710
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_new_resource.html.haml (0.9ms)
|
13711
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_display.html.haml (0.4ms)
|
13712
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/column/header/_last.html.haml (0.1ms)
|
13713
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/header/_display.html.haml (3.3ms)
|
13714
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/body/_display.html.haml (0.5ms)
|
13715
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/columns/_display.html.haml (6.5ms)
|
13716
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_paginator.html.haml (1.2ms)
|
13717
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/configuration/list/_display.html.haml (14.5ms)
|
13718
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
|
13719
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
|
13720
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/shared/_header.html.haml (1.6ms)
|
13721
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_tree.html.haml (0.8ms)
|
13722
|
+
Rendered /home/gatis/Code/ruby/lolita/app/views/components/lolita/navigation/_display.html.haml (2.0ms)
|
13723
|
+
Completed 200 OK in 53ms (Views: 49.3ms)
|
@@ -27,10 +27,10 @@ describe Lolita::Support::Formatter do
|
|
27
27
|
end
|
28
28
|
|
29
29
|
it "should try to call #format method on given value" do
|
30
|
-
formatter=klass.new("M")
|
31
|
-
object=
|
32
|
-
object.stub
|
33
|
-
object.stub
|
30
|
+
formatter = klass.new("M")
|
31
|
+
object = double
|
32
|
+
object.stub(:format).and_return(1)
|
33
|
+
object.stub(:respond_to?).with(:format).and_return(true)
|
34
34
|
formatter.with(object).should == 1
|
35
35
|
end
|
36
36
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lolita
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.
|
4
|
+
version: 3.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ITHouse (Latvia) and Arturs Meisters
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: kaminari
|