card 1.16.6 → 1.16.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +234 -49
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/VERSION +1 -1
- data/config/initializers/mime_types.rb +3 -3
- data/config/initializers/notification.rb +1 -1
- data/db/migrate/20121118115000_update_link_type.rb +8 -8
- data/db/migrate/20130411210957_update_codenames.rb +2 -2
- data/db/migrate/20140822073704_create_new_revision_tables.rb +12 -13
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +16 -16
- data/db/migrate/20141121172918_rename_card_migration_table.rb +4 -4
- data/db/migrate_core_cards/20130419215612_import_help_text.rb +3 -3
- data/db/migrate_core_cards/20130823192433_add_style_cards.rb +45 -47
- data/db/migrate_core_cards/20130910183318_move_styles_to_content.rb +1 -1
- data/db/migrate_core_cards/20130920214038_jsonize_tinymce.rb +3 -3
- data/db/migrate_core_cards/20130920291703_update_stylesheets.rb +3 -3
- data/db/migrate_core_cards/20130927191728_account_events.rb +6 -6
- data/db/migrate_core_cards/20131016172445_common_css_patch.rb +1 -1
- data/db/migrate_core_cards/20140110193325_reset_account_request_type.rb +1 -1
- data/db/migrate_core_cards/20140307231621_user_data_to_cards.rb +19 -19
- data/db/migrate_core_cards/20140317035504_account_requests_to_signups.rb +11 -12
- data/db/migrate_core_cards/20140512155840_add_script_cards.rb +35 -36
- data/db/migrate_core_cards/20140629222005_add_email_cards.rb +55 -55
- data/db/migrate_core_cards/20140725180118_config_card_updates.rb +1 -1
- data/db/migrate_core_cards/20141111083921_delete_machine_output.rb +2 -2
- data/db/migrate_core_cards/20141115034214_config_descriptions_etc.rb +3 -3
- data/db/migrate_core_cards/20141120120605_fix_notification_html_message.rb +2 -2
- data/db/migrate_core_cards/20141204061304_watchers_to_following.rb +8 -8
- data/db/migrate_core_cards/20141208162106_add_ace_script.rb +2 -2
- data/db/migrate_core_cards/20141216155251_add_more_following_cards.rb +16 -16
- data/db/migrate_core_cards/20141230204340_uri_codename.rb +1 -1
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +19 -19
- data/db/migrate_core_cards/20150220134731_following_to_follow_rule.rb +3 -3
- data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +15 -15
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +11 -11
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +1 -1
- data/db/migrate_core_cards/20150429090551_search_card_context.rb +1 -1
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +3 -3
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +1 -1
- data/db/migrate_core_cards/20150528084659_add_session_cardtype.rb +4 -4
- data/db/migrate_core_cards/20150601133433_add_recent_setting_session_card.rb +5 -5
- data/db/migrate_core_cards/20150605115802_add_performance_log_card.rb +1 -1
- data/db/migrate_core_cards/20150610171702_add_debugger_session_card.rb +2 -2
- data/db/migrate_core_cards/20150611203506_rails_inflection_updates.rb +5 -5
- data/db/migrate_core_cards/20150627205133_fix_script_bootstrap_card_type.rb +1 -1
- data/db/migrate_core_cards/20150702130543_remove_edit_toolbar_pinned.rb +1 -1
- data/db/migrate_core_cards/20150724123438_update_file_and_image_cards.rb +5 -5
- data/db/migrate_core_cards/20150807205221_create_references_for_search_cards.rb +1 -1
- data/db/migrate_core_cards/20150824135418_update_file_history.rb +3 -3
- data/db/migrate_core_cards/20150903130006_attachment_upload_cards.rb +2 -2
- data/db/migrate_core_cards/20150910085603_remove_performance_log_card.rb +1 -1
- data/lib/card.rb +4 -4
- data/lib/card/active_record_ext.rb +8 -8
- data/lib/card/auth.rb +6 -6
- data/lib/card/cache.rb +1 -1
- data/lib/card/chunk.rb +1 -1
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +10 -10
- data/lib/card/env.rb +1 -1
- data/lib/card/format.rb +12 -12
- data/lib/card/loader.rb +1 -1
- data/lib/card/migration.rb +1 -1
- data/lib/card/name.rb +4 -4
- data/lib/card/query.rb +255 -61
- data/lib/card/query/attributes.rb +310 -0
- data/lib/card/query/clause.rb +12 -15
- data/lib/card/query/join.rb +73 -0
- data/lib/card/query/reference.rb +51 -0
- data/lib/card/query/sql_statement.rb +228 -0
- data/lib/card/query/value.rb +66 -0
- data/lib/card/reference.rb +6 -6
- data/lib/card/set.rb +12 -12
- data/lib/card/set_pattern.rb +9 -9
- data/lib/card/spec_helper.rb +5 -5
- data/lib/card/success.rb +1 -1
- data/lib/cardio.rb +7 -7
- data/lib/generators/card/format/format_generator.rb +3 -3
- data/lib/generators/card/migration/migration_generator.rb +5 -5
- data/lib/generators/card/set/set_generator.rb +4 -4
- data/mod/01_core/chunk/include.rb +4 -4
- data/mod/01_core/chunk/link.rb +5 -5
- data/mod/01_core/chunk/literal.rb +2 -2
- data/mod/01_core/chunk/query_reference.rb +8 -8
- data/mod/01_core/chunk/uri.rb +18 -18
- data/mod/01_core/format/html_format.rb +4 -4
- data/mod/01_core/set/all/active_card.rb +2 -2
- data/mod/01_core/set/all/collection.rb +21 -26
- data/mod/01_core/set/all/content.rb +2 -2
- data/mod/01_core/set/all/fetch.rb +6 -6
- data/mod/01_core/set/all/initialize.rb +4 -4
- data/mod/01_core/set/all/location_history.rb +2 -2
- data/mod/01_core/set/all/name.rb +14 -14
- data/mod/01_core/set/all/pattern.rb +1 -1
- data/mod/01_core/set/all/permissions.rb +12 -12
- data/mod/01_core/set/all/phases.rb +29 -12
- data/mod/01_core/set/all/references.rb +14 -14
- data/mod/01_core/set/all/rules.rb +8 -8
- data/mod/01_core/set/all/templating.rb +10 -9
- data/mod/01_core/set/all/tracked_attributes.rb +7 -7
- data/mod/01_core/set/all/trash.rb +6 -6
- data/mod/01_core/set/all/type.rb +7 -7
- data/mod/01_core/set/all/utils.rb +4 -4
- data/mod/01_core/set/all/view_cache.rb +1 -1
- data/mod/01_core/set_pattern/02_all_plus.rb +2 -2
- data/mod/01_core/set_pattern/03_type.rb +1 -1
- data/mod/01_core/set_pattern/04_star.rb +1 -1
- data/mod/01_core/set_pattern/05_rstar.rb +2 -2
- data/mod/01_core/set_pattern/06_right.rb +4 -4
- data/mod/01_core/set_pattern/07_type_plus_right.rb +4 -4
- data/mod/01_core/set_pattern/08_self.rb +1 -1
- data/mod/01_core/spec/chunk/uri_spec.rb +73 -73
- data/mod/01_core/spec/format/html_format_spec.rb +5 -5
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +1 -1
- data/mod/01_core/spec/set/all/collection_spec.rb +22 -22
- data/mod/01_core/spec/set/all/content_spec.rb +1 -1
- data/mod/01_core/spec/set/all/fetch_spec.rb +24 -24
- data/mod/01_core/spec/set/all/initialize_spec.rb +9 -9
- data/mod/01_core/spec/set/all/name_spec.rb +8 -8
- data/mod/01_core/spec/set/all/pattern_spec.rb +10 -10
- data/mod/01_core/spec/set/all/permissions_spec.rb +45 -45
- data/mod/01_core/spec/set/all/references_spec.rb +1 -1
- data/mod/01_core/spec/set/all/rules2_spec.rb +15 -15
- data/mod/01_core/spec/set/all/rules_spec.rb +37 -37
- data/mod/01_core/spec/set/all/templating_spec.rb +21 -21
- data/mod/01_core/spec/set/all/tracked_attributes_spec.rb +55 -55
- data/mod/01_core/spec/set/all/trash_spec.rb +4 -4
- data/mod/01_core/spec/set/all/type_spec.rb +15 -15
- data/mod/01_history/lib/card/act.rb +2 -2
- data/mod/01_history/lib/card/action.rb +22 -22
- data/mod/01_history/lib/card/change.rb +1 -1
- data/mod/01_history/set/all/actions.rb +2 -2
- data/mod/01_history/set/all/content_history.rb +4 -4
- data/mod/01_history/set/all/history.rb +46 -46
- data/mod/02_basic_types/set/all/all_css.rb +10 -10
- data/mod/02_basic_types/set/all/all_csv.rb +7 -7
- data/mod/02_basic_types/set/all/base.rb +25 -25
- data/mod/02_basic_types/set/all/json.rb +16 -16
- data/mod/02_basic_types/set/all/rss.rb +7 -7
- data/mod/02_basic_types/set/type/html.rb +2 -2
- data/mod/02_basic_types/set/type/plain_text.rb +1 -1
- data/mod/02_basic_types/set/type/pointer.rb +39 -31
- data/mod/02_basic_types/spec/set/all/all_css_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/all_csv_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/base_spec.rb +18 -18
- data/mod/02_basic_types/spec/set/all/json_spec.rb +4 -4
- data/mod/02_basic_types/spec/set/all/rss_spec.rb +8 -2
- data/mod/02_basic_types/spec/set/type/plain_text_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/type/pointer_spec.rb +54 -44
- data/mod/03_machines/lib/card/machine.rb +46 -29
- data/mod/03_machines/lib/card/machine_input.rb +34 -10
- data/mod/03_machines/set/type/coffee_script.rb +3 -3
- data/mod/03_machines/set/type/css.rb +8 -8
- data/mod/03_machines/set/type/java_script.rb +4 -4
- data/mod/03_machines/set/type/scss.rb +2 -2
- data/mod/03_machines/set/type/skin.rb +1 -1
- data/mod/03_machines/spec/lib/shared_machine_examples.rb +27 -27
- data/mod/03_machines/spec/lib/shared_machine_input_examples.rb +8 -8
- data/mod/03_machines/spec/set/type/coffeescript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/css_spec.rb +9 -9
- data/mod/03_machines/spec/set/type/javascript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/scss_spec.rb +5 -5
- data/mod/03_machines/spec/set/type/skin_spec.rb +25 -25
- data/mod/04_settings/lib/card/setting.rb +11 -11
- data/mod/04_settings/set/abstract/permission.rb +9 -9
- data/mod/04_settings/set/right/script.rb +1 -1
- data/mod/04_settings/set/right/structure.rb +0 -5
- data/mod/04_settings/set/right/style.rb +2 -2
- data/mod/04_settings/set/self/accountable.rb +1 -1
- data/mod/04_settings/set/self/add_help.rb +1 -1
- data/mod/04_settings/set/self/autoname.rb +1 -1
- data/mod/04_settings/set/self/captcha.rb +1 -1
- data/mod/04_settings/set/self/create.rb +1 -1
- data/mod/04_settings/set/self/default.rb +1 -1
- data/mod/04_settings/set/self/delete.rb +1 -1
- data/mod/04_settings/set/self/help.rb +1 -1
- data/mod/04_settings/set/self/input.rb +1 -1
- data/mod/04_settings/set/self/layout.rb +1 -1
- data/mod/04_settings/set/self/on_create.rb +1 -1
- data/mod/04_settings/set/self/on_delete.rb +1 -1
- data/mod/04_settings/set/self/on_update.rb +1 -1
- data/mod/04_settings/set/self/options.rb +1 -1
- data/mod/04_settings/set/self/options_label.rb +1 -1
- data/mod/04_settings/set/self/read.rb +1 -1
- data/mod/04_settings/set/self/script.rb +1 -1
- data/mod/04_settings/set/self/structure.rb +1 -1
- data/mod/04_settings/set/self/style.rb +1 -1
- data/mod/04_settings/set/self/table_of_contents.rb +1 -1
- data/mod/04_settings/set/self/thanks.rb +1 -1
- data/mod/04_settings/set/self/update.rb +1 -1
- data/mod/04_settings/set/type/setting.rb +14 -14
- data/mod/04_settings/spec/set/right/comment_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/create_spec.rb +1 -1
- data/mod/04_settings/spec/set/right/script_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/structure_spec.rb +4 -2
- data/mod/04_settings/spec/set/right/style_spec.rb +7 -7
- data/mod/04_settings/spec/set/type/setting_spec.rb +2 -2
- data/mod/05_email/lib/card/follow_option.rb +24 -24
- data/mod/05_email/set/all/follow.rb +24 -16
- data/mod/05_email/set/all/notify.rb +25 -23
- data/mod/05_email/set/all/observer.rb +5 -5
- data/mod/05_email/set/right/bcc.rb +8 -8
- data/mod/05_email/set/right/follow.rb +44 -17
- data/mod/05_email/set/right/follow_fields.rb +1 -1
- data/mod/05_email/set/right/following.rb +49 -40
- data/mod/05_email/set/self/always.rb +2 -2
- data/mod/05_email/set/self/created.rb +1 -1
- data/mod/05_email/set/self/edited.rb +4 -4
- data/mod/05_email/set/self/follow.rb +1 -1
- data/mod/05_email/set/self/follow_defaults.rb +9 -9
- data/mod/05_email/set/self/never.rb +1 -1
- data/mod/05_email/set/type/email_template.rb +9 -9
- data/mod/05_email/set/type_plus_right/user/follow.rb +16 -16
- data/mod/05_email/spec/set/all/follow_spec.rb +10 -10
- data/mod/05_email/spec/set/all/notify_spec.rb +82 -82
- data/mod/05_email/spec/set/all/observer_spec.rb +16 -16
- data/mod/05_email/spec/set/right/followers_spec.rb +6 -6
- data/mod/05_email/spec/set/self/follow_defaults_spec.rb +2 -2
- data/mod/05_standard/lib/carrier_wave/cardmount.rb +5 -5
- data/mod/05_standard/lib/image_uploader.rb +8 -8
- data/mod/05_standard/set/abstract/attachment.rb +18 -18
- data/mod/05_standard/set/all/account.rb +5 -5
- data/mod/05_standard/set/all/comment.rb +7 -7
- data/mod/05_standard/set/all/error.rb +25 -25
- data/mod/05_standard/set/all/event_viz.rb +1 -1
- data/mod/05_standard/set/all/links.rb +9 -9
- data/mod/05_standard/set/all/rich_html/content.rb +34 -34
- data/mod/05_standard/set/all/rich_html/editing.rb +35 -35
- data/mod/05_standard/set/all/rich_html/form.rb +20 -20
- data/mod/05_standard/set/all/rich_html/header.rb +8 -8
- data/mod/05_standard/set/all/rich_html/menu.rb +33 -33
- data/mod/05_standard/set/all/rich_html/modal.rb +16 -16
- data/mod/05_standard/set/all/rich_html/toolbar.rb +63 -63
- data/mod/05_standard/set/all/rich_html/wrapper.rb +8 -8
- data/mod/05_standard/set/right/account.rb +27 -27
- data/mod/05_standard/set/right/email.rb +5 -5
- data/mod/05_standard/set/right/password.rb +5 -5
- data/mod/05_standard/set/rstar/rules.rb +52 -52
- data/mod/05_standard/set/self/account_links.rb +27 -27
- data/mod/05_standard/set/self/all.rb +1 -1
- data/mod/05_standard/set/self/head.rb +5 -5
- data/mod/05_standard/set/self/navbox.rb +11 -11
- data/mod/05_standard/set/self/recent.rb +2 -2
- data/mod/05_standard/set/self/search.rb +13 -13
- data/mod/05_standard/set/self/signin.rb +19 -19
- data/mod/05_standard/set/self/stats.rb +2 -2
- data/mod/05_standard/set/type/basic.rb +1 -1
- data/mod/05_standard/set/type/cardtype.rb +5 -5
- data/mod/05_standard/set/type/date.rb +1 -1
- data/mod/05_standard/set/type/file.rb +7 -7
- data/mod/05_standard/set/type/image.rb +8 -8
- data/mod/05_standard/set/type/number.rb +2 -2
- data/mod/05_standard/set/type/phrase.rb +1 -1
- data/mod/05_standard/set/type/search_type.rb +27 -21
- data/mod/05_standard/set/type/session.rb +2 -2
- data/mod/05_standard/set/type/set.rb +37 -37
- data/mod/05_standard/set/type/signup.rb +25 -25
- data/mod/05_standard/set/type/uri.rb +1 -1
- data/mod/05_standard/set/type/user.rb +21 -21
- data/mod/05_standard/spec/chunk/include_spec.rb +16 -16
- data/mod/05_standard/spec/chunk/link_spec.rb +18 -18
- data/mod/05_standard/spec/chunk/query_reference_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/account_spec.rb +7 -7
- data/mod/05_standard/spec/set/all/email_html_spec.rb +3 -3
- data/mod/05_standard/spec/set/all/history_spec.rb +14 -14
- data/mod/05_standard/spec/set/all/rich_html/editing_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/rich_html/form_spec.rb +2 -2
- data/mod/05_standard/spec/set/right/account_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/email_spec.rb +8 -8
- data/mod/05_standard/spec/set/right/password_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_created_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_last_edited_spec.rb +1 -1
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/account_links_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/all_spec.rb +8 -11
- data/mod/05_standard/spec/set/self/head_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/navbox_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/now_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/version_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/email_template_spec.rb +25 -25
- data/mod/05_standard/spec/set/type/file_spec.rb +4 -4
- data/mod/05_standard/spec/set/type/html_spec.rb +3 -3
- data/mod/05_standard/spec/set/type/image_spec.rb +6 -6
- data/mod/05_standard/spec/set/type/layout_type_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/search_type_spec.rb +10 -10
- data/mod/05_standard/spec/set/type/signup_spec.rb +11 -11
- data/mod/05_standard/spec/set/type/toggle_spec.rb +2 -2
- data/mod/05_standard/spec/set/type/uri_spec.rb +9 -9
- data/mod/06_bootstrap/set/all/bootstrap/helper.rb +10 -10
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +4 -4
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +1 -1
- data/spec/lib/card/action_spec.rb +2 -2
- data/spec/lib/card/cache_spec.rb +7 -7
- data/spec/lib/card/content_spec.rb +31 -37
- data/spec/lib/card/diff_spec.rb +56 -56
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/query_spec.rb +382 -265
- data/spec/lib/card/reference_spec.rb +133 -140
- data/spec/lib/card/set_pattern_spec.rb +10 -9
- data/spec/lib/card/set_spec.rb +11 -11
- data/spec/lib/card/success_spec.rb +16 -8
- data/spec/mailers/mailer_spec.rb +5 -5
- data/spec/models/card/cardtype_spec.rb +20 -20
- data/spec/models/card/create_spec.rb +6 -6
- data/spec/models/card/trash_spec.rb +20 -20
- data/spec/models/card/type_transition_spec.rb +3 -3
- data/spec/models/card/validation_spec.rb +5 -5
- data/spec/models/card_spec.rb +24 -24
- data/spec/spec_helper.rb +5 -5
- data/tmpsets/set/mod001-01_core/all/active_card.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/collection.rb +23 -26
- data/tmpsets/set/mod001-01_core/all/content.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/fetch.rb +6 -6
- data/tmpsets/set/mod001-01_core/all/initialize.rb +8 -4
- data/tmpsets/set/mod001-01_core/all/name.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/pattern.rb +1 -1
- data/tmpsets/set/mod001-01_core/all/permissions.rb +12 -12
- data/tmpsets/set/mod001-01_core/all/phases.rb +31 -13
- data/tmpsets/set/mod001-01_core/all/references.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/rules.rb +8 -10
- data/tmpsets/set/mod001-01_core/all/templating.rb +10 -9
- data/tmpsets/set/mod001-01_core/all/tracked_attributes.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/trash.rb +9 -8
- data/tmpsets/set/mod001-01_core/all/type.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/utils.rb +16 -4
- data/tmpsets/set/mod001-01_core/all/view_cache.rb +1 -1
- data/tmpsets/set/mod002-01_history/all/actions.rb +2 -2
- data/tmpsets/set/mod002-01_history/all/content_history.rb +11 -7
- data/tmpsets/set/mod002-01_history/all/history.rb +46 -46
- data/tmpsets/set/mod003-02_basic_types/all/all_css.rb +10 -10
- data/tmpsets/set/mod003-02_basic_types/all/all_csv.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/all/base.rb +25 -25
- data/tmpsets/set/mod003-02_basic_types/all/json.rb +16 -16
- data/tmpsets/set/mod003-02_basic_types/all/rss.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/type/html.rb +2 -2
- data/tmpsets/set/mod003-02_basic_types/type/plain_text.rb +1 -1
- data/tmpsets/set/mod003-02_basic_types/type/pointer.rb +38 -31
- data/tmpsets/set/mod004-03_machines/right/machine_output.rb +4 -0
- data/tmpsets/set/mod004-03_machines/type/coffee_script.rb +3 -3
- data/tmpsets/set/mod004-03_machines/type/css.rb +8 -8
- data/tmpsets/set/mod004-03_machines/type/java_script.rb +4 -4
- data/tmpsets/set/mod004-03_machines/type/scss.rb +2 -2
- data/tmpsets/set/mod004-03_machines/type/skin.rb +1 -1
- data/tmpsets/set/mod005-04_settings/abstract/permission.rb +9 -9
- data/tmpsets/set/mod005-04_settings/right/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/right/structure.rb +0 -5
- data/tmpsets/set/mod005-04_settings/right/style.rb +2 -2
- data/tmpsets/set/mod005-04_settings/self/accountable.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/add_help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/autoname.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/captcha.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/default.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/input.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/layout.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options_label.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/read.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/structure.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/style.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/table_of_contents.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/thanks.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/type/setting.rb +14 -14
- data/tmpsets/set/mod006-05_email/all/follow.rb +24 -16
- data/tmpsets/set/mod006-05_email/all/notify.rb +25 -23
- data/tmpsets/set/mod006-05_email/all/observer.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/bcc.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/follow.rb +44 -17
- data/tmpsets/set/mod006-05_email/right/follow_fields.rb +1 -1
- data/tmpsets/set/mod006-05_email/right/following.rb +49 -40
- data/tmpsets/set/mod006-05_email/self/always.rb +2 -2
- data/tmpsets/set/mod006-05_email/self/created.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/edited.rb +4 -4
- data/tmpsets/set/mod006-05_email/self/follow.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/follow_defaults.rb +9 -9
- data/tmpsets/set/mod006-05_email/self/never.rb +1 -1
- data/tmpsets/set/mod006-05_email/type/email_template.rb +9 -9
- data/tmpsets/set/mod006-05_email/type_plus_right/user/follow.rb +17 -17
- data/tmpsets/set/mod007-05_standard/abstract/attachment.rb +98 -46
- data/tmpsets/set/mod007-05_standard/all/account.rb +5 -5
- data/tmpsets/set/mod007-05_standard/all/comment.rb +7 -7
- data/tmpsets/set/mod007-05_standard/all/error.rb +26 -26
- data/tmpsets/set/mod007-05_standard/all/event_viz.rb +1 -1
- data/tmpsets/set/mod007-05_standard/all/links.rb +10 -9
- data/tmpsets/set/mod007-05_standard/all/rich_html/content.rb +34 -34
- data/tmpsets/set/mod007-05_standard/all/rich_html/editing.rb +35 -35
- data/tmpsets/set/mod007-05_standard/all/rich_html/form.rb +20 -20
- data/tmpsets/set/mod007-05_standard/all/rich_html/header.rb +8 -8
- data/tmpsets/set/mod007-05_standard/all/rich_html/menu.rb +33 -33
- data/tmpsets/set/mod007-05_standard/all/rich_html/modal.rb +16 -16
- data/tmpsets/set/mod007-05_standard/all/rich_html/toolbar.rb +63 -63
- data/tmpsets/set/mod007-05_standard/all/rich_html/wrapper.rb +8 -8
- data/tmpsets/set/mod007-05_standard/right/account.rb +27 -27
- data/tmpsets/set/mod007-05_standard/right/email.rb +5 -5
- data/tmpsets/set/mod007-05_standard/right/password.rb +5 -5
- data/tmpsets/set/mod007-05_standard/rstar/rules.rb +52 -52
- data/tmpsets/set/mod007-05_standard/self/account_links.rb +27 -27
- data/tmpsets/set/mod007-05_standard/self/all.rb +1 -1
- data/tmpsets/set/mod007-05_standard/self/head.rb +5 -5
- data/tmpsets/set/mod007-05_standard/self/navbox.rb +11 -11
- data/tmpsets/set/mod007-05_standard/self/recent.rb +2 -2
- data/tmpsets/set/mod007-05_standard/self/search.rb +13 -13
- data/tmpsets/set/mod007-05_standard/self/signin.rb +19 -19
- data/tmpsets/set/mod007-05_standard/self/stats.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/basic.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/cardtype.rb +5 -5
- data/tmpsets/set/mod007-05_standard/type/date.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/file.rb +23 -8
- data/tmpsets/set/mod007-05_standard/type/image.rb +10 -8
- data/tmpsets/set/mod007-05_standard/type/number.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/phrase.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/search_type.rb +21 -19
- data/tmpsets/set/mod007-05_standard/type/session.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/set.rb +37 -37
- data/tmpsets/set/mod007-05_standard/type/signup.rb +25 -25
- data/tmpsets/set/mod007-05_standard/type/uri.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/user.rb +21 -21
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/helper.rb +10 -10
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/wrapper.rb +4 -4
- data/tmpsets/set/mod008-06_bootstrap/all/rich_bootstrap.rb +1 -1
- data/tmpsets/set_pattern/101-all_plus.rb +2 -2
- data/tmpsets/set_pattern/102-type.rb +1 -1
- data/tmpsets/set_pattern/103-star.rb +1 -1
- data/tmpsets/set_pattern/104-rstar.rb +2 -2
- data/tmpsets/set_pattern/105-right.rb +4 -4
- data/tmpsets/set_pattern/106-type_plus_right.rb +4 -4
- data/tmpsets/set_pattern/107-self.rb +1 -1
- metadata +7 -5
- data/lib/card/query/card_clause.rb +0 -528
- data/lib/card/query/ref_clause.rb +0 -47
- data/lib/card/query/value_clause.rb +0 -65
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
class Card; module Set; module Self; module Update; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/04_settings/set/self/update.rb ~~~~~~~~~~~
|
3
3
|
extend Card::Setting
|
4
|
-
setting_opts :
|
4
|
+
setting_opts group: :permission, position: 3, rule_type_editable: false
|
5
5
|
|
6
6
|
|
7
7
|
# ~~~~~~~~~~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/04_settings/set/self/update.rb ~~~~~~~~~~~
|
@@ -4,7 +4,7 @@ require_dependency 'json'
|
|
4
4
|
|
5
5
|
def self.member_names
|
6
6
|
@@member_names ||= begin
|
7
|
-
Card.search( :
|
7
|
+
Card.search( type_id: SettingID, return: 'key' ).inject({}) do |hash, card_key|
|
8
8
|
hash[card_key] = true
|
9
9
|
hash
|
10
10
|
end
|
@@ -14,12 +14,12 @@ end
|
|
14
14
|
view :core do |args|
|
15
15
|
|
16
16
|
klasses = Card.set_patterns.reverse.map do |set_class|
|
17
|
-
wql = { :
|
18
|
-
:
|
19
|
-
|
20
|
-
|
21
|
-
:
|
22
|
-
:
|
17
|
+
wql = { left: { type: Card::SetID },
|
18
|
+
right: card.id,
|
19
|
+
#sort: 'content',
|
20
|
+
|
21
|
+
sort: ['content', 'name'],
|
22
|
+
limit: 0
|
23
23
|
}
|
24
24
|
wql[:left][ (set_class.anchorless? ? :id : :right_id )] = set_class.pattern_id
|
25
25
|
|
@@ -28,14 +28,14 @@ view :core do |args|
|
|
28
28
|
end.compact
|
29
29
|
|
30
30
|
|
31
|
-
|
32
|
-
%{
|
31
|
+
|
32
|
+
%{
|
33
33
|
#{ _render_rule_help args }
|
34
34
|
<table class="setting-rules">
|
35
35
|
<tr><th>Set</th><th>Rule</th></tr>
|
36
36
|
#{
|
37
37
|
klasses.map do |klass, rules|
|
38
|
-
%{
|
38
|
+
%{
|
39
39
|
<tr class="klass-row anchorless-#{ klass.anchorless? }">
|
40
40
|
<td class="setting-klass">#{ klass.anchorless? ? card_link( klass.pattern ) : klass.pattern }</td>
|
41
41
|
<td class="rule-content-container">
|
@@ -52,8 +52,8 @@ view :core do |args|
|
|
52
52
|
previous_content = current_content
|
53
53
|
%{
|
54
54
|
<tr class="#{ 'rule-changeover' if changeover }">
|
55
|
-
<td class="rule-anchor">#{ card_link rule.cardname.trunk_name, :
|
56
|
-
|
55
|
+
<td class="rule-anchor">#{ card_link rule.cardname.trunk_name, text: rule.cardname.trunk_name.trunk_name }</td>
|
56
|
+
|
57
57
|
#{
|
58
58
|
if duplicate
|
59
59
|
%{ <td></td> }
|
@@ -70,11 +70,11 @@ view :core do |args|
|
|
70
70
|
|
71
71
|
end * "\n"
|
72
72
|
end
|
73
|
-
|
73
|
+
|
74
74
|
}
|
75
75
|
}
|
76
76
|
end * "\n"
|
77
|
-
|
77
|
+
|
78
78
|
}
|
79
79
|
</table>
|
80
80
|
}
|
@@ -4,19 +4,23 @@ card_accessor :followers
|
|
4
4
|
|
5
5
|
FOLLOWER_IDS_CACHE_KEY = 'FOLLOWER_IDS'
|
6
6
|
|
7
|
-
event :
|
7
|
+
event :cache_expired_for_new_set, before: :store, on: :create,
|
8
|
+
when: proc { |c| c.type_id == Card::SetID } do
|
8
9
|
Card.follow_caches_expired
|
9
10
|
end
|
10
11
|
|
11
|
-
event :
|
12
|
+
event :cache_expired_for_type_change, before: :store, changed: :type_id do
|
13
|
+
#FIXME expire (also?) after save
|
12
14
|
Card.follow_caches_expired
|
13
15
|
end
|
14
16
|
|
15
|
-
event :
|
17
|
+
event :cache_expired_for_name_change, before: :store, changed: :name do
|
16
18
|
Card.follow_caches_expired
|
17
19
|
end
|
18
20
|
|
19
|
-
event :
|
21
|
+
event :cache_expired_for_new_user_rule, before: :extend,
|
22
|
+
when: proc { |c| c.follow_rule_card? } do
|
23
|
+
|
20
24
|
Card.follow_caches_expired
|
21
25
|
end
|
22
26
|
|
@@ -24,21 +28,25 @@ format do
|
|
24
28
|
|
25
29
|
def follow_link_hash args
|
26
30
|
toggle = args[:toggle] || ( card.followed? ? :off : :on )
|
27
|
-
hash = { :
|
31
|
+
hash = { class: "follow-toggle-#{toggle}" }
|
32
|
+
these_emails = "emails about changes to #{card.follow_label}"
|
28
33
|
case toggle
|
29
34
|
when :off
|
30
35
|
hash[:content] = '*never'
|
31
|
-
hash[:title] = "stop sending
|
36
|
+
hash[:title] = "stop sending #{these_emails}"
|
32
37
|
hash[:verb] = 'unfollow'
|
33
38
|
when :on
|
34
39
|
hash[:content] = '*always'
|
35
|
-
hash[:title] = "send
|
40
|
+
hash[:title] = "send #{these_emails}"
|
36
41
|
hash[:verb] = 'follow'
|
37
42
|
end
|
38
|
-
|
39
|
-
hash[:path] = path
|
40
|
-
|
41
|
-
|
43
|
+
set_card = card.default_follow_set_card
|
44
|
+
hash[:path] = path(
|
45
|
+
name: set_card.follow_rule_name( Auth.current.name),
|
46
|
+
action: :update,
|
47
|
+
success: { layout: :modal, view: :follow_status },
|
48
|
+
card: { content: "[[#{hash[:content]}]]" }
|
49
|
+
)
|
42
50
|
hash
|
43
51
|
end
|
44
52
|
|
@@ -52,14 +60,14 @@ end
|
|
52
60
|
|
53
61
|
format :html do
|
54
62
|
|
55
|
-
view :follow_link, :
|
63
|
+
view :follow_link, tags: :unknown_ok, perms: :none do |args|
|
56
64
|
hash = follow_link_hash args
|
57
65
|
text = args[:icon] ? glyphicon('flag') : ''
|
58
66
|
text += %[<span class="follow-verb menu-item-label">#{hash[:verb]}</span>].html_safe
|
59
|
-
follow_rule_card = Card.fetch(card.default_follow_set_card.follow_rule_name( Auth.current.name ), :
|
67
|
+
follow_rule_card = Card.fetch(card.default_follow_set_card.follow_rule_name( Auth.current.name ), new: {})
|
60
68
|
opts = ( args[:html_args] || {} ).clone
|
61
69
|
opts.merge!(
|
62
|
-
:
|
70
|
+
title: hash[:title],
|
63
71
|
'data-path' => hash[:path],
|
64
72
|
'data-toggle' => 'modal',
|
65
73
|
'data-target' => "#modal-#{card.cardname.safe_key}",
|
@@ -116,7 +124,7 @@ end
|
|
116
124
|
|
117
125
|
|
118
126
|
def follow_rule_applies? follower_id
|
119
|
-
follow_rule = rule :follow, :
|
127
|
+
follow_rule = rule :follow, user_id: follower_id
|
120
128
|
if follow_rule.present?
|
121
129
|
follow_rule.split("\n").each do |value|
|
122
130
|
|
@@ -212,7 +220,7 @@ def all_direct_follower_ids_with_reason
|
|
212
220
|
set_card.all_user_ids_with_rule_for(:follow).each do |user_id|
|
213
221
|
if (!visited.include?(user_id)) && (follow_option = self.follow_rule_applies?(user_id))
|
214
222
|
visited << user_id
|
215
|
-
yield(user_id, :set_card
|
223
|
+
yield(user_id, set_card: set_card, option: follow_option)
|
216
224
|
end
|
217
225
|
end
|
218
226
|
end
|
@@ -13,16 +13,16 @@ class FollowerStash
|
|
13
13
|
if !@visited.include? card.key
|
14
14
|
@visited.add card.key
|
15
15
|
card.all_direct_follower_ids_with_reason do |user_id, reason|
|
16
|
-
notify Card.fetch(user_id), :
|
16
|
+
notify Card.fetch(user_id), of: reason
|
17
17
|
end
|
18
18
|
if card.left and !@visited.include?(card.left.name) and follow_field_rule = card.left.rule_card(:follow_fields)
|
19
19
|
|
20
|
-
follow_field_rule.item_names(:
|
20
|
+
follow_field_rule.item_names(context: card.left.cardname).each do |item|
|
21
21
|
if @visited.include? item.to_name.key
|
22
22
|
add_affected_card card.left
|
23
23
|
break
|
24
24
|
elsif item.to_name.key == Card[:includes].key
|
25
|
-
includee_set = Card.search(:
|
25
|
+
includee_set = Card.search(included_by: card.left.name).map(&:key)
|
26
26
|
if !@visited.intersection(includee_set).empty?
|
27
27
|
add_affected_card card.left
|
28
28
|
break
|
@@ -68,19 +68,19 @@ def notable_change?
|
|
68
68
|
!silent_change && !supercard && current_act && Card::Auth.current_id != WagnBotID && followable?
|
69
69
|
end
|
70
70
|
|
71
|
-
event :notify_followers_after_save, :
|
71
|
+
event :notify_followers_after_save, after: :subsequent, on: :save, when: proc{ |ca| ca.notable_change? } do
|
72
72
|
notify_followers
|
73
73
|
end
|
74
74
|
|
75
75
|
# in the delete case we have to calculate the follower_stash beforehand
|
76
76
|
# but we can't pass the follower_stash through the ActiveJob queue.
|
77
77
|
# We have to deal with the notifications in the extend phase instead of the subsequent phase
|
78
|
-
event :stash_followers, :
|
78
|
+
event :stash_followers, after: :approve, on: :delete do
|
79
79
|
act_card.follower_stash ||= FollowerStash.new
|
80
80
|
act_card.follower_stash.add_affected_card self
|
81
81
|
end
|
82
|
-
event :notify_followers_after_delete, :
|
83
|
-
:
|
82
|
+
event :notify_followers_after_delete, after: :extend, on: :delete,
|
83
|
+
when: proc{ |ca| ca.notable_change? } do
|
84
84
|
notify_followers
|
85
85
|
end
|
86
86
|
|
@@ -104,7 +104,7 @@ def notify_followers
|
|
104
104
|
end
|
105
105
|
|
106
106
|
format do
|
107
|
-
view :list_of_changes, :
|
107
|
+
view :list_of_changes, denial: :blank do |args|
|
108
108
|
action = get_action(args)
|
109
109
|
|
110
110
|
relevant_fields = case action.action_type
|
@@ -119,10 +119,11 @@ format do
|
|
119
119
|
end
|
120
120
|
|
121
121
|
|
122
|
-
view :subedits, :
|
123
|
-
subedits =
|
122
|
+
view :subedits, perms: :none do |args|
|
123
|
+
subedits =
|
124
|
+
get_act(args).relevant_actions_for(card).map do |action|
|
124
125
|
if action.card_id != card.id
|
125
|
-
action.card.format(:format
|
126
|
+
action.card.format(format: @format).render_subedit_notice(action: action)
|
126
127
|
end
|
127
128
|
end.compact.join
|
128
129
|
|
@@ -133,7 +134,7 @@ format do
|
|
133
134
|
end
|
134
135
|
end
|
135
136
|
|
136
|
-
view :subedit_notice, :
|
137
|
+
view :subedit_notice, denial: :blank do |args|
|
137
138
|
action = get_action(args)
|
138
139
|
name_before_action = (action.new_values[:name] && action.old_values[:name]) || card.name
|
139
140
|
|
@@ -141,7 +142,7 @@ format do
|
|
141
142
|
#{ render_list_of_changes(args) }}
|
142
143
|
end
|
143
144
|
|
144
|
-
view :followed, :
|
145
|
+
view :followed, perms: :none, closed: true do |args|
|
145
146
|
if args[:followed_set] && (set_card = Card.fetch(args[:followed_set])) &&
|
146
147
|
args[:follow_option] && (option_card = Card.fetch(args[:follow_option]))
|
147
148
|
option_card.description set_card
|
@@ -150,15 +151,15 @@ format do
|
|
150
151
|
end
|
151
152
|
end
|
152
153
|
|
153
|
-
view :follower, :
|
154
|
+
view :follower, perms: :none, closed: true do |args|
|
154
155
|
args[:follower] || 'follower'
|
155
156
|
end
|
156
157
|
|
157
|
-
view :unfollow_url, :
|
158
|
+
view :unfollow_url, perms: :none, closed: true do |args|
|
158
159
|
if args[:followed_set] && (set_card = Card.fetch(args[:followed_set])) && args[:follow_option] && args[:follower]
|
159
160
|
rule_name = set_card.follow_rule_name args[:follower]
|
160
161
|
target_name = "#{args[:follower]}+#{Card[:follow].name}"
|
161
|
-
update_path = page_path target_name, :
|
162
|
+
update_path = page_path target_name, action: :update, card: {subcards: {rule_name=>Card[:never].name}}
|
162
163
|
card_url update_path # absolutize path
|
163
164
|
end
|
164
165
|
end
|
@@ -173,11 +174,12 @@ format do
|
|
173
174
|
end
|
174
175
|
item_title += "#{field}: "
|
175
176
|
|
176
|
-
item_value =
|
177
|
-
action.
|
178
|
-
|
179
|
-
|
180
|
-
|
177
|
+
item_value =
|
178
|
+
if action.action_type == :delete
|
179
|
+
action.old_values[field]
|
180
|
+
else
|
181
|
+
action.new_values[field]
|
182
|
+
end
|
181
183
|
|
182
184
|
wrap_list_item "#{item_title}#{item_value}"
|
183
185
|
end
|
@@ -210,14 +212,14 @@ end
|
|
210
212
|
|
211
213
|
|
212
214
|
format :email_text do
|
213
|
-
view :last_action, :
|
215
|
+
view :last_action, perms: :none do |args|
|
214
216
|
act = get_act(args)
|
215
217
|
"#{act.main_action.action_type}d"
|
216
218
|
end
|
217
219
|
end
|
218
220
|
|
219
221
|
format :email_html do
|
220
|
-
view :last_action, :
|
222
|
+
view :last_action, perms: :none do |args|
|
221
223
|
act = get_act(args)
|
222
224
|
"#{act.main_action.action_type}d"
|
223
225
|
end
|
@@ -1,16 +1,16 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
class Card; module Set; module All; module Observer; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/observer.rb ~~~~~~~~~~~
|
3
|
-
def send_action_mails args
|
4
|
-
setting = "on_#{args[:on]}".to_sym
|
3
|
+
def send_action_mails args
|
4
|
+
setting = "on_#{args[:on]}".to_sym
|
5
5
|
email_templates_for( setting ) do |mailcard|
|
6
6
|
mailcard.deliver( context: self )
|
7
7
|
end
|
8
8
|
end
|
9
9
|
|
10
10
|
def email_templates_for setting
|
11
|
-
|
12
|
-
if email_templates = @email_template_cache ||
|
13
|
-
(
|
11
|
+
|
12
|
+
if (email_templates = @email_template_cache ||
|
13
|
+
((event_card = self.rule_card(setting)) && event_card.extended_item_cards))
|
14
14
|
email_templates.each do |mailcard|
|
15
15
|
yield(mailcard)
|
16
16
|
end
|
@@ -18,12 +18,12 @@ def email_templates_for setting
|
|
18
18
|
end
|
19
19
|
|
20
20
|
[:create, :update, :delete].each do |action|
|
21
|
-
event "observer_#{action}".to_sym, :
|
22
|
-
self.send_action_mails :
|
21
|
+
event "observer_#{action}".to_sym, after: :extend, on: action do
|
22
|
+
self.send_action_mails on: action
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
26
|
-
event :cache_delete_email_templates, :
|
26
|
+
event :cache_delete_email_templates, after: :approve, on: :delete do
|
27
27
|
event_card = self.rule_card(:on_delete)
|
28
28
|
@email_template_cache = event_card && event_card.extended_item_cards
|
29
29
|
end
|
@@ -2,20 +2,20 @@
|
|
2
2
|
class Card; module Set; module Right; module Bcc; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/right/bcc.rb ~~~~~~~~~~~
|
3
3
|
|
4
4
|
def process_email_addresses context_card, format_args, args
|
5
|
-
format(format_args).render_email_addresses(args.merge(:
|
5
|
+
format(format_args).render_email_addresses(args.merge(context: context_card))
|
6
6
|
end
|
7
7
|
|
8
8
|
|
9
9
|
format do
|
10
|
-
def chunk_list #turn off autodetection of uri's
|
10
|
+
def chunk_list #turn off autodetection of uri's
|
11
11
|
:references
|
12
12
|
end
|
13
13
|
end
|
14
14
|
|
15
15
|
|
16
16
|
format :html do
|
17
|
-
view :pointer_items do |args|
|
18
|
-
card.item_names(:
|
17
|
+
view :pointer_items do |args|
|
18
|
+
card.item_names(context: :raw).map do |iname|
|
19
19
|
wrap_item iname, args
|
20
20
|
end.join ', '
|
21
21
|
end
|
@@ -24,19 +24,19 @@ end
|
|
24
24
|
format :email_text do
|
25
25
|
view :email_addresses do |args|
|
26
26
|
context = args[:context] || self
|
27
|
-
card.item_names(:context
|
27
|
+
card.item_names(context: context.cardname).map do |item_name|
|
28
28
|
# note that context is processed twice here because pointers absolutize item_names by default
|
29
29
|
# while other types can return relative names. That's poor default behavior and should be fixed!
|
30
30
|
item_name = item_name.to_name.to_absolute(context).to_s
|
31
|
-
if item_name.match
|
31
|
+
if item_name.match(/.+\@.+\..+/)
|
32
32
|
item_name
|
33
33
|
elsif item_card = Card.fetch( item_name )
|
34
34
|
if item_card.account
|
35
35
|
item_card.account.email
|
36
36
|
else
|
37
|
-
item_card.contextual_content(context
|
37
|
+
item_card.contextual_content(context,format: :email_text).split( /[,\n]/ )
|
38
38
|
end
|
39
|
-
end
|
39
|
+
end
|
40
40
|
end.flatten.compact.join(', ')
|
41
41
|
end
|
42
42
|
end
|
@@ -7,7 +7,11 @@ def option_cards
|
|
7
7
|
end
|
8
8
|
|
9
9
|
def options_rule_card
|
10
|
-
Card.new
|
10
|
+
Card.new(
|
11
|
+
name: 'follow_options_card',
|
12
|
+
type_code: :pointer,
|
13
|
+
content: option_cards.map {|oc| "[[#{oc.title}]]" }.join("\n")
|
14
|
+
)
|
11
15
|
end
|
12
16
|
|
13
17
|
|
@@ -16,13 +20,13 @@ format :html do
|
|
16
20
|
args[:condition] ||= Env.params[:condition] || '*always'
|
17
21
|
end
|
18
22
|
|
19
|
-
view :follow_item, :
|
23
|
+
view :follow_item, tags: :unknown_ok do |args|
|
20
24
|
if card.new_card? || !card.include_item?(args[:condition])
|
21
25
|
button_view = :add_follow_rule_button
|
22
|
-
form_opts = {:
|
26
|
+
form_opts = {add_item: args[:condition]}
|
23
27
|
else
|
24
28
|
button_view = :delete_follow_rule_button
|
25
|
-
form_opts = {:
|
29
|
+
form_opts = {drop_item: args[:condition]}
|
26
30
|
end
|
27
31
|
|
28
32
|
text = if (option_card = Card.fetch args[:condition])
|
@@ -36,11 +40,14 @@ format :html do
|
|
36
40
|
"#{card.rule_set_name}+by name"
|
37
41
|
end
|
38
42
|
wrap do
|
39
|
-
card_form(
|
40
|
-
|
43
|
+
card_form(
|
44
|
+
{ action: :update, name: card.name, success: { view: :follow_item } },
|
45
|
+
hidden: { condition: args[:condition] }.merge(form_opts)
|
46
|
+
) do
|
47
|
+
|
41
48
|
output [
|
42
49
|
_optional_render(button_view, args),
|
43
|
-
card_link( link_target, :text
|
50
|
+
card_link( link_target, text: text)
|
44
51
|
]
|
45
52
|
end
|
46
53
|
end
|
@@ -51,36 +58,56 @@ format :html do
|
|
51
58
|
end
|
52
59
|
|
53
60
|
view :follow_status do |args|
|
54
|
-
# #{ link_to '×', '', 'aria-hidden'=>true, :class=>'close update-follow-link', 'data-dismiss'=>'modal', 'data-card_key'=>args[:card_key] }
|
55
61
|
%{
|
56
|
-
|
57
62
|
<h4>Get notified about changes</h4>
|
58
63
|
|
59
64
|
#{
|
60
|
-
wrap_with( :ul, :
|
65
|
+
wrap_with( :ul, class: 'delete-list list-group') do
|
61
66
|
card.item_names.map do |option|
|
62
|
-
content_tag :li, :
|
63
|
-
|
67
|
+
content_tag :li, class: 'list-group-item' do
|
68
|
+
condition = option == '*never' ? '*always' : option
|
69
|
+
subformat(card).render_follow_item condition: condition
|
64
70
|
end
|
65
71
|
end.join "\n"
|
66
72
|
end
|
67
73
|
}
|
68
74
|
|
69
|
-
#{
|
75
|
+
#{
|
76
|
+
card_link(args[:card_key], {
|
77
|
+
text: 'more options',
|
78
|
+
path_opts: {
|
79
|
+
view: :related,
|
80
|
+
related: {
|
81
|
+
name: card.name,
|
82
|
+
view: :related_edit_rule
|
83
|
+
}
|
84
|
+
},
|
85
|
+
class: 'btn update-follow-link',
|
86
|
+
'data-card_key'=>args[:card_key]
|
87
|
+
})
|
88
|
+
}
|
70
89
|
}
|
71
90
|
end
|
72
91
|
|
73
92
|
|
74
93
|
view :delete_follow_rule_button do |args|
|
75
|
-
button_tag
|
76
|
-
|
94
|
+
button_tag(
|
95
|
+
type: :submit,
|
96
|
+
class: 'btn-xs btn-item-delete btn-primary', 'aria-label'=>'Left Align'
|
97
|
+
) do
|
98
|
+
|
99
|
+
tag :span, class: "glyphicon glyphicon-ok", 'aria-hidden'=>"true"
|
77
100
|
end
|
78
101
|
|
79
102
|
end
|
80
103
|
|
81
104
|
view :add_follow_rule_button do |args|
|
82
|
-
button_tag
|
83
|
-
|
105
|
+
button_tag(
|
106
|
+
type: :submit,
|
107
|
+
class: 'btn-xs btn-item-add', 'aria-label'=>'Left Align'
|
108
|
+
) do
|
109
|
+
|
110
|
+
tag :span, class: "glyphicon glyphicon-plus", 'aria-hidden'=>"true"
|
84
111
|
end
|
85
112
|
end
|
86
113
|
|