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
@@ -7,9 +7,15 @@ format :rss do
|
|
7
7
|
end
|
8
8
|
|
9
9
|
format :html do
|
10
|
-
view :
|
10
|
+
view :one_line_content do
|
11
11
|
"#{_render_type} : #{_render_raw}"
|
12
12
|
end
|
13
|
+
|
14
|
+
def visible_cardtype_groups
|
15
|
+
hash = ::Card::Set::Self::Cardtype::GROUP.slice("Text")
|
16
|
+
hash["Organize"] = ["Search"]
|
17
|
+
hash
|
18
|
+
end
|
13
19
|
end
|
14
20
|
|
15
21
|
event :update_structurees_references, :integrate,
|
File without changes
|
@@ -1,2 +1,5 @@
|
|
1
1
|
extend Card::Setting
|
2
|
-
setting_opts group: :permission, position: 5
|
2
|
+
setting_opts group: :permission, position: 5,
|
3
|
+
help_text: "Anti-spam setting. Requires non-signed-in users to complete a "\
|
4
|
+
"[[http://decko.org/captcha|captcha]] before adding or editing "\
|
5
|
+
"cards (where permitted)."
|
@@ -0,0 +1,10 @@
|
|
1
|
+
extend Card::Setting
|
2
|
+
setting_opts group: :editing, position: 6,
|
3
|
+
restricted_to_type: %i[list pointer session],
|
4
|
+
rule_type_editable: false,
|
5
|
+
help_text: "Label view for radio button and checkbox items. "\
|
6
|
+
"[[http://decko.org/Pointer|more]]",
|
7
|
+
applies: lambda { |prototype|
|
8
|
+
prototype.supports_content_options? &&
|
9
|
+
prototype.rule_card(:input_type)&.supports_content_option_view?
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
extend Card::Setting
|
2
|
+
setting_opts group: :editing, position: 5,
|
3
|
+
restricted_to_type: %i[list pointer session],
|
4
|
+
rule_type_editable: true,
|
5
|
+
help_text: "Value options for [[List]] and [[Pointer]] and cards. "\
|
6
|
+
"Can itself be a List or a [[Search]]. "\
|
7
|
+
"[[http://decko.org/Pointer|more]]",
|
8
|
+
applies: lambda { |prototype|
|
9
|
+
prototype.rule_card(:input_type).supports_content_options?
|
10
|
+
}
|
@@ -1,3 +1,5 @@
|
|
1
1
|
extend Card::Setting
|
2
2
|
setting_opts group: :editing, position: 1, rule_type_editable: true,
|
3
|
-
|
3
|
+
short_help_text: "help text people will see when editing",
|
4
|
+
help_text: "[[http://decko.org/custom_help_text|Help text]] "\
|
5
|
+
"people will see when editing."
|
@@ -0,0 +1,13 @@
|
|
1
|
+
extend Card::Setting
|
2
|
+
setting_opts group: :editing,
|
3
|
+
position: 3,
|
4
|
+
rule_type_editable: false,
|
5
|
+
short_help_text: "edit interface"
|
6
|
+
|
7
|
+
format :html do
|
8
|
+
def raw_help_text
|
9
|
+
"Configure [[https://ace.c9.io/|ace]], "\
|
10
|
+
"Decko's default code editor, using these available "\
|
11
|
+
"[[https://github.com/ajaxorg/ace/wiki/Configuring-Ace|options]]."
|
12
|
+
end
|
13
|
+
end
|
@@ -1,3 +1,5 @@
|
|
1
1
|
extend Card::Setting
|
2
2
|
setting_opts group: :templating, position: 2, rule_type_editable: true,
|
3
|
-
|
3
|
+
short_help_text: "control card's content / structure",
|
4
|
+
help_text: "Controls cards' content / structure. "\
|
5
|
+
"[[http://decko.org/formatting|more]]"
|
@@ -1,2 +1,5 @@
|
|
1
1
|
extend Card::Setting
|
2
|
-
setting_opts group: :other, position: 1, rule_type_editable: false
|
2
|
+
setting_opts group: :other, position: 1, rule_type_editable: false,
|
3
|
+
help_text: "Autogenerate [[http://decko.org/table_of_contents|"\
|
4
|
+
"table of contents]] on cards with at least this many headers "\
|
5
|
+
'("0" means never).'
|
@@ -1,3 +1,5 @@
|
|
1
1
|
extend Card::Setting
|
2
2
|
setting_opts group: :other, position: 3, rule_type_editable: false,
|
3
|
-
|
3
|
+
short_help_text: "destination after card is created",
|
4
|
+
help_text: "Destination after card is created. "\
|
5
|
+
"[[http://decko.org/Custom_thank_you_messages_for_forms|more]]"
|
@@ -20,6 +20,10 @@ format :data do
|
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
|
+
def count
|
24
|
+
Card.search left: { type: Card::SetID }, right: id, limit: 0, return: :count
|
25
|
+
end
|
26
|
+
|
23
27
|
def set_classes_with_rules
|
24
28
|
Card.set_patterns.reverse.map do |set_class|
|
25
29
|
wql = { left: { type: Card::SetID },
|
@@ -34,17 +38,6 @@ def set_classes_with_rules
|
|
34
38
|
end
|
35
39
|
|
36
40
|
format :html do
|
37
|
-
def duplicate_check rules
|
38
|
-
previous_content = nil
|
39
|
-
rules.each do |rule|
|
40
|
-
current_content = rule.db_content.strip
|
41
|
-
duplicate = previous_content == current_content
|
42
|
-
changeover = previous_content && !duplicate
|
43
|
-
previous_content = current_content
|
44
|
-
yield rule, duplicate, changeover
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
41
|
def rule_link rule, text
|
49
42
|
link_to_card rule, text, path: { view: :modal_rule },
|
50
43
|
slotter: true, "data-modal-class": "modal-lg"
|
@@ -54,31 +47,16 @@ format :html do
|
|
54
47
|
haml do
|
55
48
|
<<-'HAML'.strip_heredoc
|
56
49
|
= _render_rule_help
|
57
|
-
%
|
58
|
-
|
59
|
-
|
60
|
-
%
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
%span.closed-content.content
|
68
|
-
- if klass.anchorless?
|
69
|
-
= subformat(rules.first)._render_closed_content
|
70
|
-
- if !klass.anchorless?
|
71
|
-
%tbody
|
72
|
-
- duplicate_check(rules) do |rule, duplicate, changeover|
|
73
|
-
%tr{class: ('rule-changeover' if changeover)}
|
74
|
-
%td.rule-anchor
|
75
|
-
= rule_link rule, rule.name.trunk_name.trunk_name
|
76
|
-
- if duplicate
|
77
|
-
%td
|
78
|
-
- else
|
79
|
-
%td.rule-content-container
|
80
|
-
%span.closed-content.content
|
81
|
-
= subformat(rule)._render_closed_content
|
50
|
+
%h3 All #{card.name.tr "*", ""} rules that apply to
|
51
|
+
- card.set_classes_with_rules.each do |klass, rules|
|
52
|
+
%p
|
53
|
+
%h5
|
54
|
+
= klass.generic_label.downcase
|
55
|
+
- if klass.anchorless?
|
56
|
+
= nest rules.first, view: :bar, show: :full_name
|
57
|
+
- else
|
58
|
+
- rules.each do |rule|
|
59
|
+
= nest rule, view: :bar
|
82
60
|
HAML
|
83
61
|
end
|
84
62
|
end
|
@@ -89,7 +67,7 @@ format :html do
|
|
89
67
|
nest [:all, card.name], view: :rule_help
|
90
68
|
end
|
91
69
|
|
92
|
-
view :
|
70
|
+
view :one_line_content do
|
93
71
|
render_rule_help
|
94
72
|
end
|
95
73
|
end
|
@@ -1,36 +1,9 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
3
|
describe Card::Set::Right::Comment do
|
4
|
-
context "record appender" do
|
5
|
-
before do
|
6
|
-
# @r = Card.where(type_id: Card::RoleID).first
|
7
|
-
@rule = Card.new name: "A+*self+*comment",
|
8
|
-
type_id: Card::PointerID,
|
9
|
-
content: "[[Anyone Signed In]]"
|
10
|
-
end
|
11
|
-
|
12
|
-
it "has appender immediately" do
|
13
|
-
expect(Card["a"].ok?(:comment)).not_to be_truthy
|
14
|
-
Card::Auth.as_bot do
|
15
|
-
@rule.save!
|
16
|
-
end
|
17
|
-
expect(Card["a"].ok?(:comment)).to be_truthy
|
18
|
-
end
|
19
|
-
|
20
|
-
it "has appender immediately" do
|
21
|
-
Card::Auth.as_bot do
|
22
|
-
expect(Card["a"].ok?(:comment)).not_to be_truthy
|
23
|
-
@rule.save!
|
24
|
-
expect(Card["a"].ok?(:comment)).to be_truthy
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
|
29
4
|
context "comment addition" do
|
30
5
|
it "combines content after save" do
|
31
6
|
Card::Auth.as_bot do
|
32
|
-
Card.create name: "basicname+*self+*comment",
|
33
|
-
content: "[[Anyone Signed In]]"
|
34
7
|
Card["basicname"].update! comment: " and more\n \nsome lines\n\n"
|
35
8
|
end
|
36
9
|
expect(Card["basicname"].content).to match(%r{\<p\>some lines\</p\>})
|
@@ -4,7 +4,7 @@ describe Card::Set::Right::Create do
|
|
4
4
|
it "renders the perm editor" do
|
5
5
|
Card::Auth.as_bot do
|
6
6
|
card = Card.new name: "A+B+*self+*create"
|
7
|
-
assert_view_select card.format.
|
7
|
+
assert_view_select card.format._render_input, "div[class=perm-editor]"
|
8
8
|
end
|
9
9
|
end
|
10
10
|
end
|
@@ -1,21 +1,24 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
|
-
describe Card::Set::Right::Structure do
|
4
|
-
it "
|
3
|
+
RSpec.describe Card::Set::Right::Structure do
|
4
|
+
it "one_line_content is rendered as type + raw" do
|
5
5
|
template = Card.new name: "A+*right+*structure",
|
6
6
|
content: "[[link]] {{nest}}"
|
7
|
-
expect(template.format._render(:
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
expect(template.format._render(:one_line_content))
|
8
|
+
.to have_tag "div.text-muted.one-line" do
|
9
|
+
with_tag "a.cardtype.known-card", with: { href: "/RichText" }, text: "RichText"
|
10
|
+
with_text(/ \: \[\[link\]\] \{\{nest\}\}/)
|
11
|
+
end
|
11
12
|
end
|
12
13
|
|
13
|
-
it "
|
14
|
+
it "one_line_content is rendered as type + raw" do
|
14
15
|
template = Card.new name: "A+*right+*structure", type: "Html",
|
15
16
|
content: "[[link]] {{nest}}"
|
16
|
-
expect(template.format._render(:
|
17
|
-
|
18
|
-
|
17
|
+
expect(template.format._render(:one_line_content))
|
18
|
+
.to have_tag "div.text-muted.one-line" do
|
19
|
+
with_tag "a.cardtype.known-card", with: { href: "/HTML" }, text: "HTML"
|
20
|
+
with_text(/ \: \[\[link\]\] \{\{nest\}\}/)
|
21
|
+
end
|
19
22
|
end
|
20
23
|
|
21
24
|
# it 'renders core as raw' do
|
@@ -1,13 +1,6 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
|
-
describe Card::Set::Type::Setting do
|
4
|
-
context "core view" do
|
5
|
-
it "has a table" do
|
6
|
-
core = render_card :core, name: :help
|
7
|
-
assert_view_select core, "table"
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
3
|
+
RSpec.describe Card::Set::Type::Setting do
|
11
4
|
describe "rule_help view" do
|
12
5
|
subject { Card[:read].format.render :rule_help }
|
13
6
|
|
@@ -31,10 +31,10 @@ format :html do
|
|
31
31
|
view :core, cache: :never do
|
32
32
|
return super() unless card.new_card?
|
33
33
|
@denied_view = :core
|
34
|
-
|
34
|
+
_render_unknown
|
35
35
|
end
|
36
36
|
|
37
|
-
view :
|
37
|
+
view :unknown, cache: :never do
|
38
38
|
if @card.new_card? && (l = @card.left) && l.solid_cache?
|
39
39
|
l.update_solid_cache
|
40
40
|
@card = Card.fetch card.name
|
@@ -44,5 +44,5 @@ format :html do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
view :new, :
|
47
|
+
view :new, :unknown
|
48
48
|
end
|
@@ -42,7 +42,7 @@ format do
|
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
-
view :comment_box, denial: :blank, unknown: true, perms: :
|
45
|
+
view :comment_box, denial: :blank, unknown: true, perms: :update do
|
46
46
|
wrap_with :div, class: "comment-box nodblclick" do
|
47
47
|
action = card.new_card? ? :create : :update
|
48
48
|
card_form action do
|
@@ -5,11 +5,11 @@ def copy_errors card
|
|
5
5
|
end
|
6
6
|
|
7
7
|
format do
|
8
|
-
view :
|
8
|
+
view :compact_missing, perms: :none, compact: true do
|
9
9
|
""
|
10
10
|
end
|
11
11
|
|
12
|
-
view :
|
12
|
+
view :unknown, perms: :none, cache: :never do
|
13
13
|
""
|
14
14
|
end
|
15
15
|
|
@@ -49,13 +49,13 @@ format do
|
|
49
49
|
|
50
50
|
def new_cardtype_path opts
|
51
51
|
return unless valid_opts_for_new_cardtype_path? opts
|
52
|
-
"
|
52
|
+
"#{opts.delete :action}/#{path_mark opts}#{path_query opts}"
|
53
53
|
end
|
54
54
|
|
55
55
|
def valid_opts_for_new_cardtype_path? opts
|
56
|
-
return unless opts[:action]
|
57
|
-
|
58
|
-
# "new"
|
56
|
+
return unless opts[:action].in? %i[new type]
|
57
|
+
|
58
|
+
# "new" and "type" are not really an action and are only
|
59
59
|
# a valid value here for this path
|
60
60
|
opts[:mark].present?
|
61
61
|
end
|
@@ -126,7 +126,7 @@ format do
|
|
126
126
|
end
|
127
127
|
|
128
128
|
def add_unknown_name_to_opts name, opts
|
129
|
-
return if name_specified?(opts) ||
|
129
|
+
return if name_specified?(opts) || name_standardish?(name) || Card.known?(name)
|
130
130
|
opts[:card] ||= {}
|
131
131
|
opts[:card][:name] = name
|
132
132
|
end
|
@@ -135,8 +135,8 @@ format do
|
|
135
135
|
opts[:card] && opts[:card][:name]
|
136
136
|
end
|
137
137
|
|
138
|
-
# name
|
139
|
-
def
|
138
|
+
# no name info will be lost by using url_key
|
139
|
+
def name_standardish? name
|
140
140
|
name.s == Card::Name.url_key_to_standard(name.url_key)
|
141
141
|
end
|
142
142
|
end
|