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
data/mod/bootstrap/set/type_plus_right/customized_bootswatch_skin/colors/{editor.haml → input.haml}
RENAMED
File without changes
|
@@ -3,14 +3,14 @@
|
|
3
3
|
RSpec.describe Bootstrap::Component::Form do
|
4
4
|
describe "input" do
|
5
5
|
it "has form-group css class" do
|
6
|
-
assert_view_select
|
6
|
+
assert_view_select render_input("Phrase"),
|
7
7
|
'input[type="text"][class~="form-control"]'
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
11
11
|
describe "textarea" do
|
12
12
|
it "has form-group css class" do
|
13
|
-
assert_view_select
|
13
|
+
assert_view_select render_input("Plain Text"),
|
14
14
|
'textarea[class~="form-control"]'
|
15
15
|
end
|
16
16
|
end
|
@@ -8,4 +8,9 @@ format :html do
|
|
8
8
|
return unless (source = render :source, size: :small)
|
9
9
|
tag :link, rel: "shortcut icon", href: source
|
10
10
|
end
|
11
|
+
|
12
|
+
def raw_help_text
|
13
|
+
"A favicon (or shortcut icon) is a small image used by browsers to help identify "\
|
14
|
+
"your website. [[http://www.decko.org/favicon|How to customize your favicon]]"
|
15
|
+
end
|
11
16
|
end
|
@@ -13,7 +13,7 @@ end
|
|
13
13
|
format do
|
14
14
|
include File::Format
|
15
15
|
|
16
|
-
view :
|
16
|
+
view :one_line_content do
|
17
17
|
_render_core size: :icon
|
18
18
|
end
|
19
19
|
|
@@ -57,7 +57,7 @@ format do
|
|
57
57
|
voo.size =
|
58
58
|
case
|
59
59
|
when nest_mode == :closed then closed_size
|
60
|
-
when voo.size
|
60
|
+
when voo.size.present? then voo.size.to_sym
|
61
61
|
when main? then main_size
|
62
62
|
else default_size
|
63
63
|
end
|
@@ -1,7 +1,3 @@
|
|
1
|
-
IMAGE_BOX_SIZE_MAP = {
|
2
|
-
icon: :icon, small: :small, medium: :small, large: :medium, xlarge: :medium
|
3
|
-
}.freeze
|
4
|
-
|
5
1
|
format :html do
|
6
2
|
include File::HtmlFormat
|
7
3
|
|
@@ -70,35 +66,4 @@ format :html do
|
|
70
66
|
Card::Content::Diff.render_added_chunk _render_core
|
71
67
|
end
|
72
68
|
end
|
73
|
-
|
74
|
-
view :boxed, unknown: true do
|
75
|
-
image_box { |size| render_core size: size }
|
76
|
-
end
|
77
|
-
|
78
|
-
view :boxed_link, unknown: true do
|
79
|
-
image_box { |size| link_to_card image_box_link_target, render_core(size: size) }
|
80
|
-
end
|
81
|
-
|
82
|
-
def image_box
|
83
|
-
voo.size ||= :medium
|
84
|
-
wrap_with :div, title: image_box_title, class: "image-box #{voo.size}" do
|
85
|
-
yield image_box_size
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
def image_box_size
|
90
|
-
IMAGE_BOX_SIZE_MAP[voo.size.to_sym] || :medium
|
91
|
-
end
|
92
|
-
|
93
|
-
def image_box_card_name
|
94
|
-
card.name.junction? ? card.name.left : card.name
|
95
|
-
end
|
96
|
-
|
97
|
-
def image_box_link_target
|
98
|
-
image_box_card_name
|
99
|
-
end
|
100
|
-
|
101
|
-
def image_box_title
|
102
|
-
image_box_card_name
|
103
|
-
end
|
104
69
|
end
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
RSpec.describe Card::Set::Type::Image do
|
4
4
|
it "has special editor" do
|
5
|
-
assert_view_select
|
5
|
+
assert_view_select render_input("Image"), 'div[class="choose-file"]' do
|
6
6
|
assert_select 'input[class~="file-upload slotter"]'
|
7
7
|
end
|
8
8
|
end
|
data/mod/core/chunk/link.rb
CHANGED
@@ -26,7 +26,7 @@ module Card::Content::Chunk
|
|
26
26
|
end
|
27
27
|
|
28
28
|
@link_text = objectify @link_text
|
29
|
-
if target
|
29
|
+
if target.match? %r{^(/|https?:|mailto:)}
|
30
30
|
@explicit_link = objectify target
|
31
31
|
else
|
32
32
|
@name = target
|
@@ -66,7 +66,9 @@ module Card::Content::Chunk
|
|
66
66
|
@explicit_link = render_obj @explicit_link
|
67
67
|
format.link_to_resource @explicit_link, @link_text, explicit_link_opts
|
68
68
|
elsif @name
|
69
|
-
format.
|
69
|
+
format.with_nest_mode :normal do
|
70
|
+
format.nest referee_name, options.merge(view: view)
|
71
|
+
end
|
70
72
|
end
|
71
73
|
end
|
72
74
|
|
data/mod/core/chunk/view_stub.rb
CHANGED
@@ -1,11 +1,13 @@
|
|
1
|
+
require "msgpack"
|
2
|
+
|
1
3
|
class Card
|
2
4
|
class Content
|
3
5
|
module Chunk
|
4
6
|
class ViewStub < Abstract
|
5
7
|
Chunk.register_class(
|
6
8
|
self,
|
7
|
-
prefix_re: Regexp.escape("(
|
8
|
-
full_re: /\A\(
|
9
|
+
prefix_re: Regexp.escape("(StUb"),
|
10
|
+
full_re: /\A\(StUb(.*?)sTuB\)/m,
|
9
11
|
idx_char: "("
|
10
12
|
)
|
11
13
|
|
@@ -14,8 +16,7 @@ class Card
|
|
14
16
|
end
|
15
17
|
|
16
18
|
def interpret match, _content
|
17
|
-
@
|
18
|
-
@stub_hash = JSON.parse(Card::View::Stub.unescape @options_json).symbolize_keys
|
19
|
+
@stub_hash = JSON.parse(match[1]).symbolize_keys
|
19
20
|
interpret_hash_values
|
20
21
|
end
|
21
22
|
|
data/mod/core/set/all/content.rb
CHANGED
@@ -20,9 +20,65 @@ def structured_content
|
|
20
20
|
end
|
21
21
|
|
22
22
|
format do
|
23
|
+
ONE_LINE_CHARACTER_LIMIT = 60
|
24
|
+
|
23
25
|
def chunk_list # override to customize by set
|
24
26
|
:default
|
25
27
|
end
|
28
|
+
|
29
|
+
view :one_line_content do
|
30
|
+
with_nest_mode :compact do
|
31
|
+
one_line_content
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# DEPRECATED
|
36
|
+
view :closed_content, :one_line_content
|
37
|
+
|
38
|
+
view :raw_one_line_content do
|
39
|
+
raw_one_line_content
|
40
|
+
end
|
41
|
+
|
42
|
+
view :label do
|
43
|
+
card.label
|
44
|
+
end
|
45
|
+
|
46
|
+
view :smart_label, cache: :never, unknown: true do
|
47
|
+
label_with_description render_label, label_description
|
48
|
+
end
|
49
|
+
|
50
|
+
def label_with_description label, description
|
51
|
+
return label unless description
|
52
|
+
|
53
|
+
"#{label} #{popover_link description}"
|
54
|
+
end
|
55
|
+
|
56
|
+
# TODO: move this into a nest once popovers are stub safe
|
57
|
+
def label_description
|
58
|
+
return unless (desc = card.field :description)
|
59
|
+
|
60
|
+
desc.format.render_core
|
61
|
+
end
|
62
|
+
|
63
|
+
def raw_one_line_content
|
64
|
+
cut_with_ellipsis render_raw
|
65
|
+
end
|
66
|
+
|
67
|
+
def one_line_content
|
68
|
+
Card::Content.smart_truncate render_core
|
69
|
+
end
|
70
|
+
|
71
|
+
def cut_with_ellipsis text, limit=one_line_character_limit
|
72
|
+
if text.size <= limit
|
73
|
+
text
|
74
|
+
else
|
75
|
+
text[0..(limit - 3)] + "..."
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
def one_line_character_limit
|
80
|
+
voo.size || ONE_LINE_CHARACTER_LIMIT
|
81
|
+
end
|
26
82
|
end
|
27
83
|
|
28
84
|
format :html do
|
@@ -31,6 +87,9 @@ format :html do
|
|
31
87
|
end
|
32
88
|
end
|
33
89
|
|
90
|
+
# seems like this should be moved to format so we can fall back on title
|
91
|
+
# rather than name. (In fact, name, title, AND label is a bit much.
|
92
|
+
# Trim to 2?)
|
34
93
|
def label
|
35
94
|
name
|
36
95
|
end
|
@@ -10,6 +10,10 @@ def skip_event! *events
|
|
10
10
|
forced_skip_events.merge events
|
11
11
|
end
|
12
12
|
|
13
|
+
def trigger_event! *events
|
14
|
+
forced_trigger_events.merge events
|
15
|
+
end
|
16
|
+
|
13
17
|
private
|
14
18
|
|
15
19
|
def set_condition_applies? set_module, old_sets
|
@@ -79,7 +83,8 @@ end
|
|
79
83
|
|
80
84
|
def trigger_condition_applies? event, required
|
81
85
|
return true unless required == :required
|
82
|
-
|
86
|
+
|
87
|
+
trigger_event?(event.name) || force_trigger_event?(event.name)
|
83
88
|
end
|
84
89
|
|
85
90
|
def single_changed_condition_applies? db_column
|
@@ -115,6 +120,7 @@ end
|
|
115
120
|
|
116
121
|
def standard_skip_event? event, allowed
|
117
122
|
return false unless allowed == :allowed
|
123
|
+
|
118
124
|
skip_events.include? event.to_s
|
119
125
|
end
|
120
126
|
|
@@ -134,12 +140,21 @@ def skip_events
|
|
134
140
|
end
|
135
141
|
end
|
136
142
|
|
143
|
+
# holder for trigger_event! (with bang) events
|
144
|
+
def forced_trigger_events
|
145
|
+
@forced_trigger_events ||= ::Set.new([])
|
146
|
+
end
|
147
|
+
|
137
148
|
def trigger_event? event
|
138
149
|
@names_of_triggered_events ||= triggered_events
|
139
|
-
@names_of_triggered_events.include? event
|
150
|
+
@names_of_triggered_events.include? event
|
140
151
|
end
|
141
152
|
|
142
153
|
def triggered_events
|
143
154
|
events = Array.wrap(trigger_event_in_action) + Array.wrap(act_card.trigger_event)
|
144
155
|
::Set.new events.map(&:to_sym)
|
145
156
|
end
|
157
|
+
|
158
|
+
def force_trigger_event? event
|
159
|
+
forced_trigger_events.include? event
|
160
|
+
end
|
data/mod/core/set/all/name.rb
CHANGED
@@ -97,7 +97,7 @@ end
|
|
97
97
|
def left *args
|
98
98
|
case
|
99
99
|
when simple? then nil
|
100
|
-
when
|
100
|
+
when superleft then superleft
|
101
101
|
when attribute_is_changing?(:name) && name.to_name.trunk_name.key == name_before_act.to_name.key
|
102
102
|
nil # prevent recursion when, eg, renaming A+B to A+B+C
|
103
103
|
else
|
@@ -109,15 +109,10 @@ def deny_because why
|
|
109
109
|
end
|
110
110
|
|
111
111
|
def permitted? action
|
112
|
-
return if Card.config.read_only
|
113
|
-
return true if
|
114
|
-
|
115
|
-
|
116
|
-
# admin can comment if anyone can
|
117
|
-
!permitted_ids.empty?
|
118
|
-
else
|
119
|
-
Auth.as_card.among? permitted_ids
|
120
|
-
end
|
112
|
+
return false if Card.config.read_only # :read does not call #permit
|
113
|
+
return true if Auth.always_ok?
|
114
|
+
|
115
|
+
Auth.as_card.among? who_can(action)
|
121
116
|
end
|
122
117
|
|
123
118
|
def permit action, verb=nil
|
@@ -135,7 +130,7 @@ def ok_to_create
|
|
135
130
|
|
136
131
|
%i[left right].each do |side|
|
137
132
|
# left is supercard; create permissions will get checked there.
|
138
|
-
next if side == :left &&
|
133
|
+
next if side == :left && superleft
|
139
134
|
part_card = send side, new: {}
|
140
135
|
# if no card, there must be other errors
|
141
136
|
next unless part_card && part_card.new_card?
|
@@ -164,13 +159,6 @@ def ok_to_delete
|
|
164
159
|
permit :delete
|
165
160
|
end
|
166
161
|
|
167
|
-
def ok_to_comment
|
168
|
-
permit :comment, "comment on"
|
169
|
-
return unless @action_ok
|
170
|
-
deny_because "No comments allowed on templates" if is_template?
|
171
|
-
deny_because "No comments allowed on structured content" if structure
|
172
|
-
end
|
173
|
-
|
174
162
|
# don't know why we introduced this
|
175
163
|
# but we have to preserve read rules to make
|
176
164
|
# delete acts visible in recent changes -pk
|
@@ -240,7 +228,7 @@ event :check_permissions, :validate do
|
|
240
228
|
end
|
241
229
|
|
242
230
|
def action_for_permission_check
|
243
|
-
commenting? ? :
|
231
|
+
commenting? ? :update : @action
|
244
232
|
end
|
245
233
|
|
246
234
|
def track_permission_errors
|
@@ -250,21 +238,3 @@ def track_permission_errors
|
|
250
238
|
@permission_errors = nil
|
251
239
|
result
|
252
240
|
end
|
253
|
-
|
254
|
-
module Accounts
|
255
|
-
# This is a short-term hack that is used in account-related cards to allow a
|
256
|
-
# permissions pattern where permissions are restricted to the owner of the
|
257
|
-
# account (and, by default, Admin)
|
258
|
-
# That pattern should be permitted by our card representation
|
259
|
-
# (without creating separate rules for each account holder) but is not yet.
|
260
|
-
|
261
|
-
def permit action, verb=nil
|
262
|
-
case action
|
263
|
-
when :comment then @action_ok = false
|
264
|
-
when :create then @superleft ? true : super(action, verb)
|
265
|
-
# restricts account creation to subcard handling on permitted card
|
266
|
-
# (unless explicitly permitted)
|
267
|
-
else own_account? ? true : super(action, verb)
|
268
|
-
end
|
269
|
-
end
|
270
|
-
end
|
@@ -130,12 +130,19 @@ end
|
|
130
130
|
# invokes the given block for each reference in content with
|
131
131
|
# the reference name and reference type
|
132
132
|
def each_reference_out
|
133
|
-
|
134
|
-
content_obj.find_chunks(Card::Content::Chunk::Reference).each do |chunk|
|
133
|
+
content_object.find_chunks(Card::Content::Chunk::Reference).each do |chunk|
|
135
134
|
yield(chunk.referee_name, chunk.reference_code)
|
136
135
|
end
|
137
136
|
end
|
138
137
|
|
138
|
+
def has_nests?
|
139
|
+
content_object.has_chunk? Card::Content::Chunk::Nest
|
140
|
+
end
|
141
|
+
|
142
|
+
def content_object
|
143
|
+
Card::Content.new content, self
|
144
|
+
end
|
145
|
+
|
139
146
|
protected
|
140
147
|
|
141
148
|
# test for updating referer content & preload referer list
|