carnival 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/javascripts/carnival/batch_action.js +26 -0
- data/app/assets/stylesheets/carnival/actions.css.scss +15 -1
- data/app/services/carnival/presenters/advanced_search_parser.rb +2 -0
- data/app/views/carnival/base_admin/_index_as_table.html.haml +1 -1
- data/app/views/carnival/base_admin/index.html.haml +2 -9
- data/config/locales/carnival.pt-br.yml +1 -0
- data/lib/carnival/version.rb +1 -1
- metadata +301 -260
- checksums.yaml +0 -7
- data/app/helpers/carnival/base_admin_helper.rb.orig +0 -250
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Carnival.batchActionInitialize = function(noItemsMessage){
|
|
2
|
+
Carnival.batchActionSelected();
|
|
3
|
+
Carnival.batchActionToggleAllItems();
|
|
4
|
+
Carnival.batchActionSubmit(noItemsMessage);
|
|
5
|
+
}
|
|
6
|
+
|
|
1
7
|
Carnival.batchActionFunction = function(){
|
|
2
8
|
var value = $(this).val();
|
|
3
9
|
if($(this).is(':checked')){
|
|
@@ -10,11 +16,31 @@ Carnival.batchActionFunction = function(){
|
|
|
10
16
|
})
|
|
11
17
|
}
|
|
12
18
|
}
|
|
19
|
+
|
|
13
20
|
Carnival.batchActionSelected = function(){
|
|
14
21
|
Carnival.batch_action_items = []
|
|
15
22
|
$('.batch_action_items').click(Carnival.batchActionFunction);
|
|
16
23
|
}
|
|
17
24
|
|
|
25
|
+
Carnival.batchActionToggleAllItems = function(){
|
|
26
|
+
$('#toggle-all-batch-actions-items').click(function(){
|
|
27
|
+
var checked = this.checked;
|
|
28
|
+
$('.batch_action_items').each(function(){
|
|
29
|
+
$(this).prop('checked', checked).triggerHandler('click');
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
Carnival.batchActionSubmit = function(noItemsMessage){
|
|
35
|
+
$('.batch_action_button').click(function(){
|
|
36
|
+
if(Carnival.batch_action_items.length == 0){
|
|
37
|
+
alert(noItemsMessage);
|
|
38
|
+
return false;
|
|
39
|
+
}
|
|
40
|
+
$(this).parents('form').append('<input type="hidden" value="' + Carnival.batch_action_items + '" name="batch_action_items" />');
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
|
|
18
44
|
Carnival.batchActionSuccessCallback = function(data, status, jqXHR){
|
|
19
45
|
Carnival.reloadIndexPage();
|
|
20
46
|
}
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
opacity: 0.7;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
.carnival-action-link:hover, .carnival-action-button:hover{
|
|
33
|
+
.carnival-action-link:hover, .carnival-action-button:hover, .batch_action_button:hover{
|
|
34
34
|
text-decoration: none !important;
|
|
35
35
|
opacity: 1;
|
|
36
36
|
}
|
|
@@ -143,4 +143,18 @@
|
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
|
|
146
|
+
.batch_action_button{
|
|
147
|
+
padding: 1px 15px 0px;
|
|
148
|
+
background: #007AE1;
|
|
149
|
+
color: #fff;
|
|
150
|
+
border: 1px solid rgba(0, 0, 0, 0.21);
|
|
151
|
+
border-radius: 2px;
|
|
152
|
+
opacity: 0.7;
|
|
153
|
+
float: right;
|
|
154
|
+
margin-left: 10px;
|
|
155
|
+
font-size: 14px;
|
|
156
|
+
line-height: 25px;
|
|
157
|
+
cursor: pointer;
|
|
158
|
+
}
|
|
159
|
+
|
|
146
160
|
/********************** ACTIONS SPECIFIC STYLES ********************* START */
|
|
@@ -61,6 +61,8 @@ module Carnival
|
|
|
61
61
|
when "equal"
|
|
62
62
|
if field_param["value"] == "nil"
|
|
63
63
|
where_clause = "#{full_column_query} is null"
|
|
64
|
+
elsif field_param["value"].match(/^\d+$/)
|
|
65
|
+
where_clause = "#{full_column_query} = #{field_param["value"]}"
|
|
64
66
|
else
|
|
65
67
|
where_clause = "lower(#{full_column_query}) = '#{advanced_search_field_value_for_query(field_param["value"])}'"
|
|
66
68
|
end
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
%tr
|
|
4
4
|
-if presenter.has_batch_actions?
|
|
5
5
|
%th
|
|
6
|
-
%input{id: 'toggle-all-batch-actions-items',type: 'checkbox'
|
|
6
|
+
%input{id: 'toggle-all-batch-actions-items',type: 'checkbox'}
|
|
7
7
|
- @thead_renderer.columns.each do |column|
|
|
8
8
|
- if ( @presenter.render_field?(column[:field], :index))
|
|
9
9
|
%th{"onclick" => "javascript:#{column[:sort_function]}", "class" => "#{column[:class]}"}= translate_field(presenter, column[:field])
|
|
@@ -10,19 +10,12 @@
|
|
|
10
10
|
.batch-operations
|
|
11
11
|
- batch_operation_actions = []
|
|
12
12
|
- presenter.batch_actions.each do |key, item|
|
|
13
|
-
|
|
14
|
-
= select_tag :batch_actions_select, options_for_select(batch_operation_actions), :prompt => I18n.t('batch_actions')
|
|
13
|
+
= button_to item.to_label, item.path(presenter), {:method => :post, :class => "batch_action_button"}
|
|
15
14
|
:javascript
|
|
16
15
|
$(document).ready(function(){
|
|
17
|
-
Carnival.
|
|
18
|
-
$('#batch_actions_select').change(function(){
|
|
19
|
-
if($('#batch_actions_select').val()){
|
|
20
|
-
Carnival.remoteFunction($('#batch_actions_select').val(), 'Carnival.batchActionSuccessCallback', 'Carnival.batchActionErrorCallback', 'POST', {batch_action_items: Carnival.batch_action_items})
|
|
21
|
-
}
|
|
22
|
-
});
|
|
16
|
+
Carnival.batchActionInitialize("#{t('select_one_item')}");
|
|
23
17
|
});
|
|
24
18
|
|
|
25
|
-
|
|
26
19
|
.carnival-linsting-tools
|
|
27
20
|
.carnival-index-form
|
|
28
21
|
= form_tag('', method: 'get') do
|
data/lib/carnival/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: carnival
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Vizir Software Studio
|
|
@@ -13,76 +14,87 @@ dependencies:
|
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: rails
|
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
16
18
|
requirements:
|
|
17
|
-
- - '>='
|
|
19
|
+
- - ! '>='
|
|
18
20
|
- !ruby/object:Gem::Version
|
|
19
21
|
version: '4.0'
|
|
20
22
|
type: :runtime
|
|
21
23
|
prerelease: false
|
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
23
26
|
requirements:
|
|
24
|
-
- - '>='
|
|
27
|
+
- - ! '>='
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '4.0'
|
|
27
30
|
- !ruby/object:Gem::Dependency
|
|
28
31
|
name: coffee-rails
|
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
30
34
|
requirements:
|
|
31
|
-
- - '>='
|
|
35
|
+
- - ! '>='
|
|
32
36
|
- !ruby/object:Gem::Version
|
|
33
37
|
version: 4.0.0
|
|
34
38
|
type: :runtime
|
|
35
39
|
prerelease: false
|
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
37
42
|
requirements:
|
|
38
|
-
- - '>='
|
|
43
|
+
- - ! '>='
|
|
39
44
|
- !ruby/object:Gem::Version
|
|
40
45
|
version: 4.0.0
|
|
41
46
|
- !ruby/object:Gem::Dependency
|
|
42
47
|
name: haml-rails
|
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
44
50
|
requirements:
|
|
45
|
-
- - '>='
|
|
51
|
+
- - ! '>='
|
|
46
52
|
- !ruby/object:Gem::Version
|
|
47
53
|
version: 0.7.0
|
|
48
54
|
type: :runtime
|
|
49
55
|
prerelease: false
|
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
51
58
|
requirements:
|
|
52
|
-
- - '>='
|
|
59
|
+
- - ! '>='
|
|
53
60
|
- !ruby/object:Gem::Version
|
|
54
61
|
version: 0.7.0
|
|
55
62
|
- !ruby/object:Gem::Dependency
|
|
56
63
|
name: inherited_resources
|
|
57
64
|
requirement: !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
58
66
|
requirements:
|
|
59
|
-
- - '>='
|
|
67
|
+
- - ! '>='
|
|
60
68
|
- !ruby/object:Gem::Version
|
|
61
69
|
version: 1.5.1
|
|
62
70
|
type: :runtime
|
|
63
71
|
prerelease: false
|
|
64
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
65
74
|
requirements:
|
|
66
|
-
- - '>='
|
|
75
|
+
- - ! '>='
|
|
67
76
|
- !ruby/object:Gem::Version
|
|
68
77
|
version: 1.5.1
|
|
69
78
|
- !ruby/object:Gem::Dependency
|
|
70
79
|
name: jquery-rails
|
|
71
80
|
requirement: !ruby/object:Gem::Requirement
|
|
81
|
+
none: false
|
|
72
82
|
requirements:
|
|
73
|
-
- - '>='
|
|
83
|
+
- - ! '>='
|
|
74
84
|
- !ruby/object:Gem::Version
|
|
75
85
|
version: '0'
|
|
76
86
|
type: :runtime
|
|
77
87
|
prerelease: false
|
|
78
88
|
version_requirements: !ruby/object:Gem::Requirement
|
|
89
|
+
none: false
|
|
79
90
|
requirements:
|
|
80
|
-
- - '>='
|
|
91
|
+
- - ! '>='
|
|
81
92
|
- !ruby/object:Gem::Version
|
|
82
93
|
version: '0'
|
|
83
94
|
- !ruby/object:Gem::Dependency
|
|
84
95
|
name: simple_form
|
|
85
96
|
requirement: !ruby/object:Gem::Requirement
|
|
97
|
+
none: false
|
|
86
98
|
requirements:
|
|
87
99
|
- - ~>
|
|
88
100
|
- !ruby/object:Gem::Version
|
|
@@ -90,6 +102,7 @@ dependencies:
|
|
|
90
102
|
type: :runtime
|
|
91
103
|
prerelease: false
|
|
92
104
|
version_requirements: !ruby/object:Gem::Requirement
|
|
105
|
+
none: false
|
|
93
106
|
requirements:
|
|
94
107
|
- - ~>
|
|
95
108
|
- !ruby/object:Gem::Version
|
|
@@ -97,20 +110,23 @@ dependencies:
|
|
|
97
110
|
- !ruby/object:Gem::Dependency
|
|
98
111
|
name: unicode
|
|
99
112
|
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
none: false
|
|
100
114
|
requirements:
|
|
101
|
-
- - '>='
|
|
115
|
+
- - ! '>='
|
|
102
116
|
- !ruby/object:Gem::Version
|
|
103
117
|
version: 0.4.4.2
|
|
104
118
|
type: :runtime
|
|
105
119
|
prerelease: false
|
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
none: false
|
|
107
122
|
requirements:
|
|
108
|
-
- - '>='
|
|
123
|
+
- - ! '>='
|
|
109
124
|
- !ruby/object:Gem::Version
|
|
110
125
|
version: 0.4.4.2
|
|
111
126
|
- !ruby/object:Gem::Dependency
|
|
112
127
|
name: wicked_pdf
|
|
113
128
|
requirement: !ruby/object:Gem::Requirement
|
|
129
|
+
none: false
|
|
114
130
|
requirements:
|
|
115
131
|
- - ~>
|
|
116
132
|
- !ruby/object:Gem::Version
|
|
@@ -118,6 +134,7 @@ dependencies:
|
|
|
118
134
|
type: :runtime
|
|
119
135
|
prerelease: false
|
|
120
136
|
version_requirements: !ruby/object:Gem::Requirement
|
|
137
|
+
none: false
|
|
121
138
|
requirements:
|
|
122
139
|
- - ~>
|
|
123
140
|
- !ruby/object:Gem::Version
|
|
@@ -125,6 +142,7 @@ dependencies:
|
|
|
125
142
|
- !ruby/object:Gem::Dependency
|
|
126
143
|
name: will_paginate
|
|
127
144
|
requirement: !ruby/object:Gem::Requirement
|
|
145
|
+
none: false
|
|
128
146
|
requirements:
|
|
129
147
|
- - ~>
|
|
130
148
|
- !ruby/object:Gem::Version
|
|
@@ -132,6 +150,7 @@ dependencies:
|
|
|
132
150
|
type: :runtime
|
|
133
151
|
prerelease: false
|
|
134
152
|
version_requirements: !ruby/object:Gem::Requirement
|
|
153
|
+
none: false
|
|
135
154
|
requirements:
|
|
136
155
|
- - ~>
|
|
137
156
|
- !ruby/object:Gem::Version
|
|
@@ -139,6 +158,7 @@ dependencies:
|
|
|
139
158
|
- !ruby/object:Gem::Dependency
|
|
140
159
|
name: better_errors
|
|
141
160
|
requirement: !ruby/object:Gem::Requirement
|
|
161
|
+
none: false
|
|
142
162
|
requirements:
|
|
143
163
|
- - ~>
|
|
144
164
|
- !ruby/object:Gem::Version
|
|
@@ -146,6 +166,7 @@ dependencies:
|
|
|
146
166
|
type: :development
|
|
147
167
|
prerelease: false
|
|
148
168
|
version_requirements: !ruby/object:Gem::Requirement
|
|
169
|
+
none: false
|
|
149
170
|
requirements:
|
|
150
171
|
- - ~>
|
|
151
172
|
- !ruby/object:Gem::Version
|
|
@@ -153,6 +174,7 @@ dependencies:
|
|
|
153
174
|
- !ruby/object:Gem::Dependency
|
|
154
175
|
name: binding_of_caller
|
|
155
176
|
requirement: !ruby/object:Gem::Requirement
|
|
177
|
+
none: false
|
|
156
178
|
requirements:
|
|
157
179
|
- - ~>
|
|
158
180
|
- !ruby/object:Gem::Version
|
|
@@ -160,6 +182,7 @@ dependencies:
|
|
|
160
182
|
type: :development
|
|
161
183
|
prerelease: false
|
|
162
184
|
version_requirements: !ruby/object:Gem::Requirement
|
|
185
|
+
none: false
|
|
163
186
|
requirements:
|
|
164
187
|
- - ~>
|
|
165
188
|
- !ruby/object:Gem::Version
|
|
@@ -167,6 +190,7 @@ dependencies:
|
|
|
167
190
|
- !ruby/object:Gem::Dependency
|
|
168
191
|
name: bullet
|
|
169
192
|
requirement: !ruby/object:Gem::Requirement
|
|
193
|
+
none: false
|
|
170
194
|
requirements:
|
|
171
195
|
- - ~>
|
|
172
196
|
- !ruby/object:Gem::Version
|
|
@@ -174,6 +198,7 @@ dependencies:
|
|
|
174
198
|
type: :development
|
|
175
199
|
prerelease: false
|
|
176
200
|
version_requirements: !ruby/object:Gem::Requirement
|
|
201
|
+
none: false
|
|
177
202
|
requirements:
|
|
178
203
|
- - ~>
|
|
179
204
|
- !ruby/object:Gem::Version
|
|
@@ -181,6 +206,7 @@ dependencies:
|
|
|
181
206
|
- !ruby/object:Gem::Dependency
|
|
182
207
|
name: byebug
|
|
183
208
|
requirement: !ruby/object:Gem::Requirement
|
|
209
|
+
none: false
|
|
184
210
|
requirements:
|
|
185
211
|
- - ~>
|
|
186
212
|
- !ruby/object:Gem::Version
|
|
@@ -188,6 +214,7 @@ dependencies:
|
|
|
188
214
|
type: :development
|
|
189
215
|
prerelease: false
|
|
190
216
|
version_requirements: !ruby/object:Gem::Requirement
|
|
217
|
+
none: false
|
|
191
218
|
requirements:
|
|
192
219
|
- - ~>
|
|
193
220
|
- !ruby/object:Gem::Version
|
|
@@ -195,6 +222,7 @@ dependencies:
|
|
|
195
222
|
- !ruby/object:Gem::Dependency
|
|
196
223
|
name: capybara
|
|
197
224
|
requirement: !ruby/object:Gem::Requirement
|
|
225
|
+
none: false
|
|
198
226
|
requirements:
|
|
199
227
|
- - ~>
|
|
200
228
|
- !ruby/object:Gem::Version
|
|
@@ -202,6 +230,7 @@ dependencies:
|
|
|
202
230
|
type: :development
|
|
203
231
|
prerelease: false
|
|
204
232
|
version_requirements: !ruby/object:Gem::Requirement
|
|
233
|
+
none: false
|
|
205
234
|
requirements:
|
|
206
235
|
- - ~>
|
|
207
236
|
- !ruby/object:Gem::Version
|
|
@@ -209,6 +238,7 @@ dependencies:
|
|
|
209
238
|
- !ruby/object:Gem::Dependency
|
|
210
239
|
name: factory_girl_rails
|
|
211
240
|
requirement: !ruby/object:Gem::Requirement
|
|
241
|
+
none: false
|
|
212
242
|
requirements:
|
|
213
243
|
- - ~>
|
|
214
244
|
- !ruby/object:Gem::Version
|
|
@@ -216,6 +246,7 @@ dependencies:
|
|
|
216
246
|
type: :development
|
|
217
247
|
prerelease: false
|
|
218
248
|
version_requirements: !ruby/object:Gem::Requirement
|
|
249
|
+
none: false
|
|
219
250
|
requirements:
|
|
220
251
|
- - ~>
|
|
221
252
|
- !ruby/object:Gem::Version
|
|
@@ -223,6 +254,7 @@ dependencies:
|
|
|
223
254
|
- !ruby/object:Gem::Dependency
|
|
224
255
|
name: pry-byebug
|
|
225
256
|
requirement: !ruby/object:Gem::Requirement
|
|
257
|
+
none: false
|
|
226
258
|
requirements:
|
|
227
259
|
- - ~>
|
|
228
260
|
- !ruby/object:Gem::Version
|
|
@@ -230,6 +262,7 @@ dependencies:
|
|
|
230
262
|
type: :development
|
|
231
263
|
prerelease: false
|
|
232
264
|
version_requirements: !ruby/object:Gem::Requirement
|
|
265
|
+
none: false
|
|
233
266
|
requirements:
|
|
234
267
|
- - ~>
|
|
235
268
|
- !ruby/object:Gem::Version
|
|
@@ -237,6 +270,7 @@ dependencies:
|
|
|
237
270
|
- !ruby/object:Gem::Dependency
|
|
238
271
|
name: poltergeist
|
|
239
272
|
requirement: !ruby/object:Gem::Requirement
|
|
273
|
+
none: false
|
|
240
274
|
requirements:
|
|
241
275
|
- - ~>
|
|
242
276
|
- !ruby/object:Gem::Version
|
|
@@ -244,6 +278,7 @@ dependencies:
|
|
|
244
278
|
type: :development
|
|
245
279
|
prerelease: false
|
|
246
280
|
version_requirements: !ruby/object:Gem::Requirement
|
|
281
|
+
none: false
|
|
247
282
|
requirements:
|
|
248
283
|
- - ~>
|
|
249
284
|
- !ruby/object:Gem::Version
|
|
@@ -251,6 +286,7 @@ dependencies:
|
|
|
251
286
|
- !ruby/object:Gem::Dependency
|
|
252
287
|
name: rspec-rails
|
|
253
288
|
requirement: !ruby/object:Gem::Requirement
|
|
289
|
+
none: false
|
|
254
290
|
requirements:
|
|
255
291
|
- - ~>
|
|
256
292
|
- !ruby/object:Gem::Version
|
|
@@ -258,6 +294,7 @@ dependencies:
|
|
|
258
294
|
type: :development
|
|
259
295
|
prerelease: false
|
|
260
296
|
version_requirements: !ruby/object:Gem::Requirement
|
|
297
|
+
none: false
|
|
261
298
|
requirements:
|
|
262
299
|
- - ~>
|
|
263
300
|
- !ruby/object:Gem::Version
|
|
@@ -265,6 +302,7 @@ dependencies:
|
|
|
265
302
|
- !ruby/object:Gem::Dependency
|
|
266
303
|
name: simplecov
|
|
267
304
|
requirement: !ruby/object:Gem::Requirement
|
|
305
|
+
none: false
|
|
268
306
|
requirements:
|
|
269
307
|
- - ~>
|
|
270
308
|
- !ruby/object:Gem::Version
|
|
@@ -272,6 +310,7 @@ dependencies:
|
|
|
272
310
|
type: :development
|
|
273
311
|
prerelease: false
|
|
274
312
|
version_requirements: !ruby/object:Gem::Requirement
|
|
313
|
+
none: false
|
|
275
314
|
requirements:
|
|
276
315
|
- - ~>
|
|
277
316
|
- !ruby/object:Gem::Version
|
|
@@ -279,6 +318,7 @@ dependencies:
|
|
|
279
318
|
- !ruby/object:Gem::Dependency
|
|
280
319
|
name: sqlite3
|
|
281
320
|
requirement: !ruby/object:Gem::Requirement
|
|
321
|
+
none: false
|
|
282
322
|
requirements:
|
|
283
323
|
- - ~>
|
|
284
324
|
- !ruby/object:Gem::Version
|
|
@@ -286,6 +326,7 @@ dependencies:
|
|
|
286
326
|
type: :development
|
|
287
327
|
prerelease: false
|
|
288
328
|
version_requirements: !ruby/object:Gem::Requirement
|
|
329
|
+
none: false
|
|
289
330
|
requirements:
|
|
290
331
|
- - ~>
|
|
291
332
|
- !ruby/object:Gem::Version
|
|
@@ -300,334 +341,334 @@ executables: []
|
|
|
300
341
|
extensions: []
|
|
301
342
|
extra_rdoc_files: []
|
|
302
343
|
files:
|
|
303
|
-
-
|
|
304
|
-
-
|
|
305
|
-
- app/
|
|
306
|
-
- app/
|
|
307
|
-
- app/
|
|
308
|
-
- app/
|
|
309
|
-
- app/
|
|
310
|
-
- app/
|
|
311
|
-
- app/
|
|
312
|
-
- app/
|
|
313
|
-
- app/
|
|
314
|
-
- app/
|
|
315
|
-
- app/
|
|
316
|
-
- app/
|
|
317
|
-
- app/
|
|
318
|
-
- app/
|
|
319
|
-
- app/
|
|
320
|
-
- app/
|
|
321
|
-
- app/
|
|
322
|
-
- app/
|
|
323
|
-
- app/
|
|
324
|
-
- app/
|
|
325
|
-
- app/
|
|
326
|
-
- app/
|
|
327
|
-
- app/
|
|
328
|
-
- app/
|
|
329
|
-
- app/
|
|
330
|
-
- app/
|
|
331
|
-
- app/
|
|
332
|
-
- app/
|
|
333
|
-
- app/
|
|
334
|
-
- app/
|
|
335
|
-
- app/
|
|
336
|
-
- app/
|
|
337
|
-
- app/
|
|
344
|
+
- app/inputs/admin_relationship_select_input.rb
|
|
345
|
+
- app/inputs/admin_previewable_file_input.rb
|
|
346
|
+
- app/inputs/admin_text_input.rb
|
|
347
|
+
- app/inputs/admin_currency_input.rb
|
|
348
|
+
- app/inputs/carnival_enum_input.rb
|
|
349
|
+
- app/inputs/carnival_select_remote_input.rb
|
|
350
|
+
- app/inputs/admin_enum_input.rb
|
|
351
|
+
- app/inputs/admin_date_input.rb
|
|
352
|
+
- app/inputs/admin_base_input.rb
|
|
353
|
+
- app/presenters/carnival/presenter_validators/field_validator.rb
|
|
354
|
+
- app/presenters/carnival/base_admin_presenter.rb
|
|
355
|
+
- app/presenters/carnival/menu_presenter.rb
|
|
356
|
+
- app/controllers/carnival/base_admin_controller.rb
|
|
357
|
+
- app/view_objects/carnival/thead_renderer.rb
|
|
358
|
+
- app/view_objects/carnival/nested_form_options.rb
|
|
359
|
+
- app/view_objects/carnival/paginator.rb
|
|
360
|
+
- app/views/carnival/base_admin/load_dependent_select_options.html.haml
|
|
361
|
+
- app/views/carnival/base_admin/show.html.haml
|
|
362
|
+
- app/views/carnival/base_admin/new.html.haml
|
|
363
|
+
- app/views/carnival/base_admin/_index_as_list.html.haml
|
|
364
|
+
- app/views/carnival/base_admin/index.html.haml
|
|
365
|
+
- app/views/carnival/base_admin/_inner_form.html.haml
|
|
366
|
+
- app/views/carnival/base_admin/_index_as_grid.html.haml
|
|
367
|
+
- app/views/carnival/base_admin/index.csv.haml
|
|
368
|
+
- app/views/carnival/base_admin/edit.html.haml
|
|
369
|
+
- app/views/carnival/base_admin/index.pdf.haml
|
|
370
|
+
- app/views/carnival/base_admin/home.html.haml
|
|
371
|
+
- app/views/carnival/base_admin/render_inner_form.js.erb
|
|
372
|
+
- app/views/carnival/base_admin/_index_as_table.html.haml
|
|
373
|
+
- app/views/carnival/shared/_advanced_search_field.html.haml
|
|
374
|
+
- app/views/carnival/shared/_item_buttons.html.haml
|
|
375
|
+
- app/views/carnival/shared/_action_remote.html.haml
|
|
376
|
+
- app/views/carnival/shared/show/_show_as_list.html.haml
|
|
377
|
+
- app/views/carnival/shared/_special_scope.html.haml
|
|
378
|
+
- app/views/carnival/shared/_photo_field.html.haml
|
|
379
|
+
- app/views/carnival/shared/form/_field.html.haml
|
|
380
|
+
- app/views/carnival/shared/form/_nested_form_options.html.haml
|
|
381
|
+
- app/views/carnival/shared/form/_nested_form.html.haml
|
|
382
|
+
- app/views/carnival/shared/form/_inner_form.html.haml
|
|
383
|
+
- app/views/carnival/shared/form/_edit.html.haml
|
|
384
|
+
- app/views/carnival/shared/form/_form.html.haml
|
|
385
|
+
- app/views/carnival/shared/_period_filter.html.haml
|
|
386
|
+
- app/views/carnival/shared/_header.pdf.haml
|
|
387
|
+
- app/views/carnival/shared/_extra.html.haml
|
|
388
|
+
- app/views/carnival/shared/_report.pdf.haml
|
|
389
|
+
- app/views/carnival/shared/_extra_item.html.haml
|
|
390
|
+
- app/views/carnival/shared/_list_cel.pdf.haml
|
|
391
|
+
- app/views/carnival/shared/_action_delete.html.haml
|
|
392
|
+
- app/views/carnival/shared/_scope.html.haml
|
|
393
|
+
- app/views/carnival/shared/_add_button.html.haml
|
|
394
|
+
- app/views/carnival/shared/_action_default.html.haml
|
|
395
|
+
- app/views/carnival/shared/render_popup.js.erb
|
|
396
|
+
- app/views/carnival/shared/_delete.html.haml
|
|
397
|
+
- app/views/carnival/shared/_edit_delete.html.haml
|
|
398
|
+
- app/views/carnival/shared/_advanced_search.html.haml
|
|
399
|
+
- app/views/carnival/shared/_application_modal_partial.html.haml
|
|
400
|
+
- app/views/layouts/carnival/_menu.html.haml
|
|
401
|
+
- app/views/layouts/carnival/admin.html.haml
|
|
402
|
+
- app/helpers/carnival/field_renderers/renderer_creator.rb
|
|
403
|
+
- app/helpers/carnival/field_renderers/many_relation_renderer.rb
|
|
404
|
+
- app/helpers/carnival/field_renderers/single_relation_renderer.rb
|
|
405
|
+
- app/helpers/carnival/field_renderers/field_renderer.rb
|
|
406
|
+
- app/helpers/carnival/base_admin_helper.rb
|
|
407
|
+
- app/models/carnival/form.rb
|
|
408
|
+
- app/models/carnival/action.rb
|
|
409
|
+
- app/models/carnival/scope.rb
|
|
410
|
+
- app/models/carnival/field.rb
|
|
411
|
+
- app/models/carnival/model_helper.rb
|
|
412
|
+
- app/models/carnival/query_form.rb
|
|
413
|
+
- app/models/carnival/batch_action.rb
|
|
414
|
+
- app/datatable/carnival/generic_datatable/column_sorter.rb
|
|
415
|
+
- app/datatable/carnival/generic_datatable/column_sorter_creator.rb
|
|
416
|
+
- app/datatable/carnival/generic_datatable/relation_column_sorter.rb
|
|
338
417
|
- app/assets/javascripts/carnival/advanced_search.js
|
|
339
418
|
- app/assets/javascripts/carnival/batch_action.js
|
|
340
|
-
- app/assets/javascripts/carnival/
|
|
341
|
-
- app/assets/javascripts/carnival/
|
|
342
|
-
- app/assets/javascripts/carnival/
|
|
343
|
-
- app/assets/javascripts/carnival/external/
|
|
344
|
-
- app/assets/javascripts/carnival/external/
|
|
345
|
-
- app/assets/javascripts/carnival/external/
|
|
346
|
-
- app/assets/javascripts/carnival/external/noty/layouts/bottomCenter.js
|
|
347
|
-
- app/assets/javascripts/carnival/external/noty/layouts/bottomLeft.js
|
|
348
|
-
- app/assets/javascripts/carnival/external/noty/layouts/bottomRight.js
|
|
349
|
-
- app/assets/javascripts/carnival/external/noty/layouts/center.js
|
|
350
|
-
- app/assets/javascripts/carnival/external/noty/layouts/centerLeft.js
|
|
351
|
-
- app/assets/javascripts/carnival/external/noty/layouts/centerRight.js
|
|
352
|
-
- app/assets/javascripts/carnival/external/noty/layouts/inline.js
|
|
353
|
-
- app/assets/javascripts/carnival/external/noty/layouts/top.js
|
|
354
|
-
- app/assets/javascripts/carnival/external/noty/layouts/topCenter.js
|
|
355
|
-
- app/assets/javascripts/carnival/external/noty/layouts/topLeft.js
|
|
356
|
-
- app/assets/javascripts/carnival/external/noty/layouts/topRight.js
|
|
357
|
-
- app/assets/javascripts/carnival/external/noty/packaged/jquery.noty.packaged.js
|
|
358
|
-
- app/assets/javascripts/carnival/external/noty/packaged/jquery.noty.packaged.min.js
|
|
359
|
-
- app/assets/javascripts/carnival/external/noty/promise.js
|
|
360
|
-
- app/assets/javascripts/carnival/external/noty/themes/default.js
|
|
361
|
-
- app/assets/javascripts/carnival/external/select2/select2.min.js
|
|
362
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_ar.js
|
|
363
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_az.js
|
|
364
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_bg.js
|
|
365
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_ca.js
|
|
419
|
+
- app/assets/javascripts/carnival/admin.js
|
|
420
|
+
- app/assets/javascripts/carnival/select_remote.js
|
|
421
|
+
- app/assets/javascripts/carnival/vizir_admin.js
|
|
422
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ro.js
|
|
423
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_pl.js
|
|
424
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_id.js
|
|
366
425
|
- app/assets/javascripts/carnival/external/select2/select2_locale_cs.js
|
|
367
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
426
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_zh-TW.js
|
|
368
427
|
- app/assets/javascripts/carnival/external/select2/select2_locale_de.js
|
|
369
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_el.js
|
|
370
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_en.js.template
|
|
371
428
|
- app/assets/javascripts/carnival/external/select2/select2_locale_es.js
|
|
372
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_et.js
|
|
373
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_eu.js
|
|
374
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_fa.js
|
|
375
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_fi.js
|
|
376
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_fr.js
|
|
377
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_gl.js
|
|
378
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_he.js
|
|
379
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_hr.js
|
|
380
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_hu.js
|
|
381
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_id.js
|
|
382
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_is.js
|
|
383
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_it.js
|
|
384
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_ja.js
|
|
385
|
-
- app/assets/javascripts/carnival/external/select2/select2_locale_ka.js
|
|
386
429
|
- app/assets/javascripts/carnival/external/select2/select2_locale_ko.js
|
|
387
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
388
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
389
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
390
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
430
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_sv.js
|
|
431
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_pt-BR.js
|
|
432
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_az.js
|
|
433
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_hu.js
|
|
434
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_hr.js
|
|
435
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_tr.js
|
|
391
436
|
- app/assets/javascripts/carnival/external/select2/select2_locale_nl.js
|
|
437
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_da.js
|
|
438
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ar.js
|
|
439
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_el.js
|
|
392
440
|
- app/assets/javascripts/carnival/external/select2/select2_locale_no.js
|
|
393
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
394
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
441
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_zh-CN.js
|
|
442
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_fi.js
|
|
443
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_et.js
|
|
444
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ca.js
|
|
445
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_vi.js
|
|
446
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_it.js
|
|
447
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_mk.js
|
|
448
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_lt.js
|
|
395
449
|
- app/assets/javascripts/carnival/external/select2/select2_locale_pt-PT.js
|
|
396
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
450
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ja.js
|
|
451
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ka.js
|
|
452
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ug-CN.js
|
|
453
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_he.js
|
|
454
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_eu.js
|
|
455
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_en.js.template
|
|
456
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_uk.js
|
|
457
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_bg.js
|
|
397
458
|
- app/assets/javascripts/carnival/external/select2/select2_locale_rs.js
|
|
398
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
459
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_fa.js
|
|
460
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ms.js
|
|
399
461
|
- app/assets/javascripts/carnival/external/select2/select2_locale_sk.js
|
|
400
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
462
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_gl.js
|
|
463
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_fr.js
|
|
401
464
|
- app/assets/javascripts/carnival/external/select2/select2_locale_th.js
|
|
402
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
403
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
404
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
405
|
-
- app/assets/javascripts/carnival/external/select2/
|
|
406
|
-
- app/assets/javascripts/carnival/external/
|
|
407
|
-
- app/assets/javascripts/carnival/external/
|
|
408
|
-
- app/assets/javascripts/carnival/
|
|
409
|
-
- app/assets/javascripts/carnival/
|
|
410
|
-
- app/assets/
|
|
411
|
-
- app/assets/
|
|
412
|
-
- app/assets/
|
|
413
|
-
- app/assets/
|
|
414
|
-
- app/assets/
|
|
415
|
-
- app/assets/
|
|
416
|
-
- app/assets/
|
|
417
|
-
- app/assets/
|
|
418
|
-
- app/assets/
|
|
419
|
-
- app/assets/
|
|
420
|
-
- app/assets/
|
|
421
|
-
- app/assets/
|
|
422
|
-
- app/assets/
|
|
423
|
-
- app/assets/
|
|
424
|
-
- app/assets/
|
|
425
|
-
- app/assets/
|
|
426
|
-
- app/assets/
|
|
427
|
-
- app/assets/
|
|
465
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_is.js
|
|
466
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_ru.js
|
|
467
|
+
- app/assets/javascripts/carnival/external/select2/select2_locale_lv.js
|
|
468
|
+
- app/assets/javascripts/carnival/external/select2/select2.min.js
|
|
469
|
+
- app/assets/javascripts/carnival/external/jquery-ui-1.9.1.custom.min.js
|
|
470
|
+
- app/assets/javascripts/carnival/external/jquery.maskedinput.js
|
|
471
|
+
- app/assets/javascripts/carnival/external/jquery.datetimepicker.js
|
|
472
|
+
- app/assets/javascripts/carnival/external/noty/packaged/jquery.noty.packaged.js
|
|
473
|
+
- app/assets/javascripts/carnival/external/noty/packaged/jquery.noty.packaged.min.js
|
|
474
|
+
- app/assets/javascripts/carnival/external/noty/themes/default.js
|
|
475
|
+
- app/assets/javascripts/carnival/external/noty/layouts/bottomLeft.js
|
|
476
|
+
- app/assets/javascripts/carnival/external/noty/layouts/topCenter.js
|
|
477
|
+
- app/assets/javascripts/carnival/external/noty/layouts/bottomRight.js
|
|
478
|
+
- app/assets/javascripts/carnival/external/noty/layouts/topLeft.js
|
|
479
|
+
- app/assets/javascripts/carnival/external/noty/layouts/centerRight.js
|
|
480
|
+
- app/assets/javascripts/carnival/external/noty/layouts/center.js
|
|
481
|
+
- app/assets/javascripts/carnival/external/noty/layouts/centerLeft.js
|
|
482
|
+
- app/assets/javascripts/carnival/external/noty/layouts/bottom.js
|
|
483
|
+
- app/assets/javascripts/carnival/external/noty/layouts/top.js
|
|
484
|
+
- app/assets/javascripts/carnival/external/noty/layouts/topRight.js
|
|
485
|
+
- app/assets/javascripts/carnival/external/noty/layouts/bottomCenter.js
|
|
486
|
+
- app/assets/javascripts/carnival/external/noty/layouts/inline.js
|
|
487
|
+
- app/assets/javascripts/carnival/external/noty/promise.js
|
|
488
|
+
- app/assets/javascripts/carnival/external/noty/jquery.noty.js
|
|
489
|
+
- app/assets/javascripts/carnival/external/jquery.colorbox-min.js
|
|
490
|
+
- app/assets/images/carnival/blank.gif
|
|
491
|
+
- app/assets/images/carnival/cal.png
|
|
492
|
+
- app/assets/images/carnival/sort_asc.png
|
|
493
|
+
- app/assets/images/carnival/loadingGif.gif
|
|
494
|
+
- app/assets/images/carnival/search.png
|
|
495
|
+
- app/assets/images/carnival/novo.png
|
|
496
|
+
- app/assets/images/carnival/voltar.png
|
|
497
|
+
- app/assets/images/carnival/sort_desc_disabled.png
|
|
498
|
+
- app/assets/images/carnival/bg_button.png
|
|
499
|
+
- app/assets/images/carnival/avatar.png
|
|
500
|
+
- app/assets/images/carnival/search-button.png
|
|
501
|
+
- app/assets/images/carnival/sort_desc.png
|
|
502
|
+
- app/assets/images/carnival/select2x2.png
|
|
503
|
+
- app/assets/images/carnival/chosen-sprite@2x.png
|
|
504
|
+
- app/assets/images/carnival/header-bg.png
|
|
505
|
+
- app/assets/images/carnival/chosen-sprite.png
|
|
506
|
+
- app/assets/images/carnival/sort_both.png
|
|
507
|
+
- app/assets/images/carnival/sort_asc_disabled.png
|
|
508
|
+
- app/assets/images/carnival/sprites.png
|
|
509
|
+
- app/assets/images/carnival/sprites-active.png
|
|
510
|
+
- app/assets/images/carnival/overlay.png
|
|
511
|
+
- app/assets/images/carnival/fonts/opensans-semibold-webfont.svg
|
|
512
|
+
- app/assets/images/carnival/fonts/opensans-semibold-webfont.ttf
|
|
513
|
+
- app/assets/images/carnival/fonts/opensans-regular-webfont.eot
|
|
514
|
+
- app/assets/images/carnival/fonts/opensans-semibold-webfont.eot
|
|
515
|
+
- app/assets/images/carnival/fonts/opensans-regular-webfont.svg
|
|
516
|
+
- app/assets/images/carnival/fonts/opensans-regular-webfont.woff
|
|
517
|
+
- app/assets/images/carnival/fonts/opensans-regular-webfont.ttf
|
|
518
|
+
- app/assets/images/carnival/fonts/opensans-semibold-webfont.woff
|
|
519
|
+
- app/assets/images/carnival/fonts/up-not.png
|
|
520
|
+
- app/assets/images/carnival/select2.png
|
|
521
|
+
- app/assets/images/carnival/select2-spinner.gif
|
|
522
|
+
- app/assets/stylesheets/carnival/period.css.scss
|
|
523
|
+
- app/assets/stylesheets/carnival/structure.css.scss
|
|
524
|
+
- app/assets/stylesheets/carnival/jquery.noty.css
|
|
428
525
|
- app/assets/stylesheets/carnival/images/ui-bg_glass_95_fef1ec_1x400.png
|
|
429
526
|
- app/assets/stylesheets/carnival/images/ui-bg_highlight-soft_75_cccccc_1x100.png
|
|
527
|
+
- app/assets/stylesheets/carnival/images/ui-icons_888888_256x240.png
|
|
430
528
|
- app/assets/stylesheets/carnival/images/ui-icons_222222_256x240.png
|
|
529
|
+
- app/assets/stylesheets/carnival/images/ui-bg_glass_75_dadada_1x400.png
|
|
431
530
|
- app/assets/stylesheets/carnival/images/ui-icons_2e83ff_256x240.png
|
|
531
|
+
- app/assets/stylesheets/carnival/images/ui-bg_glass_65_ffffff_1x400.png
|
|
432
532
|
- app/assets/stylesheets/carnival/images/ui-icons_454545_256x240.png
|
|
433
|
-
- app/assets/stylesheets/carnival/images/ui-
|
|
533
|
+
- app/assets/stylesheets/carnival/images/ui-bg_glass_55_fbf9ee_1x400.png
|
|
534
|
+
- app/assets/stylesheets/carnival/images/ui-bg_flat_75_ffffff_40x100.png
|
|
535
|
+
- app/assets/stylesheets/carnival/images/ui-bg_glass_75_e6e6e6_1x400.png
|
|
434
536
|
- app/assets/stylesheets/carnival/images/ui-icons_cd0a0a_256x240.png
|
|
435
|
-
- app/assets/stylesheets/carnival/
|
|
436
|
-
- app/assets/stylesheets/carnival/
|
|
537
|
+
- app/assets/stylesheets/carnival/images/ui-bg_flat_0_aaaaaa_40x100.png
|
|
538
|
+
- app/assets/stylesheets/carnival/carnival-table.css.scss
|
|
539
|
+
- app/assets/stylesheets/carnival/colorbox.css.scss
|
|
540
|
+
- app/assets/stylesheets/carnival/footer.css
|
|
437
541
|
- app/assets/stylesheets/carnival/menu.css.scss
|
|
542
|
+
- app/assets/stylesheets/carnival/select2.css.scss
|
|
438
543
|
- app/assets/stylesheets/carnival/modal.css.scss
|
|
544
|
+
- app/assets/stylesheets/carnival/grid.css
|
|
545
|
+
- app/assets/stylesheets/carnival/admin.css
|
|
439
546
|
- app/assets/stylesheets/carnival/pagination.css.scss
|
|
440
|
-
- app/assets/stylesheets/carnival/
|
|
547
|
+
- app/assets/stylesheets/carnival/carnival-list.css
|
|
548
|
+
- app/assets/stylesheets/carnival/carnival-grid.css
|
|
549
|
+
- app/assets/stylesheets/carnival/listing-tools.css
|
|
550
|
+
- app/assets/stylesheets/carnival/actions.css.scss
|
|
441
551
|
- app/assets/stylesheets/carnival/scope.css
|
|
552
|
+
- app/assets/stylesheets/carnival/external/jquery.datetimepicker.css
|
|
553
|
+
- app/assets/stylesheets/carnival/forms.css.scss
|
|
442
554
|
- app/assets/stylesheets/carnival/search.css.scss
|
|
443
|
-
- app/assets/stylesheets/carnival/
|
|
444
|
-
- app/assets/stylesheets/carnival/
|
|
445
|
-
- app/controllers/carnival/base_admin_controller.rb
|
|
446
|
-
- app/datatable/carnival/generic_datatable/column_sorter.rb
|
|
447
|
-
- app/datatable/carnival/generic_datatable/column_sorter_creator.rb
|
|
448
|
-
- app/datatable/carnival/generic_datatable/relation_column_sorter.rb
|
|
449
|
-
- app/helpers/carnival/base_admin_helper.rb
|
|
450
|
-
- app/helpers/carnival/base_admin_helper.rb.orig
|
|
451
|
-
- app/helpers/carnival/field_renderers/field_renderer.rb
|
|
452
|
-
- app/helpers/carnival/field_renderers/many_relation_renderer.rb
|
|
453
|
-
- app/helpers/carnival/field_renderers/renderer_creator.rb
|
|
454
|
-
- app/helpers/carnival/field_renderers/single_relation_renderer.rb
|
|
455
|
-
- app/inputs/admin_base_input.rb
|
|
456
|
-
- app/inputs/admin_currency_input.rb
|
|
457
|
-
- app/inputs/admin_date_input.rb
|
|
458
|
-
- app/inputs/admin_enum_input.rb
|
|
459
|
-
- app/inputs/admin_previewable_file_input.rb
|
|
460
|
-
- app/inputs/admin_relationship_select_input.rb
|
|
461
|
-
- app/inputs/admin_text_input.rb
|
|
462
|
-
- app/inputs/carnival_enum_input.rb
|
|
463
|
-
- app/inputs/carnival_select_remote_input.rb
|
|
464
|
-
- app/models/carnival/action.rb
|
|
465
|
-
- app/models/carnival/batch_action.rb
|
|
466
|
-
- app/models/carnival/field.rb
|
|
467
|
-
- app/models/carnival/form.rb
|
|
468
|
-
- app/models/carnival/model_helper.rb
|
|
469
|
-
- app/models/carnival/query_form.rb
|
|
470
|
-
- app/models/carnival/scope.rb
|
|
471
|
-
- app/presenters/carnival/base_admin_presenter.rb
|
|
472
|
-
- app/presenters/carnival/menu_presenter.rb
|
|
473
|
-
- app/presenters/carnival/presenter_validators/field_validator.rb
|
|
555
|
+
- app/assets/stylesheets/carnival/header.css.scss
|
|
556
|
+
- app/assets/stylesheets/carnival/admin_users.css
|
|
474
557
|
- app/services/carnival/klass_service.rb
|
|
475
558
|
- app/services/carnival/presenters/advanced_search_parser.rb
|
|
476
559
|
- app/services/carnival/query_form_creator.rb
|
|
477
|
-
- app/services/carnival/query_service.rb
|
|
478
560
|
- app/services/carnival/renderer/html.rb
|
|
479
|
-
- app/
|
|
480
|
-
-
|
|
481
|
-
-
|
|
482
|
-
- app/views/carnival/base_admin/_index_as_grid.html.haml
|
|
483
|
-
- app/views/carnival/base_admin/_index_as_list.html.haml
|
|
484
|
-
- app/views/carnival/base_admin/_index_as_table.html.haml
|
|
485
|
-
- app/views/carnival/base_admin/_inner_form.html.haml
|
|
486
|
-
- app/views/carnival/base_admin/edit.html.haml
|
|
487
|
-
- app/views/carnival/base_admin/home.html.haml
|
|
488
|
-
- app/views/carnival/base_admin/index.csv.haml
|
|
489
|
-
- app/views/carnival/base_admin/index.html.haml
|
|
490
|
-
- app/views/carnival/base_admin/index.pdf.haml
|
|
491
|
-
- app/views/carnival/base_admin/load_dependent_select_options.html.haml
|
|
492
|
-
- app/views/carnival/base_admin/new.html.haml
|
|
493
|
-
- app/views/carnival/base_admin/render_inner_form.js.erb
|
|
494
|
-
- app/views/carnival/base_admin/show.html.haml
|
|
495
|
-
- app/views/carnival/shared/_action_default.html.haml
|
|
496
|
-
- app/views/carnival/shared/_action_delete.html.haml
|
|
497
|
-
- app/views/carnival/shared/_action_remote.html.haml
|
|
498
|
-
- app/views/carnival/shared/_add_button.html.haml
|
|
499
|
-
- app/views/carnival/shared/_advanced_search.html.haml
|
|
500
|
-
- app/views/carnival/shared/_advanced_search_field.html.haml
|
|
501
|
-
- app/views/carnival/shared/_application_modal_partial.html.haml
|
|
502
|
-
- app/views/carnival/shared/_delete.html.haml
|
|
503
|
-
- app/views/carnival/shared/_edit_delete.html.haml
|
|
504
|
-
- app/views/carnival/shared/_extra.html.haml
|
|
505
|
-
- app/views/carnival/shared/_extra_item.html.haml
|
|
506
|
-
- app/views/carnival/shared/_header.pdf.haml
|
|
507
|
-
- app/views/carnival/shared/_item_buttons.html.haml
|
|
508
|
-
- app/views/carnival/shared/_list_cel.pdf.haml
|
|
509
|
-
- app/views/carnival/shared/_period_filter.html.haml
|
|
510
|
-
- app/views/carnival/shared/_photo_field.html.haml
|
|
511
|
-
- app/views/carnival/shared/_report.pdf.haml
|
|
512
|
-
- app/views/carnival/shared/_scope.html.haml
|
|
513
|
-
- app/views/carnival/shared/_special_scope.html.haml
|
|
514
|
-
- app/views/carnival/shared/form/_edit.html.haml
|
|
515
|
-
- app/views/carnival/shared/form/_field.html.haml
|
|
516
|
-
- app/views/carnival/shared/form/_form.html.haml
|
|
517
|
-
- app/views/carnival/shared/form/_inner_form.html.haml
|
|
518
|
-
- app/views/carnival/shared/form/_nested_form.html.haml
|
|
519
|
-
- app/views/carnival/shared/form/_nested_form_options.html.haml
|
|
520
|
-
- app/views/carnival/shared/render_popup.js.erb
|
|
521
|
-
- app/views/carnival/shared/show/_show_as_list.html.haml
|
|
522
|
-
- app/views/layouts/carnival/_menu.html.haml
|
|
523
|
-
- app/views/layouts/carnival/admin.html.haml
|
|
561
|
+
- app/services/carnival/query_service.rb
|
|
562
|
+
- config/locales/carnival.pt-br.yml
|
|
563
|
+
- config/locales/carnival.en.yml
|
|
524
564
|
- config/initializers/simple_form.rb
|
|
525
565
|
- config/initializers/wicked_pdf.rb
|
|
526
|
-
- config/locales/carnival.en.yml
|
|
527
|
-
- config/locales/carnival.pt-br.yml
|
|
528
566
|
- config/routes.rb
|
|
529
567
|
- lib/carnival.rb
|
|
530
|
-
- lib/carnival/
|
|
568
|
+
- lib/carnival/version.rb
|
|
531
569
|
- lib/carnival/engine.rb
|
|
532
570
|
- lib/carnival/routes.rb
|
|
533
|
-
- lib/carnival/
|
|
571
|
+
- lib/carnival/config.rb
|
|
534
572
|
- lib/generators/carnival/install_generator.rb
|
|
535
573
|
- lib/generators/carnival/templates/carnival_initializer.rb
|
|
536
574
|
- lib/tasks/carnival_tasks.rake
|
|
575
|
+
- MIT-LICENSE
|
|
576
|
+
- Rakefile
|
|
537
577
|
- spec/dummy/README.rdoc
|
|
538
|
-
- spec/dummy/
|
|
539
|
-
- spec/dummy/app/assets/javascripts/application.js
|
|
540
|
-
- spec/dummy/app/assets/stylesheets/application.css
|
|
541
|
-
- spec/dummy/app/controllers/application_controller.rb
|
|
542
|
-
- spec/dummy/app/helpers/application_helper.rb
|
|
543
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
|
544
|
-
- spec/dummy/bin/bundle
|
|
578
|
+
- spec/dummy/bin/setup
|
|
545
579
|
- spec/dummy/bin/rails
|
|
580
|
+
- spec/dummy/bin/bundle
|
|
546
581
|
- spec/dummy/bin/rake
|
|
547
|
-
- spec/dummy/
|
|
548
|
-
- spec/dummy/config.ru
|
|
549
|
-
- spec/dummy/config/application.rb
|
|
550
|
-
- spec/dummy/config/boot.rb
|
|
551
|
-
- spec/dummy/config/database.yml
|
|
552
|
-
- spec/dummy/config/environment.rb
|
|
553
|
-
- spec/dummy/config/environments/development.rb
|
|
582
|
+
- spec/dummy/config/locales/en.yml
|
|
554
583
|
- spec/dummy/config/environments/production.rb
|
|
584
|
+
- spec/dummy/config/environments/development.rb
|
|
555
585
|
- spec/dummy/config/environments/test.rb
|
|
556
|
-
- spec/dummy/config/
|
|
557
|
-
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
586
|
+
- spec/dummy/config/secrets.yml
|
|
558
587
|
- spec/dummy/config/initializers/cookies_serializer.rb
|
|
559
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
560
|
-
- spec/dummy/config/initializers/inflections.rb
|
|
561
|
-
- spec/dummy/config/initializers/mime_types.rb
|
|
562
588
|
- spec/dummy/config/initializers/session_store.rb
|
|
589
|
+
- spec/dummy/config/initializers/inflections.rb
|
|
590
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
591
|
+
- spec/dummy/config/initializers/assets.rb
|
|
563
592
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
564
|
-
- spec/dummy/config/
|
|
593
|
+
- spec/dummy/config/initializers/mime_types.rb
|
|
594
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
595
|
+
- spec/dummy/config/application.rb
|
|
596
|
+
- spec/dummy/config/database.yml
|
|
597
|
+
- spec/dummy/config/boot.rb
|
|
565
598
|
- spec/dummy/config/routes.rb
|
|
566
|
-
- spec/dummy/config/
|
|
567
|
-
- spec/dummy/
|
|
599
|
+
- spec/dummy/config/environment.rb
|
|
600
|
+
- spec/dummy/Rakefile
|
|
601
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
602
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
603
|
+
- spec/dummy/app/helpers/application_helper.rb
|
|
604
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
605
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
606
|
+
- spec/dummy/config.ru
|
|
568
607
|
- spec/dummy/public/422.html
|
|
569
608
|
- spec/dummy/public/500.html
|
|
570
609
|
- spec/dummy/public/favicon.ico
|
|
610
|
+
- spec/dummy/public/404.html
|
|
571
611
|
- spec/rails_helper.rb
|
|
572
612
|
- spec/spec_helper.rb
|
|
573
613
|
homepage: https://github.com/Vizir/carnival
|
|
574
614
|
licenses: []
|
|
575
|
-
metadata: {}
|
|
576
615
|
post_install_message:
|
|
577
616
|
rdoc_options: []
|
|
578
617
|
require_paths:
|
|
579
618
|
- lib
|
|
580
619
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
620
|
+
none: false
|
|
581
621
|
requirements:
|
|
582
|
-
- - '>='
|
|
622
|
+
- - ! '>='
|
|
583
623
|
- !ruby/object:Gem::Version
|
|
584
624
|
version: '0'
|
|
585
625
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
626
|
+
none: false
|
|
586
627
|
requirements:
|
|
587
|
-
- - '>='
|
|
628
|
+
- - ! '>='
|
|
588
629
|
- !ruby/object:Gem::Version
|
|
589
630
|
version: '0'
|
|
590
631
|
requirements: []
|
|
591
632
|
rubyforge_project:
|
|
592
|
-
rubygems_version:
|
|
633
|
+
rubygems_version: 1.8.23
|
|
593
634
|
signing_key:
|
|
594
|
-
specification_version:
|
|
635
|
+
specification_version: 3
|
|
595
636
|
summary: Carnival is an easy-to-use and extensible Rails Engine to speed the development
|
|
596
637
|
of data management interfaces.
|
|
597
638
|
test_files:
|
|
598
|
-
- spec/dummy/
|
|
599
|
-
- spec/dummy/
|
|
600
|
-
- spec/dummy/app/controllers/application_controller.rb
|
|
601
|
-
- spec/dummy/app/helpers/application_helper.rb
|
|
602
|
-
- spec/dummy/app/views/layouts/application.html.erb
|
|
603
|
-
- spec/dummy/bin/bundle
|
|
639
|
+
- spec/dummy/README.rdoc
|
|
640
|
+
- spec/dummy/bin/setup
|
|
604
641
|
- spec/dummy/bin/rails
|
|
642
|
+
- spec/dummy/bin/bundle
|
|
605
643
|
- spec/dummy/bin/rake
|
|
606
|
-
- spec/dummy/
|
|
607
|
-
- spec/dummy/config/application.rb
|
|
608
|
-
- spec/dummy/config/boot.rb
|
|
609
|
-
- spec/dummy/config/database.yml
|
|
610
|
-
- spec/dummy/config/environment.rb
|
|
611
|
-
- spec/dummy/config/environments/development.rb
|
|
644
|
+
- spec/dummy/config/locales/en.yml
|
|
612
645
|
- spec/dummy/config/environments/production.rb
|
|
646
|
+
- spec/dummy/config/environments/development.rb
|
|
613
647
|
- spec/dummy/config/environments/test.rb
|
|
614
|
-
- spec/dummy/config/
|
|
615
|
-
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
648
|
+
- spec/dummy/config/secrets.yml
|
|
616
649
|
- spec/dummy/config/initializers/cookies_serializer.rb
|
|
617
|
-
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
618
|
-
- spec/dummy/config/initializers/inflections.rb
|
|
619
|
-
- spec/dummy/config/initializers/mime_types.rb
|
|
620
650
|
- spec/dummy/config/initializers/session_store.rb
|
|
651
|
+
- spec/dummy/config/initializers/inflections.rb
|
|
652
|
+
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
653
|
+
- spec/dummy/config/initializers/assets.rb
|
|
621
654
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
622
|
-
- spec/dummy/config/
|
|
655
|
+
- spec/dummy/config/initializers/mime_types.rb
|
|
656
|
+
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
657
|
+
- spec/dummy/config/application.rb
|
|
658
|
+
- spec/dummy/config/database.yml
|
|
659
|
+
- spec/dummy/config/boot.rb
|
|
623
660
|
- spec/dummy/config/routes.rb
|
|
624
|
-
- spec/dummy/config/
|
|
661
|
+
- spec/dummy/config/environment.rb
|
|
662
|
+
- spec/dummy/Rakefile
|
|
663
|
+
- spec/dummy/app/controllers/application_controller.rb
|
|
664
|
+
- spec/dummy/app/views/layouts/application.html.erb
|
|
665
|
+
- spec/dummy/app/helpers/application_helper.rb
|
|
666
|
+
- spec/dummy/app/assets/javascripts/application.js
|
|
667
|
+
- spec/dummy/app/assets/stylesheets/application.css
|
|
625
668
|
- spec/dummy/config.ru
|
|
626
|
-
- spec/dummy/public/404.html
|
|
627
669
|
- spec/dummy/public/422.html
|
|
628
670
|
- spec/dummy/public/500.html
|
|
629
671
|
- spec/dummy/public/favicon.ico
|
|
630
|
-
- spec/dummy/
|
|
631
|
-
- spec/dummy/README.rdoc
|
|
672
|
+
- spec/dummy/public/404.html
|
|
632
673
|
- spec/rails_helper.rb
|
|
633
674
|
- spec/spec_helper.rb
|