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
@@ -0,0 +1,15 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
|
3
|
+
RSpec.describe Card::Set::Rule::BarView do
|
4
|
+
def card_subject
|
5
|
+
Card.fetch("*read+*right+*input type", new: {})
|
6
|
+
end
|
7
|
+
|
8
|
+
check_html_views_for_errors
|
9
|
+
|
10
|
+
it "renders setting view for a *input type rule", as_bot: true do
|
11
|
+
expect_view("rule_edit").to have_tag "div.modal" do
|
12
|
+
with_tag "div.rule-section", count: 2
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -2,8 +2,22 @@
|
|
2
2
|
|
3
3
|
RSpec.describe Card::Set::Rule::Editor do
|
4
4
|
def card_subject
|
5
|
-
Card.fetch("*read+*right+*input", new: {})
|
5
|
+
Card.fetch("*read+*right+*input type", new: {})
|
6
6
|
end
|
7
7
|
|
8
8
|
check_html_views_for_errors
|
9
|
+
|
10
|
+
describe "#left_type_for_nest_editor_set_selection" do
|
11
|
+
def type_for_set_structure set_name
|
12
|
+
Card.fetch("#{set_name}+*structure").format.left_type_for_nest_editor_set_selection
|
13
|
+
end
|
14
|
+
|
15
|
+
it "finds anchor name for type structure rules" do
|
16
|
+
expect(type_for_set_structure("Role+*type")).to eq("Role")
|
17
|
+
end
|
18
|
+
|
19
|
+
it "finds anchor type for self structure rules" do
|
20
|
+
expect(type_for_set_structure("Sign up+*self")).to eq("Cardtype")
|
21
|
+
end
|
22
|
+
end
|
9
23
|
end
|
@@ -6,17 +6,4 @@ RSpec.describe Card::Set::Type::Set::HtmlViews do
|
|
6
6
|
end
|
7
7
|
|
8
8
|
check_html_views_for_errors
|
9
|
-
|
10
|
-
it "renders setting table for a right set" do
|
11
|
-
expect_view("open", card: "*read+*right")
|
12
|
-
.to have_tag "div", with: { id: "Xread-Xright-open-view" } do
|
13
|
-
with_tag "form", with: { role: "filter" }
|
14
|
-
with_tag "table" do
|
15
|
-
with_tag "tr", with: { id: "Xread-Xright-Xcreate-rule_row-view" } do
|
16
|
-
with_tag "td", "create"
|
17
|
-
with_tag "td", "Shark"
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
9
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
|
3
|
+
RSpec.describe Card::Set::Type::Set::SettingLists do
|
4
|
+
def card_subject
|
5
|
+
Card.fetch("User+*type")
|
6
|
+
end
|
7
|
+
|
8
|
+
specify "#nest_editor_field_related_settings", as_bot: true do
|
9
|
+
create ["characters", :right, :input_type], content: "select"
|
10
|
+
create ["characters", :right, :default], type_id: Card::ListID
|
11
|
+
card = Card.new name: "RichText+characters+*type plus right"
|
12
|
+
expect(card.format(:html).nest_editor_field_related_settings)
|
13
|
+
.to eq %i[default help input_type content_options content_option_view]
|
14
|
+
end
|
15
|
+
|
16
|
+
check_html_views_for_errors
|
17
|
+
end
|
@@ -55,14 +55,9 @@ RSpec.describe Card::Set::Type::Set do
|
|
55
55
|
|
56
56
|
it "produces template editor with close link within large brackets" do
|
57
57
|
set_card = nested_card.fetch trait: :right
|
58
|
-
expect(set_card.format.render(:
|
59
|
-
|
60
|
-
with_tag "
|
61
|
-
with_tag "div.template-closer"
|
62
|
-
with_tag "div.card-header"
|
63
|
-
with_tag "div.card-body"
|
64
|
-
end
|
65
|
-
with_tag "div.template-editor-right", text: "}}"
|
58
|
+
expect(set_card.format.render(:template_link)).to have_tag("div.card-slot") do
|
59
|
+
with_text(/^\{\{.+\}\}$/)
|
60
|
+
with_tag "a", "modal_nest_rules"
|
66
61
|
end
|
67
62
|
end
|
68
63
|
end
|
@@ -16,8 +16,9 @@ format :html do
|
|
16
16
|
multiselect_filter_tag field, default, options
|
17
17
|
end
|
18
18
|
|
19
|
-
def text_filter field, opts={}
|
20
|
-
|
19
|
+
def text_filter field, default=nil, opts={}
|
20
|
+
value = filter_param(field) || default
|
21
|
+
text_filter_with_name_and_value filter_name(field), value, opts
|
21
22
|
end
|
22
23
|
|
23
24
|
def text_filter_with_name_and_value name, value, opts
|
@@ -26,12 +27,13 @@ format :html do
|
|
26
27
|
text_field_tag name, value, opts
|
27
28
|
end
|
28
29
|
|
29
|
-
def range_filter field, opts={}
|
30
|
+
def range_filter field, default={}, opts={}
|
30
31
|
add_class opts, "simple-text range-filter-subfield"
|
32
|
+
default ||= {}
|
31
33
|
output [range_sign(:from),
|
32
|
-
sub_text_filter(field, :from, opts),
|
34
|
+
sub_text_filter(field, :from, default, opts),
|
33
35
|
range_sign(:to),
|
34
|
-
sub_text_filter(field, :to, opts)]
|
36
|
+
sub_text_filter(field, :to, default, opts)]
|
35
37
|
end
|
36
38
|
|
37
39
|
def range_sign side
|
@@ -41,9 +43,9 @@ format :html do
|
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
44
|
-
def sub_text_filter field, subfield, opts={}
|
46
|
+
def sub_text_filter field, subfield, default={}, opts={}
|
45
47
|
name = "filter[#{field}][#{subfield}]"
|
46
|
-
value = filter_hash.dig
|
48
|
+
value = filter_hash.dig(field, subfield) || default[subfield]
|
47
49
|
text_filter_with_name_and_value name, value, opts
|
48
50
|
end
|
49
51
|
|
@@ -41,9 +41,9 @@ format :json do
|
|
41
41
|
complete_or_match_search limit: AUTOCOMPLETE_LIMIT
|
42
42
|
end
|
43
43
|
|
44
|
-
def complete_or_match_search limit: AUTOCOMPLETE_LIMIT
|
44
|
+
def complete_or_match_search limit: AUTOCOMPLETE_LIMIT, start_only: false
|
45
45
|
starts_with = complete_search limit: limit
|
46
|
-
return starts_with if
|
46
|
+
return starts_with if start_only
|
47
47
|
|
48
48
|
remaining_slots = limit - starts_with.size
|
49
49
|
return starts_with if remaining_slots.zero?
|
@@ -75,7 +75,7 @@ format :json do
|
|
75
75
|
end
|
76
76
|
|
77
77
|
def goto_items term, exact
|
78
|
-
goto_names = complete_or_match_search
|
78
|
+
goto_names = complete_or_match_search start_only: Card.config.navbox_match_start_only
|
79
79
|
goto_names.unshift exact.name if add_exact_to_goto_names? exact, goto_names
|
80
80
|
goto_names.map do |name|
|
81
81
|
[name, name.to_name.url_key, h(highlight(name, term, sanitize: false))]
|
@@ -26,10 +26,11 @@ format :json do
|
|
26
26
|
card.item_cards
|
27
27
|
end
|
28
28
|
|
29
|
-
# avoid running the search from
|
29
|
+
# avoid running the search from +:content_options (huge results)
|
30
|
+
# and +:structure (errors)
|
30
31
|
# TODO: make this configurable in set mods
|
31
32
|
def unexportable_tag? tag_key
|
32
|
-
%i[
|
33
|
+
%i[content_options structure].map { |code| code.cardname.key }.include? tag_key
|
33
34
|
end
|
34
35
|
end
|
35
36
|
|
@@ -52,12 +53,12 @@ format :html do
|
|
52
53
|
_render search_result_view
|
53
54
|
end
|
54
55
|
|
55
|
-
view :
|
56
|
-
voo.hide :
|
56
|
+
view :bar do
|
57
|
+
voo.hide :one_line_content
|
57
58
|
super()
|
58
59
|
end
|
59
60
|
|
60
|
-
view :
|
61
|
+
view :one_line_content, cache: :never do
|
61
62
|
if depth > max_depth
|
62
63
|
"..."
|
63
64
|
else
|
@@ -13,7 +13,12 @@ class Card
|
|
13
13
|
mattr_accessor :groups, :group_names, :user_specific
|
14
14
|
def self.extended host_class
|
15
15
|
# accessible in E and O
|
16
|
-
host_class.mattr_accessor :restricted_to_type, :rule_type_editable, :short_help_text
|
16
|
+
host_class.mattr_accessor :restricted_to_type, :rule_type_editable, :short_help_text,
|
17
|
+
:raw_help_text, :right_set, :applies
|
18
|
+
setting_class_name = host_class.to_s.split("::").last
|
19
|
+
host_class.ensure_set { "Card::Set::Right::#{setting_class_name}" }
|
20
|
+
host_class.right_set = Card::Set::Right.const_get(setting_class_name)
|
21
|
+
host_class.right_set.mattr_accessor :raw_help_text
|
17
22
|
end
|
18
23
|
|
19
24
|
def self.codenames
|
@@ -52,7 +57,9 @@ class Card
|
|
52
57
|
name.match(/::(\w+)$/)[1].underscore.to_sym
|
53
58
|
self.rule_type_editable = opts[:rule_type_editable]
|
54
59
|
self.restricted_to_type = permitted_type_ids opts[:restricted_to_type]
|
55
|
-
self.short_help_text = opts[:
|
60
|
+
self.short_help_text = opts[:short_help_text]
|
61
|
+
self.applies = opts[:applies]
|
62
|
+
right_set.raw_help_text = self.raw_help_text = opts[:help_text]
|
56
63
|
return unless opts[:user_specific]
|
57
64
|
@@user_specific << @codename
|
58
65
|
end
|
@@ -69,8 +76,14 @@ class Card
|
|
69
76
|
end
|
70
77
|
end
|
71
78
|
|
72
|
-
def applies_to_cardtype type_id
|
73
|
-
!restricted_to_type || restricted_to_type.include?(type_id)
|
79
|
+
def applies_to_cardtype type_id, prototype=nil
|
80
|
+
(!restricted_to_type || restricted_to_type.include?(type_id)) &&
|
81
|
+
(!prototype || applies_to_prototype?(prototype))
|
82
|
+
end
|
83
|
+
|
84
|
+
def applies_to_prototype? prototype
|
85
|
+
return true unless applies
|
86
|
+
applies.call(prototype)
|
74
87
|
end
|
75
88
|
|
76
89
|
private
|
@@ -3,6 +3,10 @@ def standardize_items
|
|
3
3
|
super unless content == "_left"
|
4
4
|
end
|
5
5
|
|
6
|
+
def options_rule_card
|
7
|
+
Card[:cards_with_account]
|
8
|
+
end
|
9
|
+
|
6
10
|
format :html do
|
7
11
|
view :pointer_core do
|
8
12
|
wrap_with :div, pointer_items, class: "pointer-list"
|
@@ -16,11 +20,11 @@ format :html do
|
|
16
20
|
end
|
17
21
|
end
|
18
22
|
|
19
|
-
view :
|
23
|
+
view :one_line_content, cache: :never do
|
20
24
|
render_core items: { view: :link }
|
21
25
|
end
|
22
26
|
|
23
|
-
view :
|
27
|
+
view :input do
|
24
28
|
item_names = inheriting? ? [] : card.item_names
|
25
29
|
%(
|
26
30
|
#{_render_hidden_content_field}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
format :html do
|
2
|
+
def quick_edit
|
3
|
+
card.left.prototype_default_card.try(:show_content_options?) ? super : ""
|
4
|
+
end
|
5
|
+
|
6
|
+
def quick_editor
|
7
|
+
wrap_type_formgroup do
|
8
|
+
type_field class: "type-field rule-type-field _submit-on-select"
|
9
|
+
end +
|
10
|
+
wrap_content_formgroup do
|
11
|
+
text_field :content, class: "d0-card-content _submit-after-typing"
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def visible_cardtype_groups
|
16
|
+
{ "Organize" => %w[List Pointer] }
|
17
|
+
end
|
18
|
+
end
|
@@ -1,15 +1,31 @@
|
|
1
1
|
include_set Abstract::TemplatedNests
|
2
2
|
|
3
3
|
format :html do
|
4
|
-
view :
|
4
|
+
view :one_line_content do
|
5
5
|
raw = _render_raw
|
6
6
|
"#{card.type_name} : #{raw.present? ? raw : '<em>empty</em>'}"
|
7
7
|
end
|
8
8
|
|
9
|
+
def quick_form_opts
|
10
|
+
super.merge "data-update-foreign-slot":
|
11
|
+
".card-slot.quick_edit-view.RIGHT-Xinput_type,"\
|
12
|
+
".card-slot.quick_edit-view.RIGHT-Xcontent_option"\
|
13
|
+
".card-slot.quick_edit-view.RIGHT-Xcontent_option_view"
|
14
|
+
end
|
15
|
+
|
9
16
|
def quick_editor
|
10
17
|
wrap_type_formgroup do
|
11
18
|
type_field class: "type-field rule-type-field _submit-on-select"
|
12
|
-
end
|
19
|
+
end +
|
20
|
+
wrap_content_formgroup do
|
21
|
+
text_field :content, class: "d0-card-content _submit-after-typing"
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def visible_cardtype_groups
|
26
|
+
hash = ::Card::Set::Self::Cardtype::GROUP.slice("Text", "Data", "Upload")
|
27
|
+
hash["Organize"] = ["List", "Pointer", "Link list"]
|
28
|
+
hash
|
13
29
|
end
|
14
30
|
end
|
15
31
|
|
@@ -6,7 +6,8 @@ format :html do
|
|
6
6
|
end
|
7
7
|
|
8
8
|
def quick_editor
|
9
|
-
|
9
|
+
# TODO: refactor when voo.input_type is ready. (and use class_up)
|
10
|
+
formgroup "Content", input: :content, help: false do
|
10
11
|
text_field :content, value: card.content,
|
11
12
|
class: "d0-card-content _submit-after-typing"
|
12
13
|
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
format :html do
|
2
|
+
def quick_editor
|
3
|
+
@submit_on_change = true
|
4
|
+
super
|
5
|
+
end
|
6
|
+
|
7
|
+
def quick_form_opts
|
8
|
+
super.merge "data-update-foreign-slot":
|
9
|
+
".card-slot.quick_edit-view.RIGHT-Xcontent_option_view"
|
10
|
+
end
|
11
|
+
|
12
|
+
def default_input_type
|
13
|
+
:radio
|
14
|
+
end
|
15
|
+
|
16
|
+
def raw_help_text
|
17
|
+
"edit interface for list cards"
|
18
|
+
end
|
19
|
+
|
20
|
+
def option_label_text option_name
|
21
|
+
super.downcase
|
22
|
+
end
|
23
|
+
|
24
|
+
def quick_edit
|
25
|
+
card.left.prototype_default_card.try(:show_input_type?) ? super : ""
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
def option_names
|
30
|
+
left.prototype_default_card&.try(:input_type_content_options) || super
|
31
|
+
end
|
32
|
+
|
33
|
+
def supports_content_option_view?
|
34
|
+
item_name.in? ["checkbox", "radio", "filtered list"]
|
35
|
+
end
|