card 1.98.3 → 1.99.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/config/locales/de.yml +7 -7
- data/config/locales/en.yml +7 -7
- data/config/locales/es.yml +7 -7
- data/db/migrate_core_cards/20150610180019_add_recaptcha_key_and_admin_info_cards.rb +3 -3
- data/db/migrate_core_cards/20160801143221_change_bootstrap_card_type_to_scss.rb +1 -1
- data/db/migrate_core_cards/20160804112510_reorganize_scripts.rb +1 -1
- data/db/migrate_core_cards/20160908154210_add_trash_card.rb +1 -1
- data/db/migrate_core_cards/20180508210903_add_json_type.rb +3 -3
- data/db/migrate_core_cards/20180712042655_head_rule.rb +1 -1
- data/db/migrate_core_cards/{20180905061536_migrate_layouts.rb → 20180905061537_migrate_layouts.rb} +12 -1
- data/db/migrate_core_cards/20190204195039_add_rule_card.rb +3 -0
- data/db/migrate_core_cards/20190320091257_upgrade_recaptcha_to_v3.rb +5 -6
- data/db/migrate_core_cards/20190417142612_reorganize_scripts_2.rb +3 -3
- data/db/migrate_core_cards/20190502130029_add_shark_and_help_desk_role.rb +4 -5
- data/db/migrate_core_cards/20190618110446_add_dropdown_divider.rb +1 -1
- data/db/migrate_core_cards/20190710090209_homepage_tweaks.rb +17 -0
- data/db/migrate_core_cards/20190820155833_update_cardtype_type_structure.rb +7 -0
- data/db/migrate_core_cards/20190822093633_move_help_text_to_code.rb +38 -0
- data/db/migrate_core_cards/20190823220018_cleanup_for_decko_1_0.rb +21 -0
- data/db/migrate_core_cards/20190826132738_add_more_guides.rb +7 -0
- data/db/migrate_core_cards/20190829093961_cardtype_grouping.rb +16 -0
- data/db/migrate_core_cards/20190829205148_remove_add_help.rb +14 -0
- data/db/migrate_core_cards/20190830131820_setting_settings_aside.rb +17 -0
- data/db/migrate_core_cards/20190902161223_add_style_media.rb +7 -0
- data/db/migrate_core_cards/20190902193208_input_type.rb +22 -0
- data/db/migrate_core_cards/20190904174403_token_upgrade.rb +14 -0
- data/db/migrate_core_cards/20190909104250_add_cardtype_input_types.rb +10 -0
- data/db/migrate_core_cards/20190918200115_ensure_description_card.rb +13 -0
- data/db/migrate_core_cards/data/cards.yml +12 -8
- data/db/migrate_core_cards/data/cards/Xaccount +22 -0
- data/db/migrate_core_cards/data/cards/Xgetting_started +5 -5
- data/db/migrate_core_cards/data/cards/{Xgetting_started-link → Xgetting_started_link} +0 -0
- data/db/migrate_core_cards/data/cards/Xmain_menu +1 -1
- data/db/migrate_core_cards/data/cards/Xstructure-Xright-Xguide +12 -0
- data/db/migrate_core_cards/data/cards/administrator-dashboard +5 -0
- data/db/migrate_core_cards/data/cards/cardtype-Xtype-Xguide +24 -0
- data/db/migrate_core_cards/data/cards/cardtype-Xtype-Xstructure +3 -3
- data/db/migrate_core_cards/data/cards/shark-dashboard +2 -2
- data/db/migrate_core_cards/data/mailer/password_reset_email.html +6 -3
- data/db/migrate_core_cards/data/mailer/password_reset_email.txt +1 -1
- data/db/migrate_core_cards/data/mailer/verification_email.html +5 -2
- data/db/migrate_core_cards/data/mailer/verification_email.txt +2 -1
- data/db/seed/README.md +1 -1
- data/db/seed/new/card_actions.yml +2118 -2534
- data/db/seed/new/card_acts.yml +2 -2
- data/db/seed/new/card_references.yml +2326 -2466
- data/db/seed/new/cards.yml +2654 -3713
- data/db/seed/new/schema_migrations_core_cards.yml +77 -39
- data/db/seed/test/fixtures/card_actions.yml +3225 -3681
- data/db/seed/test/fixtures/card_acts.yml +503 -509
- data/db/seed/test/fixtures/card_changes.yml +66 -66
- data/db/seed/test/fixtures/card_references.yml +3135 -3275
- data/db/seed/test/fixtures/cards.yml +4187 -5516
- data/db/seed/test/fixtures/schema_migrations_core_cards.yml +77 -39
- data/db/{seed/test/seed.rb → test_seed.rb} +13 -11
- data/lib/card/auth.rb +1 -0
- data/lib/card/auth/current.rb +25 -27
- data/lib/card/auth/setup.rb +13 -12
- data/lib/card/auth/token.rb +38 -0
- data/lib/card/content.rb +34 -7
- data/lib/card/content/clean.rb +2 -1
- data/lib/card/content/truncate.rb +2 -0
- data/lib/card/env/success.rb +1 -14
- data/lib/card/error.rb +1 -0
- data/lib/card/format/content.rb +2 -2
- data/lib/card/format/error.rb +1 -1
- data/lib/card/format/nest.rb +1 -1
- data/lib/card/format/nesting.rb +2 -2
- data/lib/card/format/nesting/mode.rb +15 -15
- data/lib/card/mod/loader.rb +5 -0
- data/lib/card/model/save_helper.rb +2 -0
- data/lib/card/query.rb +1 -0
- data/lib/card/query/card_query/reference_attributes.rb +4 -2
- data/lib/card/seed_consts.rb +1 -1
- data/lib/card/set/format/abstract_format.rb +3 -5
- data/lib/card/set/format/abstract_format/view_opts.rb +1 -1
- data/lib/card/set/required_field.rb +8 -3
- data/lib/card/set_pattern.rb +10 -0
- data/lib/card/view/cache/stub.rb +3 -20
- data/lib/card/view/options.rb +4 -3
- data/lib/card/view/options/voo_api.rb +1 -1
- data/lib/cardio.rb +7 -1
- data/mod/Modfile +1 -0
- data/mod/account/set/abstract/account_field.rb +15 -0
- data/mod/account/set/abstract/accounted.rb +15 -0
- data/mod/account/set/all/account.rb +0 -4
- data/mod/account/set/right/account.rb +23 -151
- data/mod/account/set/right/account/events.rb +98 -0
- data/mod/account/set/right/account/views.rb +65 -0
- data/mod/account/set/right/api_key.rb +48 -0
- data/mod/account/set/right/email.rb +2 -2
- data/mod/account/set/right/password.rb +6 -9
- data/mod/account/set/right/salt.rb +5 -1
- data/mod/account/set/right/status.rb +10 -1
- data/mod/account/set/self/signin.rb +3 -3
- data/mod/account/set/type/role.rb +4 -0
- data/mod/account/set/type/signup.rb +31 -158
- data/mod/account/{template → set}/type/signup/core.haml +0 -0
- data/mod/account/set/type/signup/views.rb +93 -0
- data/mod/account/set/type/user.rb +16 -27
- data/mod/account/set/type/user/setup_help.haml +10 -0
- data/mod/account/spec/set/all/account_spec.rb +84 -98
- data/mod/account/spec/set/right/account_spec.rb +40 -33
- data/mod/account/spec/set/self/signin_spec.rb +2 -2
- data/mod/account/spec/set/type/signup_spec.rb +40 -78
- data/mod/ace_editor/db/migrate_core_cards/{20160805112548_delete_ace_help_card.rb → 20180805112548_delete_ace_help_card.rb} +1 -1
- data/mod/admin/set/self/debugger.rb +3 -0
- data/mod/admin/set/self/trash.rb +1 -1
- data/mod/basic_formats/set/all/all_css.rb +1 -1
- data/mod/basic_formats/set/all/all_csv.rb +1 -1
- data/mod/basic_formats/set/all/base.rb +19 -60
- data/mod/basic_formats/set/self/head.rb +1 -1
- data/mod/basic_types/set/type/html.rb +7 -3
- data/mod/basic_types/set/type/json.rb +1 -1
- data/mod/basic_types/set/type/plain_text.rb +1 -1
- data/mod/{standard → basic_types}/spec/set/type/html_spec.rb +6 -6
- data/mod/basic_types/spec/set/type/plain_text_spec.rb +7 -2
- data/mod/bootstrap/db/migrate_core_cards/20170719163733_update_bootswatch_themes_to_4_beta.rb +3 -3
- data/mod/bootstrap/db/migrate_core_cards/20180423160231_migrate_customized_bootstrap_skin.rb +2 -2
- data/mod/bootstrap/db/migrate_core_cards/20180423170283_add_type_bootswatch_skin.rb +1 -1
- data/mod/bootstrap/db/migrate_core_cards/lib/skin.rb +1 -1
- data/mod/bootstrap/lib/javascript/script_load_select2.js.coffee +26 -18
- data/mod/bootstrap/lib/stylesheets/style_bootstrap_cards.scss +18 -3
- data/mod/bootstrap/set/abstract/bootswatch_theme/html_views.rb +1 -1
- data/mod/bootstrap/set/all/bootstrap/helper.rb +9 -4
- data/mod/bootstrap/set/type/customized_bootswatch_skin.rb +1 -1
- data/mod/bootstrap/set/type_plus_right/customized_bootswatch_skin/colors.rb +1 -1
- data/mod/bootstrap/set/type_plus_right/customized_bootswatch_skin/colors/{editor.haml → input.haml} +0 -0
- data/mod/bootstrap/spec/set/all/bootstrap/form_spec.rb +2 -2
- data/mod/carrierwave/set/self/favicon.rb +5 -0
- data/mod/carrierwave/set/self/new_file.rb +1 -1
- data/mod/carrierwave/set/self/new_image.rb +1 -1
- data/mod/carrierwave/set/type/file.rb +1 -1
- data/mod/carrierwave/set/type/image.rb +2 -2
- data/mod/carrierwave/set/type/image/html_views.rb +0 -35
- data/mod/carrierwave/spec/set/type/image_spec.rb +1 -1
- data/mod/core/chunk/link.rb +4 -2
- data/mod/core/chunk/view_stub.rb +5 -4
- data/mod/core/set/abstract/code_file.rb +1 -1
- data/mod/core/set/all/codename.rb +2 -1
- data/mod/core/set/all/content.rb +59 -0
- data/mod/core/set/all/event_conditions.rb +17 -2
- data/mod/core/set/all/location_history.rb +1 -1
- data/mod/core/set/all/name.rb +1 -1
- data/mod/core/set/all/permissions.rb +6 -36
- data/mod/core/set/all/references.rb +9 -2
- data/mod/core/set/all/rules.rb +0 -5
- data/mod/core/set_pattern/03_type.rb +4 -0
- data/mod/core/set_pattern/07_right.rb +4 -0
- data/mod/core/set_pattern/08_type_plus_right.rb +4 -0
- data/mod/core/set_pattern/09_self.rb +4 -0
- data/mod/core/spec/chunk/link_spec.rb +6 -0
- data/mod/core/spec/chunk/nest_spec.rb +2 -2
- data/mod/core/spec/set/all/permissions_spec.rb +0 -10
- data/mod/core/spec/set/all/rules_spec.rb +6 -16
- data/mod/date/set/self/datepicker.rb +6 -0
- data/mod/date/set/type/date.rb +1 -1
- data/mod/date/spec/set/type/date_spec.rb +1 -1
- data/mod/edit/set/all/bridge/account_section.rb +16 -0
- data/mod/edit/set/all/bridge/bridge_pills.rb +47 -0
- data/mod/edit/set/all/bridge/related_section.rb +34 -0
- data/mod/edit/set/all/bridge/tab_views.rb +9 -40
- data/mod/edit/set/all/bridge/tab_visibility.rb +2 -2
- data/mod/edit/set/all/edit_content.rb +3 -3
- data/mod/edit/set/all/edit_inline.rb +15 -4
- data/mod/edit/set/all/edit_name.rb +5 -7
- data/mod/edit/set/all/edit_type.rb +25 -23
- data/mod/edit/set/all/editing.rb +5 -1
- data/mod/edit/set/all/editor.rb +28 -15
- data/mod/edit/set/all/form.rb +38 -17
- data/mod/edit/set/all/form_buttons.rb +11 -2
- data/mod/edit/set/all/formgroup.rb +5 -5
- data/mod/edit/set/all/nest_editor.rb +20 -4
- data/mod/edit/set/all/nest_editor/_help.haml +7 -0
- data/mod/edit/set/all/nest_editor/nest_editor.haml +3 -2
- data/mod/edit/set/all/new.rb +40 -23
- data/mod/edit/set/all/overlay_guide.haml +7 -0
- data/mod/edit/set/all/overlay_guide.rb +9 -0
- data/mod/edit/set/all/template_nest.rb +42 -0
- data/mod/edit/set/type/list.rb +15 -0
- data/mod/edit/set/type/plain_text.rb +13 -0
- data/mod/edit/set/type/pointer.rb +11 -0
- data/mod/edit/spec/set/all/bridge/tab_views_spec.rb +1 -1
- data/mod/email/set/all/email_html.rb +2 -2
- data/mod/email/set/all/email_text.rb +2 -2
- data/mod/follow/lib/card/follower_stash.rb +1 -1
- data/mod/follow/set/all/follow/followed_by.rb +1 -1
- data/mod/follow/set/all/notify/base_views.rb +3 -3
- data/mod/follow/set/right/following.rb +1 -1
- data/mod/follow/set/self/follow_defaults.rb +1 -1
- data/mod/follow/set/type/cardtype.rb +6 -0
- data/mod/follow/set/type_plus_right/user/follow.rb +1 -1
- data/mod/history/lib/card/act/act_renderer.rb +1 -1
- data/mod/history/lib/card/action.rb +2 -1
- data/mod/history/set/all/history_bridge.rb +0 -1
- data/mod/item/set/all/bar.rb +15 -7
- data/mod/machines/file/all_script_machine_output/file.js +38245 -69
- data/mod/machines/file/all_style_machine_output/file.css +4 -4
- data/mod/machines/file/script_html5shiv_printshiv_machine_output/file.js +1 -1
- data/mod/machines/lib/javascript/decko/bridge.js.coffee +4 -0
- data/mod/machines/lib/javascript/decko/card_menu.js.coffee +11 -0
- data/mod/machines/lib/javascript/decko/name_editor.js.coffee +1 -1
- data/mod/machines/lib/javascript/decko/nest_editor.js.coffee +3 -1
- data/mod/machines/lib/javascript/decko/nest_editor_name.js.coffee +29 -6
- data/mod/machines/lib/javascript/decko/overlay.js.coffee +3 -2
- data/mod/machines/lib/javascript/decko/slot.js.coffee +12 -2
- data/mod/machines/lib/stylesheets/style_cards.scss +43 -53
- data/mod/machines/lib/stylesheets/style_jquery_ui_smoothness.css +13 -13
- data/mod/machines/set/abstract/script.rb +1 -1
- data/mod/machines/set/type/css.rb +1 -1
- data/mod/media/lib/stylesheets/style_image_box.scss +79 -0
- data/mod/{utility → media}/set/abstract/media.rb +0 -0
- data/mod/{utility → media}/set/abstract/media/media_snippet.haml +0 -0
- data/mod/media/set/self/style_media.rb +6 -0
- data/mod/media/set/type/image.rb +38 -0
- data/mod/{utility → media}/spec/set/abstract/media_spec.rb +0 -0
- data/mod/navbar/set/right/enabled_roles.rb +1 -1
- data/mod/pointer/lib/javascript/script_pointer_config.js.coffee +13 -0
- data/mod/pointer/lib/javascript/script_pointer_list_editor.js.coffee +7 -2
- data/mod/pointer/set/abstract/02_pointer/html_views.rb +15 -6
- data/mod/pointer/set/abstract/02_pointer/html_views/checkbox_input.haml +1 -2
- data/mod/pointer/set/abstract/02_pointer/html_views/list_input.haml +1 -2
- data/mod/pointer/set/abstract/02_pointer/html_views/list_item.haml +2 -0
- data/mod/pointer/set/abstract/02_pointer/html_views/radio_input.haml +1 -2
- data/mod/pointer/set/abstract/02_pointer/options_api.rb +6 -13
- data/mod/pointer/set/right/{options.rb → content_options.rb} +0 -0
- data/mod/pointer/set/type/link_list.rb +23 -6
- data/mod/pointer/set/type/link_list/link_list_input.haml +24 -0
- data/mod/pointer/set/type/mirrored_list.rb +1 -1
- data/mod/pointer/spec/set/abstract/pointer/html_views_spec.rb +20 -18
- data/mod/pointer/spec/set/abstract/pointer/options_api_spec.rb +2 -1
- data/mod/pointer/spec/set/self/input_options_spec.rb +1 -1
- data/mod/rules/set/right/self.rb +3 -0
- data/mod/rules/set/rule/bar_view.rb +88 -0
- data/mod/rules/set/rule/bridge_rules_editor.rb +5 -10
- data/mod/rules/set/rule/editor.rb +40 -113
- data/mod/rules/set/rule/html_views.rb +13 -0
- data/mod/rules/set/rule/quick_editor.rb +39 -0
- data/mod/rules/set/rule/{editor → quick_editor}/quick_edit.haml +0 -0
- data/mod/rules/set/rule/{editor → quick_editor}/set_info.haml +1 -1
- data/mod/rules/set/rule/rule_form/buttons.rb +3 -1
- data/mod/rules/set/rule/rule_form/form_elements.rb +2 -2
- data/mod/rules/set/rule/rule_form/rule_set_radio.rb +3 -6
- data/mod/rules/set/rule/rule_form/set_selection.rb +3 -10
- data/mod/rules/set/rule/rules.rb +10 -1
- data/mod/rules/set/type/set.rb +37 -20
- data/mod/rules/set/type/set/html_views.rb +17 -35
- data/mod/rules/set/type/set/html_views/group_panel.haml +1 -1
- data/mod/rules/set/type/set/html_views/rule_lists.rb +42 -0
- data/mod/rules/set/type/set/html_views/template.rb +1 -32
- data/mod/rules/set/type/set/rules_filter.rb +24 -10
- data/mod/rules/set/type/set/setting_lists.rb +17 -24
- data/mod/rules/spec/set/rule/bar_view_spec.rb +15 -0
- data/mod/rules/spec/set/rule/editor_spec.rb +15 -1
- data/mod/rules/spec/set/type/set/html_views_spec.rb +0 -13
- data/mod/rules/spec/set/type/set/setting_lists_spec.rb +17 -0
- data/mod/rules/spec/set/type/set_spec.rb +3 -8
- data/mod/search/set/abstract/03_filter/form_helper.rb +9 -7
- data/mod/search/set/abstract/search/views.rb +2 -2
- data/mod/search/set/right/children.rb +4 -0
- data/mod/search/set/right/created.rb +3 -0
- data/mod/search/set/right/edited.rb +3 -0
- data/mod/search/set/right/editors.rb +3 -0
- data/mod/search/set/right/follow.rb +3 -0
- data/mod/search/set/right/linked_to_by.rb +3 -0
- data/mod/search/set/right/links_to.rb +3 -0
- data/mod/search/set/right/mates.rb +3 -0
- data/mod/search/set/right/nested_by.rb +3 -0
- data/mod/search/set/right/nests.rb +3 -0
- data/mod/search/set/right/referred_to_by.rb +3 -0
- data/mod/search/set/right/refers_to.rb +3 -0
- data/mod/search/set/self/search.rb +1 -1
- data/mod/search/set/type/search_type.rb +6 -5
- data/mod/settings/lib/card/setting.rb +17 -4
- data/mod/settings/set/abstract/permission.rb +6 -2
- data/mod/settings/set/all/supports_content_options.rb +7 -0
- data/mod/settings/set/right/content_option_view.rb +10 -0
- data/mod/settings/set/right/content_options.rb +18 -0
- data/mod/settings/set/right/default.rb +18 -2
- data/mod/settings/set/right/help.rb +2 -1
- data/mod/settings/set/right/input_type.rb +35 -0
- data/mod/settings/set/right/script.rb +6 -0
- data/mod/settings/set/right/structure.rb +7 -1
- data/mod/settings/set/right/style.rb +2 -2
- data/mod/settings/set/right/style/{editor.haml → input.haml} +0 -0
- data/mod/settings/set/self/autoname.rb +3 -1
- data/mod/settings/set/self/captcha.rb +4 -1
- data/mod/settings/set/self/content_option_view.rb +10 -0
- data/mod/settings/set/self/content_options.rb +10 -0
- data/mod/settings/set/self/create.rb +2 -1
- data/mod/settings/set/self/default.rb +1 -1
- data/mod/settings/set/self/delete.rb +2 -1
- data/mod/settings/set/self/guide.rb +1 -1
- data/mod/settings/set/self/head.rb +3 -1
- data/mod/settings/set/self/help.rb +3 -1
- data/mod/settings/set/self/input_type.rb +13 -0
- data/mod/settings/set/self/layout.rb +3 -1
- data/mod/settings/set/self/on_create.rb +2 -1
- data/mod/settings/set/self/on_delete.rb +2 -1
- data/mod/settings/set/self/on_update.rb +2 -1
- data/mod/settings/set/self/read.rb +2 -1
- data/mod/settings/set/self/structure.rb +3 -1
- data/mod/settings/set/self/style.rb +3 -1
- data/mod/settings/set/self/table_of_contents.rb +4 -1
- data/mod/settings/set/self/thanks.rb +3 -1
- data/mod/settings/set/self/update.rb +2 -1
- data/mod/settings/set/type/setting.rb +15 -37
- data/mod/settings/spec/set/right/comment_spec.rb +0 -27
- data/mod/settings/spec/set/right/create_spec.rb +1 -1
- data/mod/settings/spec/set/right/structure_spec.rb +13 -10
- data/mod/settings/spec/set/type/setting_spec.rb +1 -8
- data/mod/solid_cache/set/right/solid_cache.rb +3 -3
- data/mod/standard/set/all/comment.rb +1 -1
- data/mod/standard/set/all/error.rb +2 -2
- data/mod/standard/set/all/path.rb +7 -7
- data/mod/standard/set/all/rich_html/content.rb +41 -11
- data/mod/standard/set/all/rich_html/error.rb +14 -22
- data/mod/standard/set/all/rich_html/html_views/guide.rb +1 -1
- data/mod/standard/set/all/rich_html/html_views/help.rb +19 -7
- data/mod/standard/set/all/rich_html/html_views/info.rb +1 -1
- data/mod/standard/set/all/rich_html/menu.rb +50 -2
- data/mod/standard/set/all/rich_html/overlay.rb +23 -1
- data/mod/standard/set/all/rich_html/title.rb +3 -3
- data/mod/standard/set/right/discussion.rb +8 -2
- data/mod/standard/set/right/head.rb +4 -0
- data/mod/standard/set/right/type_plus_right.rb +4 -0
- data/mod/standard/set/self/cardtype.rb +42 -0
- data/mod/standard/set/self/sidebar.rb +5 -0
- data/mod/standard/set/type/basic.rb +1 -1
- data/mod/standard/set/type/cardtype.rb +25 -11
- data/mod/standard/set/type/number.rb +1 -1
- data/mod/standard/set/type/phrase.rb +1 -1
- data/mod/standard/set/type/toggle.rb +9 -1
- data/mod/standard/set/type/uri.rb +1 -1
- data/mod/standard/spec/set/all/error_spec.rb +1 -1
- data/mod/standard/spec/set/type/cardtype_spec.rb +4 -3
- data/mod/standard/spec/set/type/number_spec.rb +1 -1
- data/mod/standard/spec/set/type/phrase_spec.rb +1 -1
- data/mod/standard/spec/set/type/toggle_spec.rb +3 -4
- data/mod/standard/spec/set/type/uri_spec.rb +1 -1
- data/mod/tinymce_editor/set/self/tiny_mce.rb +7 -0
- metadata +116 -52
- data/db/migrate_core_cards/20190710090207_homepage_tweaks.rb +0 -12
- data/db/migrate_core_cards/data/cards/eagle-description +0 -1
- data/mod/account/set/right/token.rb +0 -55
- data/mod/account/spec/set/right/token_spec.rb +0 -23
- data/mod/bootstrap/set/abstract/bootswatch_theme/thumbnail.haml +0 -10
- data/mod/rules/set/rule/table.rb +0 -27
- data/mod/rules/set/rule/table_row.rb +0 -63
- data/mod/rules/set/type/set/html_views/nest_rules.rb +0 -14
- data/mod/rules/set/type/set/html_views/rules_bridge.rb +0 -21
- data/mod/rules/set/type/set/html_views/rules_table.haml +0 -11
- data/mod/rules/set/type/set/html_views/template/template_editor.haml +0 -6
- data/mod/rules/spec/set/rule/table_row_spec.rb +0 -9
- data/mod/rules/spec/set/rule/table_spec.rb +0 -15
- data/mod/settings/set/right/add_help.rb +0 -1
- data/mod/settings/set/self/accountable.rb +0 -3
- data/mod/settings/set/self/add_help.rb +0 -2
- data/mod/settings/set/self/input.rb +0 -3
- data/mod/settings/set/self/options.rb +0 -4
- data/mod/settings/set/self/options_label.rb +0 -4
- data/mod/settings/spec/set/right/add_help_spec.rb +0 -5
@@ -1,6 +1,7 @@
|
|
1
1
|
RSpec.describe Card::Set::Abstract::Pointer::OptionsApi do
|
2
2
|
def define_options_rule type_id, content
|
3
|
-
Card.create! name: %i[pointer type
|
3
|
+
Card.create! name: %i[pointer type content_options],
|
4
|
+
type_id: type_id, content: content
|
4
5
|
end
|
5
6
|
|
6
7
|
let :sample_pointer do
|
@@ -1,6 +1,6 @@
|
|
1
1
|
describe Card::Set::Self::InputOptions do
|
2
2
|
it "loads the self set" do
|
3
|
-
expect(Card[:
|
3
|
+
expect(Card[:input_type, :right, :content_options].item_names).to contain_exactly(
|
4
4
|
"radio", "checkbox", "select", "multiselect", "list", "ace editor", "filtered list",
|
5
5
|
"prosemirror editor", "tinymce editor", "text area", "text field", "calendar"
|
6
6
|
)
|
@@ -0,0 +1,88 @@
|
|
1
|
+
format :html do
|
2
|
+
bar_cols 6, 6
|
3
|
+
info_bar_cols 5, 4, 3
|
4
|
+
|
5
|
+
def existing_rule_card
|
6
|
+
@existing_rule_card ||= find_existing_rule_card
|
7
|
+
end
|
8
|
+
|
9
|
+
view :bar, unknown: true do
|
10
|
+
voo.hide :bar_nav unless existing_rule_card
|
11
|
+
super()
|
12
|
+
end
|
13
|
+
|
14
|
+
view :expanded_bar, unknown: true do
|
15
|
+
super()
|
16
|
+
end
|
17
|
+
|
18
|
+
view :one_line_content,
|
19
|
+
wrap: { div: { class: "text-muted one-line" } }, unknown: true do
|
20
|
+
return render_mini_unknown unless existing_rule_card
|
21
|
+
|
22
|
+
with_nest_mode :compact do
|
23
|
+
one_line_content
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
view :raw_one_line_content,
|
28
|
+
wrap: { div: { class: "text-muted one-line" } }, unknown: true do
|
29
|
+
return render_mini_unknown unless existing_rule_card
|
30
|
+
|
31
|
+
raw_one_line_content
|
32
|
+
end
|
33
|
+
|
34
|
+
view :bar_bottom, unknown: true do
|
35
|
+
if nest_mode == :edit
|
36
|
+
current_rule_form
|
37
|
+
else
|
38
|
+
nest existing_rule_card, view: :core
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
view :bar_middle, unknown: true do
|
43
|
+
rule_info
|
44
|
+
end
|
45
|
+
|
46
|
+
view :bar_left, unknown: true do
|
47
|
+
super()
|
48
|
+
end
|
49
|
+
|
50
|
+
view :bar_right, unknown: true do
|
51
|
+
voo.show?(:bar_bottom) ? rule_info : rule_short_content
|
52
|
+
end
|
53
|
+
|
54
|
+
def rule_short_content
|
55
|
+
return "" unless existing_rule_card
|
56
|
+
|
57
|
+
nest existing_rule_card, { view: :one_line_content },
|
58
|
+
set_context: card.name.trunk_name
|
59
|
+
end
|
60
|
+
|
61
|
+
def bar_title
|
62
|
+
return super() if voo.show? :full_name
|
63
|
+
|
64
|
+
if existing_rule_card && voo.show?(:toggle)
|
65
|
+
link_to_view bar_title_toggle_view, card.rule_setting_title
|
66
|
+
else
|
67
|
+
card.rule_setting_title
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
# LOCALIZE
|
72
|
+
def rule_info
|
73
|
+
return wrap_with(:em, "no existing #{setting_link} rule") unless existing_rule_card
|
74
|
+
|
75
|
+
wrap_with :span,
|
76
|
+
"#{rule_setting_link} rule that applies to "\
|
77
|
+
"#{rule_set_link existing_rule_card}"
|
78
|
+
end
|
79
|
+
|
80
|
+
def rule_setting_link
|
81
|
+
link_to_card card.rule_setting, card.rule_setting_name
|
82
|
+
end
|
83
|
+
|
84
|
+
def rule_set_link existing_rule
|
85
|
+
count = link_to_card [card.rule_set, :by_name], card.rule_set.count
|
86
|
+
"#{link_to_card card.rule_set, existing_rule.trunk&.label&.downcase} (#{count})"
|
87
|
+
end
|
88
|
+
end
|
@@ -14,20 +14,15 @@ format :html do
|
|
14
14
|
edit_rule_title
|
15
15
|
end
|
16
16
|
|
17
|
-
view :
|
18
|
-
|
19
|
-
# do
|
20
|
-
|
21
|
-
# output [wrap_with(:div, rule_based_help), setting_link]
|
22
|
-
# end
|
23
|
-
popover_link([rule_based_help, setting_link].join(" "))
|
17
|
+
view :help_text, unknown: true, cache: :never do
|
18
|
+
wrap_help_text [rule_based_help, setting_link].join(" ")
|
24
19
|
end
|
25
20
|
|
26
21
|
def setting_link
|
27
22
|
wrap_with :div, class: "ml-auto" do
|
28
|
-
|
29
|
-
|
30
|
-
class: "text-muted"
|
23
|
+
link_to_card card.rule_setting_name,
|
24
|
+
" (#{card.rule_setting.count} #{card.rule_setting_title} rules)",
|
25
|
+
class: "text-muted"
|
31
26
|
end
|
32
27
|
end
|
33
28
|
end
|
@@ -1,19 +1,11 @@
|
|
1
1
|
format :html do
|
2
2
|
attr_accessor :rule_context
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
def determine_current_rule
|
13
|
-
existing = find_existing_rule_card
|
14
|
-
return existing if existing
|
15
|
-
|
16
|
-
Card.new name: "#{Card[:all].name}+#{card.rule_user_setting_name}"
|
4
|
+
view :rule_edit, cache: :never, unknown: true,
|
5
|
+
wrap: { modal: { size: :large,
|
6
|
+
title: :edit_rule_title,
|
7
|
+
footer: "" } } do
|
8
|
+
current_rule_form form_type: :modal
|
17
9
|
end
|
18
10
|
|
19
11
|
view :rule_help, unknown: true, perms: :none, cache: :never do
|
@@ -22,62 +14,6 @@ format :html do
|
|
22
14
|
end
|
23
15
|
end
|
24
16
|
|
25
|
-
view :show_rule, cache: :never, unknown: true do
|
26
|
-
return "No Current Rule" if card.new_card?
|
27
|
-
|
28
|
-
voo.items[:view] ||= :link
|
29
|
-
output [
|
30
|
-
show_rule_set(card.rule_set),
|
31
|
-
_render_core
|
32
|
-
]
|
33
|
-
end
|
34
|
-
|
35
|
-
def show_rule_set set
|
36
|
-
wrap_with :div, class: "rule-set" do
|
37
|
-
%(<label>Applies to</label> #{link_to_card set.name, set.label}:)
|
38
|
-
end
|
39
|
-
end
|
40
|
-
|
41
|
-
view :quick_edit, unknown: true, template: :haml, wrap: :slot do
|
42
|
-
setting_title + short_help_text + quick_editor
|
43
|
-
end
|
44
|
-
|
45
|
-
def quick_form
|
46
|
-
card_form :update,
|
47
|
-
"data-slot-selector": ".set-info.card-slot",
|
48
|
-
success: { view: :quick_edit_success } do
|
49
|
-
quick_editor
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
def set_info notify_change=nil
|
54
|
-
wrap true, class: "set-info" do
|
55
|
-
haml :set_info, notify_change: notify_change
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
def undo_button
|
60
|
-
link_to "undo", method: :post, rel: "nofollow", class: "btn btn-secondary ml-2 btn-sm btn-reduced-padding slotter",
|
61
|
-
remote: true,
|
62
|
-
"data-slot-selector": ".card-slot.quick_edit-view",
|
63
|
-
path: { action: :update,
|
64
|
-
revert_actions: [card.last_action_id],
|
65
|
-
revert_to: :previous }
|
66
|
-
end
|
67
|
-
|
68
|
-
view :quick_edit_success do
|
69
|
-
set_info true
|
70
|
-
end
|
71
|
-
|
72
|
-
def quick_editor
|
73
|
-
if card.right.codename == :default
|
74
|
-
@edit_rule_success = {}
|
75
|
-
rules_type_formgroup
|
76
|
-
else
|
77
|
-
rule_content_formgroup
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
17
|
view :rule_bridge_link, unknown: true do
|
82
18
|
opts = bridge_link_opts(class: "edit-rule-link nav-link",
|
83
19
|
"data-toggle": "pill",
|
@@ -86,57 +22,37 @@ format :html do
|
|
86
22
|
link_to_view(:overlay_rule, (setting_title + short_help_text), opts)
|
87
23
|
end
|
88
24
|
|
89
|
-
def
|
90
|
-
|
91
|
-
end
|
92
|
-
|
93
|
-
def short_help_text
|
94
|
-
"<div class=\"help-text\">#{card.short_help_text}</div>"
|
95
|
-
end
|
96
|
-
|
97
|
-
def rule_content_container
|
98
|
-
wrap_with :div, class: "rule-content-container" do
|
99
|
-
wrap_with(:span, class: "closed-content content") { yield }
|
100
|
-
end
|
25
|
+
def edit_link_view
|
26
|
+
:rule_edit
|
101
27
|
end
|
102
28
|
|
103
|
-
def
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
def closed_rule_content rule_card
|
109
|
-
return "" unless rule_card
|
110
|
-
|
111
|
-
nest rule_card, { view: :closed_content }, set_context: card.name.trunk_name
|
29
|
+
def edit_rule_title
|
30
|
+
output [
|
31
|
+
wrap_with(:h5, setting_title, class: "title font-weight-bold")
|
32
|
+
# render_overlay_rule_help
|
33
|
+
]
|
112
34
|
end
|
113
35
|
|
114
|
-
def
|
115
|
-
|
116
|
-
|
36
|
+
def current_rule
|
37
|
+
if params[:assign]
|
38
|
+
card
|
39
|
+
elsif (existing = find_existing_rule_card)
|
40
|
+
existing
|
41
|
+
else
|
42
|
+
card
|
117
43
|
end
|
118
44
|
end
|
119
45
|
|
120
|
-
def
|
121
|
-
|
122
|
-
class: "setting-link", target: "wagn_setting"
|
46
|
+
def quick_editor
|
47
|
+
rule_content_formgroup
|
123
48
|
end
|
124
49
|
|
125
|
-
def
|
126
|
-
|
127
|
-
class: "close-rule-link"
|
50
|
+
def setting_title
|
51
|
+
card.name.tag.tr "*", ""
|
128
52
|
end
|
129
53
|
|
130
|
-
def
|
131
|
-
|
132
|
-
|
133
|
-
if card_args[:name] && card_args[:name].to_name.key != rule.key
|
134
|
-
Card.new card_args
|
135
|
-
else
|
136
|
-
rule = rule.refresh
|
137
|
-
rule.assign_attributes card_args
|
138
|
-
rule.include_set_modules
|
139
|
-
end
|
54
|
+
def short_help_text
|
55
|
+
"<div class=\"help-text\">#{card.short_help_text}</div>"
|
140
56
|
end
|
141
57
|
|
142
58
|
def rule_set_description
|
@@ -149,7 +65,7 @@ format :html do
|
|
149
65
|
success = @edit_rule_success
|
150
66
|
wrap_type_formgroup do
|
151
67
|
type_field(
|
152
|
-
href: path(mark: success[:id], view: :rule_form,
|
68
|
+
href: path(mark: success[:id], view: :rule_form, assign: true),
|
153
69
|
class: "type-field rule-type-field live-type-field",
|
154
70
|
"data-remote" => true
|
155
71
|
)
|
@@ -157,15 +73,26 @@ format :html do
|
|
157
73
|
end
|
158
74
|
|
159
75
|
def rule_content_formgroup
|
160
|
-
|
161
|
-
content_field true
|
162
|
-
end
|
76
|
+
_render_content_formgroup hide: :conflict_tracker
|
163
77
|
end
|
164
78
|
|
165
79
|
def current_set_key
|
166
80
|
card.new_card? ? Card.quick_fetch(:all).name.key : card.rule_set_key
|
167
81
|
end
|
168
82
|
|
83
|
+
def left_type_for_nest_editor_set_selection
|
84
|
+
return super unless card.is_template?
|
85
|
+
|
86
|
+
case Card.fetch_id(card.rule_set_pattern_name) # set_pattern_id
|
87
|
+
when TypeID
|
88
|
+
card.rule_set.anchor_name
|
89
|
+
when SelfID
|
90
|
+
card.rule_set.anchor.type_name
|
91
|
+
else
|
92
|
+
super
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
169
96
|
private
|
170
97
|
|
171
98
|
def find_existing_rule_card
|
@@ -0,0 +1,13 @@
|
|
1
|
+
format :html do
|
2
|
+
view :core do
|
3
|
+
# Rule cards that are searches are usual right structures and refer to the left
|
4
|
+
# in the search query. In that case the search doesn't work
|
5
|
+
# properly in the context of the rule card itself. Hence we show the query syntax
|
6
|
+
# and not the search result.
|
7
|
+
if card.type_id == Card::SearchTypeID
|
8
|
+
render_raw
|
9
|
+
else
|
10
|
+
super()
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
format :html do
|
2
|
+
view :quick_edit, unknown: true, wrap: :slot do
|
3
|
+
quick_edit
|
4
|
+
end
|
5
|
+
|
6
|
+
view :quick_edit_success do
|
7
|
+
set_info true
|
8
|
+
end
|
9
|
+
|
10
|
+
def quick_edit
|
11
|
+
haml :quick_edit
|
12
|
+
end
|
13
|
+
|
14
|
+
def quick_form
|
15
|
+
card_form :update, quick_form_opts do
|
16
|
+
quick_editor
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def quick_form_opts
|
21
|
+
{ "data-slot-selector": ".set-info.card-slot",
|
22
|
+
success: { view: :quick_edit_success } }
|
23
|
+
end
|
24
|
+
|
25
|
+
def set_info notify_change=nil
|
26
|
+
wrap true, class: "set-info" do
|
27
|
+
haml :set_info, notify_change: notify_change
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def undo_button
|
32
|
+
link_to "undo", method: :post, rel: "nofollow", class: "btn btn-secondary ml-2 btn-sm btn-reduced-padding slotter",
|
33
|
+
remote: true,
|
34
|
+
"data-slot-selector": ".card-slot.quick_edit-view",
|
35
|
+
path: { action: :update,
|
36
|
+
revert_actions: [card.last_action_id],
|
37
|
+
revert_to: :previous }
|
38
|
+
end
|
39
|
+
end
|
File without changes
|
@@ -19,7 +19,9 @@ format :html do
|
|
19
19
|
|
20
20
|
delete_opts = {
|
21
21
|
confirm: delete_confirm(args[:fallback_set]),
|
22
|
-
success: @edit_rule_success,
|
22
|
+
# success: @edit_rule_success,
|
23
|
+
no_success: true,
|
24
|
+
"data-slotter-mode": "silent-success",
|
23
25
|
class: "_close-#{form_type}-on-success"
|
24
26
|
}
|
25
27
|
delete_opts["data-slot-selector"] = slot_selector if args[:slot_selector]
|
@@ -10,7 +10,7 @@ format :html do
|
|
10
10
|
def rule_set_formgroup
|
11
11
|
tag = @rule_context.rule_user_setting_name
|
12
12
|
narrower = []
|
13
|
-
option_list "
|
13
|
+
option_list "Set" do
|
14
14
|
rule_set_options.map do |set_name, state|
|
15
15
|
rule_set_radio_button set_name, tag, state, narrower
|
16
16
|
end
|
@@ -33,7 +33,7 @@ format :html do
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def option_list title
|
36
|
-
formgroup title,
|
36
|
+
formgroup title, input: "set", class: "col-xs-6", help: false do
|
37
37
|
wrap_with :ul do
|
38
38
|
wrap_each_with(:li, class: "radio") { yield }
|
39
39
|
end
|
@@ -18,7 +18,7 @@ class RuleSetRadio
|
|
18
18
|
|
19
19
|
rule_radio do
|
20
20
|
radio_text = "#{@set_name}+#{@tag}"
|
21
|
-
radio_button :name, radio_text, checked:
|
21
|
+
radio_button :name, radio_text, checked: false, warning: warning
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
@@ -51,14 +51,11 @@ class RuleSetRadio
|
|
51
51
|
when :current
|
52
52
|
"(current)"
|
53
53
|
when :overwritten, :exists
|
54
|
-
link_to_card "#{@set_name}+#{@card.rule_user_setting_name}", "(#{@state})"
|
54
|
+
link_to_card "#{@set_name}+#{@card.rule_user_setting_name}", "(#{@state})",
|
55
|
+
target: "_blank"
|
55
56
|
end
|
56
57
|
end
|
57
58
|
|
58
|
-
def checked?
|
59
|
-
[@set_name, true].include? @format.selected_rule_set
|
60
|
-
end
|
61
|
-
|
62
59
|
def warning
|
63
60
|
if @set_name == "*all"
|
64
61
|
"This rule will affect all cards! Are you sure?"
|