caboose-cms 0.4.147 → 0.4.148

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDhmMjA2ZGYyYWRmZmU0NmUwZTc2ZmVhZjc4ZTQ4NGJhYzQyMzM3Zg==
4
+ Mzg3MWE3ZjgxMDk0MTJjMWNkZTQwNjQyOGU2MGQ5ODkyYTM2ZjdjOQ==
5
5
  data.tar.gz: !binary |-
6
- MmQ5NzA4MmEwNjJlZmVkNjcxZTdkMGE1ODI1ZDU0NWJlNGFjMzcyNw==
6
+ NjExNDkwZTcyODczMTNmNTg0MTc5ZGEyZmE0MjcxNmU2YjFiOGU4NQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- Y2U4YjlmYzg5NTZlMjM0MDc3YmMxN2NlOGMxZDQ2YjdlMGNiNmZhNWQ2Yzlk
10
- YWM0NTMzYTVjZDhhYjM1ZDM3ZjY3MjE1YTk5YjhmNTgzNjgwMTUzZjU4NTZj
11
- MGQ4NzgzYTVlOGM0Mjc5YmM0MTY3OGZiODU3NGEwMTc5M2I4NGM=
9
+ NTcxOTg0MDA4MjBhNzYzZTMzZGQxNzlhNmVjZDBmMmJjY2NjOGM1YTljYTQ3
10
+ MzI0NGVmYTIwMzJhZTU4NjFiZGVjM2NlNTc0MDY3MTU0OTQ3NTk3YjEzMjFl
11
+ NTViMDJhYmY1M2QxMDFmNWFkOGIyZWVlY2EyMDdmMTVkNDgyMWM=
12
12
  data.tar.gz: !binary |-
13
- NWE2ZTM2ZjQzZGVkOWIxYTA5NzM2MzhmNDZlMzk1MDBlM2I0ZDU1NzE0Mzkx
14
- ZTgwMDA1MDkyNTRhNDQzMDk0N2NiZjhkYTM1NzQ3MWQwNjUxMzkyOTMxOGU4
15
- OTAxMDFhNTc4YTBkMWUwZDZjMDAyZDZmMzI5YzNjZjgxOTNjMGY=
13
+ OGY0OWQzYmJhYTJkNzE2NTY1ZmFkZjUxNzA4NWNhZDBkNGM0YzY3MTZjMjhj
14
+ YTNhZjE4MzEzMzE2NzRmZGNmNmMzNmIzN2E2YzgzMGJiNzNhMjA3NTUxZWJh
15
+ YWY5ZjYxOTEyNGI1MjJmMGE5YjI5MzI5YjBhZTU0MTEyMjE4MDg=
@@ -88,15 +88,15 @@ $(document).ready(function() {
88
88
  fields: [
89
89
  { name: 'parent_id' , sort: 'parent_id' , show: false , bulk_edit: false, nice_name: 'Parent' , type: 'select' , value: function(bt) { return bt.parent_id; }, width: 400, options_url: '/admin/block-types/tree-options' },
90
90
  { name: 'name' , sort: 'name' , show: true , bulk_edit: false, nice_name: 'Name' , type: 'text' , value: function(bt) { return bt.name; }, width: 400 },
91
- { name: 'description' , sort: 'description' , show: true , bulk_edit: false, nice_name: 'Description' , type: 'text' , value: function(bt) { return bt.description; }, width: 400 },
91
+ { name: 'description' , sort: 'description' , show: true , bulk_edit: false, nice_name: 'Description' , type: 'text' , value: function(bt) { return bt.description; }, width: 400 },
92
+ { name: 'field_type' , sort: 'field_type' , show: true , bulk_edit: false, nice_name: 'Field type' , type: 'select' , value: function(bt) { return bt.field_type; }, width: 400, options_url: '/admin/block-types/field-type-options' },
92
93
  { name: 'block_type_category_id' , sort: 'block_type_category_id' , show: false , bulk_edit: false, nice_name: 'Category' , type: 'select' , value: function(bt) { return bt.block_type_category_id; }, width: 400, options_url: '/admin/block-type-categories/tree-options' },
93
94
  { name: 'is_global' , sort: 'is_global' , show: false , bulk_edit: false, nice_name: 'Global' , type: 'checkbox' , value: function(bt) { return bt.is_global; }, width: 400 },
94
- { name: 'use_render_function' , sort: 'use_render_function' , show: false , bulk_edit: false, nice_name: 'Use Render Function' , type: 'checkbox' , value: function(bt) { return bt.use_render_function; }, width: 400 },
95
- { name: 'use_render_function_for_layout' , sort: 'use_render_function_for_layout' , show: false , bulk_edit: false, nice_name: 'Use Render Function for Layout' , type: 'checkbox' , value: function(bt) { return bt.use_render_function_for_layout; }, width: 400 },
96
- { name: 'allow_child_blocks' , sort: 'allow_child_blocks' , show: false , bulk_edit: false, nice_name: 'Allow Child Blocks' , type: 'checkbox' , value: function(bt) { return bt.allow_child_blocks; }, width: 400 },
95
+ { name: 'use_render_function' , sort: 'use_render_function' , show: true , bulk_edit: false, nice_name: 'Use Render Function' , type: 'checkbox' , value: function(bt) { return bt.use_render_function; }, width: 400 },
96
+ { name: 'use_render_function_for_layout' , sort: 'use_render_function_for_layout' , show: true , bulk_edit: false, nice_name: 'Use Render Function for Layout' , type: 'checkbox' , value: function(bt) { return bt.use_render_function_for_layout; }, width: 400 },
97
+ { name: 'allow_child_blocks' , sort: 'allow_child_blocks' , show: true , bulk_edit: false, nice_name: 'Allow Child Blocks' , type: 'checkbox' , value: function(bt) { return bt.allow_child_blocks; }, width: 400 },
97
98
  { name: 'default_child_block_type_id' , sort: 'default_child_block_type_id' , show: false , bulk_edit: false, nice_name: 'Default Child Block Type' , type: 'select' , value: function(bt) { return bt.default_child_block_type_id; }, width: 400, options_url: '/admin/block-types/options' },
98
- { name: 'render_function' , sort: 'render_function' , show: false , bulk_edit: false, nice_name: 'Render Function' , type: 'textarea' , value: function(bt) { return bt.render_function; }, width: 800, height: 200 },
99
- { name: 'field_type' , sort: 'field_type' , show: false , bulk_edit: false, nice_name: 'Field type' , type: 'select' , value: function(bt) { return bt.field_type; }, width: 400, options_url: '/admin/block-types/field-type-options' },
99
+ { name: 'render_function' , sort: 'render_function' , show: false , bulk_edit: false, nice_name: 'Render Function' , type: 'textarea' , value: function(bt) { return bt.render_function; }, width: 800, height: 200 },
100
100
  { name: 'default' , sort: 'default' , show: false , bulk_edit: false, nice_name: 'Default value' , type: 'text' , value: function(bt) { return bt.default; }, width: 400 },
101
101
  { name: 'width' , sort: 'width' , show: false , bulk_edit: false, nice_name: 'Width' , type: 'text' , value: function(bt) { return bt.width; }, width: 400 },
102
102
  { name: 'height' , sort: 'height' , show: false , bulk_edit: false, nice_name: 'Height' , type: 'text' , value: function(bt) { return bt.height; }, width: 400 },
@@ -1,3 +1,3 @@
1
1
  module Caboose
2
- VERSION = '0.4.147'
2
+ VERSION = '0.4.148'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caboose-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.147
4
+ version: 0.4.148
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Barry