refinerycms-core 4.0.3 → 4.1.0
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.
- checksums.yaml +4 -4
- data/app/assets/config/refinery_core_manifest.js +9 -1
- data/app/assets/images/refinery/logo-large.png +0 -0
- data/app/assets/images/refinery/logo-medium.png +0 -0
- data/app/assets/images/refinery/logo-site-bar.png +0 -0
- data/app/assets/images/refinery/logo-small-medium.png +0 -0
- data/app/assets/images/refinery/logo-small.png +0 -0
- data/app/assets/images/refinery/logo-tiny.png +0 -0
- data/app/assets/images/refinery/logo.png +0 -0
- data/app/assets/images/refinery/refinery-cms-logo.svg +1 -558
- data/app/assets/javascripts/refinery/admin.js.erb +37 -21
- data/app/assets/javascripts/refinery/ajaxy_pagination.js +16 -0
- data/app/assets/javascripts/refinery/image_crop.js +101 -0
- data/app/assets/javascripts/refinery/interface.js.erb +42 -0
- data/app/assets/javascripts/refinery/refinery.js.erb +3 -3
- data/app/assets/javascripts/refinery/submit_continue.js.erb +23 -0
- data/app/assets/stylesheets/refinery/components/_file_type_icons.scss +36 -0
- data/app/assets/stylesheets/refinery/components/_icons.scss +89 -47
- data/app/assets/stylesheets/refinery/global/_colours.scss +12 -5
- data/app/assets/stylesheets/refinery/mixins/_images.scss +99 -0
- data/app/assets/stylesheets/refinery/mixins/_locales.scss +22 -0
- data/app/assets/stylesheets/refinery/mixins/_rounded.scss +9 -23
- data/app/assets/stylesheets/refinery/plugins/_ui.scss +7 -4
- data/app/assets/stylesheets/refinery/refinery.scss +4 -1
- data/app/assets/stylesheets/refinery/sections/_layout.scss +490 -265
- data/app/controllers/refinery/admin/dialogs_controller.rb +6 -6
- data/app/helpers/refinery/action_helper.rb +75 -0
- data/app/helpers/refinery/icon_helper.rb +51 -0
- data/app/helpers/refinery/image_helper.rb +1 -1
- data/app/helpers/refinery/pagination_helper.rb +1 -0
- data/app/helpers/refinery/site_bar_helper.rb +10 -7
- data/app/helpers/refinery/tag_helper.rb +5 -36
- data/app/helpers/refinery/translation_helper.rb +12 -1
- data/app/views/refinery/_head.html.erb +1 -0
- data/app/views/refinery/_matomo_analytics.html.erb +18 -0
- data/app/views/refinery/_site_bar.html.erb +9 -9
- data/app/views/refinery/admin/_error_messages.html.erb +4 -4
- data/app/views/refinery/admin/_locale_picker.html.erb +8 -14
- data/config/initializers/assets.rb +5 -1
- data/config/initializers/zeitwerk.rb +12 -0
- data/config/locales/en.yml +3 -1
- data/config/locales/sk.yml +7 -0
- data/lib/generators/refinery/cms/cms_generator.rb +24 -20
- data/lib/generators/refinery/core/templates/config/initializers/refinery/core.rb.erb +5 -0
- data/lib/generators/refinery/dummy/dummy_generator.rb +32 -10
- data/lib/generators/refinery/dummy/templates/rails/application.rb.erb +27 -7
- data/lib/generators/refinery/dummy/templates/rails/boot.rb.erb +1 -2
- data/lib/generators/refinery/dummy/templates/rails/database.yml +55 -14
- data/lib/generators/refinery/dummy/templates/rails/manifest.js +3 -0
- data/lib/generators/refinery/dummy/templates/rails/storage.yml +7 -0
- data/lib/generators/refinery/engine/engine_generator.rb +1 -0
- data/lib/generators/refinery/engine/templates/Gemfile +1 -2
- data/lib/generators/refinery/engine/templates/Rakefile +2 -2
- data/lib/generators/refinery/engine/templates/app/controllers/refinery/namespace/admin/plural_name_controller.rb.erb +1 -1
- data/lib/generators/refinery/engine/templates/app/controllers/refinery/namespace/plural_name_controller.rb.erb +1 -1
- data/lib/generators/refinery/engine/templates/app/models/refinery/namespace/singular_name.rb.erb +1 -0
- data/lib/generators/refinery/engine/templates/app/views/refinery/namespace/admin/plural_name/_form.html.erb +1 -1
- data/lib/generators/refinery/engine/templates/db/migrate/1_create_namespace_plural_name.rb.erb +15 -4
- data/lib/generators/refinery/engine/templates/lib/generators/refinery/extension_plural_name_generator.rb.erb +1 -1
- data/lib/generators/refinery/engine/templates/lib/refinery/plural_name.rb.erb +1 -1
- data/lib/refinery/admin/base_controller.rb +2 -2
- data/lib/refinery/application_controller.rb +1 -2
- data/lib/refinery/cli.rb +1 -1
- data/lib/refinery/core/configuration.rb +4 -1
- data/lib/refinery/core/engine.rb +20 -0
- data/lib/refinery/core.rb +0 -1
- data/lib/refinery/crud.rb +33 -32
- data/lib/refinery/extension_generation.rb +55 -8
- data/lib/refinery/generators/generated_attribute.rb +13 -0
- data/lib/refinery/plugins.rb +1 -1
- data/lib/refinery/version.rb +4 -4
- data/lib/refinery.rb +9 -2
- data/lib/refinerycms/core.rb +1 -0
- data/lib/tasks/refinery.rake +3 -3
- data/refinerycms-core.gemspec +21 -27
- data/spec/controllers/refinery/sitemap_controller_spec.rb +1 -1
- data/spec/helpers/refinery/tag_helper_spec.rb +1 -1
- data/spec/helpers/refinery/translation_helper_spec.rb +46 -10
- data/spec/lib/generators/refinery/cms/cms_generator_spec.rb +6 -6
- data/spec/lib/generators/refinery/engine/engine_generator_multiple_resources_spec.rb +23 -2
- data/spec/lib/refinery/cli_spec.rb +2 -2
- data/spec/lib/refinery/{users_manager_spec.rb → core/users_manager_spec.rb} +1 -1
- data/spec/lib/refinery/crud_spec.rb +2 -1
- data/spec/presenters/refinery/translated_field_presenter_spec.rb +5 -7
- data/spec/support/refinery.rb +2 -2
- data/spec/{features → system}/refinery/admin/custom_assets_spec.rb +1 -1
- data/spec/system/refinery/admin/dialogs_spec.rb +29 -0
- data/spec/{features → system}/refinery/admin/xhr_paging_spec.rb +10 -7
- data/spec/{features → system}/refinery/application_layout_spec.rb +3 -4
- data/spec/{features → system}/refinery/core_spec.rb +1 -1
- data/spec/{features → system}/refinery/site_bar_spec.rb +5 -3
- data/vendor/assets/javascripts/canvas-to-blob.js +126 -0
- data/vendor/assets/javascripts/cropper.js +3715 -0
- data/vendor/assets/stylesheets/cropper.css +305 -0
- metadata +108 -171
- checksums.yaml.gz.sig +0 -0
- data/app/assets/javascripts/refinery/ajaxy_pagination.js.coffee +0 -10
- data/app/assets/javascripts/refinery/interface.js.coffee.erb +0 -33
- data/app/assets/javascripts/refinery/submit_continue.js.coffee.erb +0 -12
- data/spec/features/refinery/admin/dialogs_spec.rb +0 -29
- data/spec/support/database_cleaner.rb +0 -21
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -5
- /data/lib/generators/refinery/cms/templates/config/{database.yml.mysql → database.mysql.yml} +0 -0
- /data/lib/generators/refinery/cms/templates/config/{database.yml.postgresql → database.postgresql.yml} +0 -0
- /data/lib/generators/refinery/cms/templates/config/{database.yml.sqlite3 → database.sqlite3.yml} +0 -0
- /data/lib/refinery/{users_manager.rb → core/users_manager.rb} +0 -0
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Cropper.js v1.4.0
|
|
3
|
+
* https://fengyuanchen.github.io/cropperjs
|
|
4
|
+
*
|
|
5
|
+
* Copyright 2015-present Chen Fengyuan
|
|
6
|
+
* Released under the MIT license
|
|
7
|
+
*
|
|
8
|
+
* Date: 2018-06-01T15:18:09.891Z
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
.cropper-container {
|
|
12
|
+
direction: ltr;
|
|
13
|
+
font-size: 0;
|
|
14
|
+
line-height: 0;
|
|
15
|
+
position: relative;
|
|
16
|
+
-ms-touch-action: none;
|
|
17
|
+
touch-action: none;
|
|
18
|
+
-webkit-user-select: none;
|
|
19
|
+
-moz-user-select: none;
|
|
20
|
+
-ms-user-select: none;
|
|
21
|
+
user-select: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.cropper-container img {/*Avoid margin top issue (Occur only when margin-top <= -height)
|
|
25
|
+
*/
|
|
26
|
+
display: block;
|
|
27
|
+
height: 100%;
|
|
28
|
+
image-orientation: 0deg;
|
|
29
|
+
max-height: none !important;
|
|
30
|
+
max-width: none !important;
|
|
31
|
+
min-height: 0 !important;
|
|
32
|
+
min-width: 0 !important;
|
|
33
|
+
width: 100%;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.cropper-wrap-box,
|
|
37
|
+
.cropper-canvas,
|
|
38
|
+
.cropper-drag-box,
|
|
39
|
+
.cropper-crop-box,
|
|
40
|
+
.cropper-modal {
|
|
41
|
+
bottom: 0;
|
|
42
|
+
left: 0;
|
|
43
|
+
position: absolute;
|
|
44
|
+
right: 0;
|
|
45
|
+
top: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.cropper-wrap-box,
|
|
49
|
+
.cropper-canvas {
|
|
50
|
+
overflow: hidden;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.cropper-drag-box {
|
|
54
|
+
background-color: #fff;
|
|
55
|
+
opacity: 0;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.cropper-modal {
|
|
59
|
+
background-color: #000;
|
|
60
|
+
opacity: .5;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.cropper-view-box {
|
|
64
|
+
display: block;
|
|
65
|
+
height: 100%;
|
|
66
|
+
outline-color: rgba(51, 153, 255, 0.75);
|
|
67
|
+
outline: 1px solid #39f;
|
|
68
|
+
overflow: hidden;
|
|
69
|
+
width: 100%;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.cropper-dashed {
|
|
73
|
+
border: 0 dashed #eee;
|
|
74
|
+
display: block;
|
|
75
|
+
opacity: .5;
|
|
76
|
+
position: absolute;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.cropper-dashed.dashed-h {
|
|
80
|
+
border-bottom-width: 1px;
|
|
81
|
+
border-top-width: 1px;
|
|
82
|
+
height: 33.33333%;
|
|
83
|
+
left: 0;
|
|
84
|
+
top: 33.33333%;
|
|
85
|
+
width: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.cropper-dashed.dashed-v {
|
|
89
|
+
border-left-width: 1px;
|
|
90
|
+
border-right-width: 1px;
|
|
91
|
+
height: 100%;
|
|
92
|
+
left: 33.33333%;
|
|
93
|
+
top: 0;
|
|
94
|
+
width: 33.33333%;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.cropper-center {
|
|
98
|
+
display: block;
|
|
99
|
+
height: 0;
|
|
100
|
+
left: 50%;
|
|
101
|
+
opacity: .75;
|
|
102
|
+
position: absolute;
|
|
103
|
+
top: 50%;
|
|
104
|
+
width: 0;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.cropper-center:before,
|
|
108
|
+
.cropper-center:after {
|
|
109
|
+
background-color: #eee;
|
|
110
|
+
content: ' ';
|
|
111
|
+
display: block;
|
|
112
|
+
position: absolute;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.cropper-center:before {
|
|
116
|
+
height: 1px;
|
|
117
|
+
left: -3px;
|
|
118
|
+
top: 0;
|
|
119
|
+
width: 7px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.cropper-center:after {
|
|
123
|
+
height: 7px;
|
|
124
|
+
left: 0;
|
|
125
|
+
top: -3px;
|
|
126
|
+
width: 1px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.cropper-face,
|
|
130
|
+
.cropper-line,
|
|
131
|
+
.cropper-point {
|
|
132
|
+
display: block;
|
|
133
|
+
height: 100%;
|
|
134
|
+
opacity: .1;
|
|
135
|
+
position: absolute;
|
|
136
|
+
width: 100%;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.cropper-face {
|
|
140
|
+
background-color: #fff;
|
|
141
|
+
left: 0;
|
|
142
|
+
top: 0;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.cropper-line {
|
|
146
|
+
background-color: #39f;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.cropper-line.line-e {
|
|
150
|
+
cursor: ew-resize;
|
|
151
|
+
right: -3px;
|
|
152
|
+
top: 0;
|
|
153
|
+
width: 5px;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.cropper-line.line-n {
|
|
157
|
+
cursor: ns-resize;
|
|
158
|
+
height: 5px;
|
|
159
|
+
left: 0;
|
|
160
|
+
top: -3px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.cropper-line.line-w {
|
|
164
|
+
cursor: ew-resize;
|
|
165
|
+
left: -3px;
|
|
166
|
+
top: 0;
|
|
167
|
+
width: 5px;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.cropper-line.line-s {
|
|
171
|
+
bottom: -3px;
|
|
172
|
+
cursor: ns-resize;
|
|
173
|
+
height: 5px;
|
|
174
|
+
left: 0;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.cropper-point {
|
|
178
|
+
background-color: #39f;
|
|
179
|
+
height: 5px;
|
|
180
|
+
opacity: .75;
|
|
181
|
+
width: 5px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.cropper-point.point-e {
|
|
185
|
+
cursor: ew-resize;
|
|
186
|
+
margin-top: -3px;
|
|
187
|
+
right: -3px;
|
|
188
|
+
top: 50%;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.cropper-point.point-n {
|
|
192
|
+
cursor: ns-resize;
|
|
193
|
+
left: 50%;
|
|
194
|
+
margin-left: -3px;
|
|
195
|
+
top: -3px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.cropper-point.point-w {
|
|
199
|
+
cursor: ew-resize;
|
|
200
|
+
left: -3px;
|
|
201
|
+
margin-top: -3px;
|
|
202
|
+
top: 50%;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.cropper-point.point-s {
|
|
206
|
+
bottom: -3px;
|
|
207
|
+
cursor: s-resize;
|
|
208
|
+
left: 50%;
|
|
209
|
+
margin-left: -3px;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.cropper-point.point-ne {
|
|
213
|
+
cursor: nesw-resize;
|
|
214
|
+
right: -3px;
|
|
215
|
+
top: -3px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.cropper-point.point-nw {
|
|
219
|
+
cursor: nwse-resize;
|
|
220
|
+
left: -3px;
|
|
221
|
+
top: -3px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.cropper-point.point-sw {
|
|
225
|
+
bottom: -3px;
|
|
226
|
+
cursor: nesw-resize;
|
|
227
|
+
left: -3px;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.cropper-point.point-se {
|
|
231
|
+
bottom: -3px;
|
|
232
|
+
cursor: nwse-resize;
|
|
233
|
+
height: 20px;
|
|
234
|
+
opacity: 1;
|
|
235
|
+
right: -3px;
|
|
236
|
+
width: 20px;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
@media (min-width: 768px) {
|
|
240
|
+
.cropper-point.point-se {
|
|
241
|
+
height: 15px;
|
|
242
|
+
width: 15px;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
@media (min-width: 992px) {
|
|
247
|
+
.cropper-point.point-se {
|
|
248
|
+
height: 10px;
|
|
249
|
+
width: 10px;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
@media (min-width: 1200px) {
|
|
254
|
+
.cropper-point.point-se {
|
|
255
|
+
height: 5px;
|
|
256
|
+
opacity: .75;
|
|
257
|
+
width: 5px;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.cropper-point.point-se:before {
|
|
262
|
+
background-color: #39f;
|
|
263
|
+
bottom: -50%;
|
|
264
|
+
content: ' ';
|
|
265
|
+
display: block;
|
|
266
|
+
height: 200%;
|
|
267
|
+
opacity: 0;
|
|
268
|
+
position: absolute;
|
|
269
|
+
right: -50%;
|
|
270
|
+
width: 200%;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.cropper-invisible {
|
|
274
|
+
opacity: 0;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.cropper-bg {
|
|
278
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.cropper-hide {
|
|
282
|
+
display: block;
|
|
283
|
+
height: 0;
|
|
284
|
+
position: absolute;
|
|
285
|
+
width: 0;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.cropper-hidden {
|
|
289
|
+
display: none !important;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.cropper-move {
|
|
293
|
+
cursor: move;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.cropper-crop {
|
|
297
|
+
cursor: crosshair;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.cropper-disabled .cropper-drag-box,
|
|
301
|
+
.cropper-disabled .cropper-face,
|
|
302
|
+
.cropper-disabled .cropper-line,
|
|
303
|
+
.cropper-disabled .cropper-point {
|
|
304
|
+
cursor: not-allowed;
|
|
305
|
+
}
|