card 1.16.1 → 1.16.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +60 -0
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/.yardoc/proxy_types +0 -0
- data/.yardopts +6 -0
- data/README_Developers.rdoc +100 -0
- data/VERSION +1 -1
- data/card.gemspec +18 -18
- data/db/migrate/20150724210803_add_comment_to_actions.rb +5 -0
- data/db/migrate_core_cards/20150724123438_update_file_and_image_cards.rb +70 -0
- data/db/migrate_core_cards/20150807205221_create_references_for_search_cards.rb +10 -0
- data/db/migrate_core_cards/data/1.12_stylesheets/common.scss +4 -2
- data/db/schema.rb +2 -1
- data/db/seed/new/card_actions.yml +2334 -12538
- data/db/seed/new/card_acts.yml +1 -1
- data/db/seed/new/card_changes.yml +7384 -38929
- data/db/seed/new/card_references.yml +207 -207
- data/db/seed/new/cards.yml +1364 -1440
- data/db/seed/test/fixtures/card_actions.yml +3285 -13219
- data/db/seed/test/fixtures/card_acts.yml +107 -107
- data/db/seed/test/fixtures/card_changes.yml +10830 -42375
- data/db/seed/test/fixtures/card_references.yml +393 -393
- data/db/seed/test/fixtures/cards.yml +1701 -1777
- data/db/version.txt +1 -1
- data/db/version_core_cards.txt +1 -1
- data/lib/card.rb +13 -3
- data/lib/card/chunk.rb +22 -15
- data/lib/card/content.rb +9 -8
- data/lib/card/diff.rb +79 -79
- data/lib/card/loader.rb +33 -33
- data/lib/card/name.rb +8 -0
- data/lib/card/set.rb +44 -17
- data/lib/card/set_pattern.rb +8 -0
- data/lib/cardio.rb +19 -3
- data/mod/01_core/chunk/link.rb +7 -6
- data/mod/01_core/chunk/query_reference.rb +65 -0
- data/mod/01_core/set/all/content.rb +1 -1
- data/mod/01_core/set/all/fetch.rb +15 -7
- data/mod/01_core/set/all/initialize.rb +4 -3
- data/mod/01_core/set/all/phases.rb +12 -8
- data/mod/01_core/set/all/references.rb +12 -6
- data/mod/01_core/set/all/rules.rb +14 -11
- data/mod/01_core/set/all/states.rb +2 -1
- data/mod/01_core/set/all/tracked_attributes.rb +14 -0
- data/mod/01_core/spec/set/all/collection_spec.rb +5 -5
- data/mod/01_core/spec/set/all/name_spec.rb +6 -6
- data/mod/01_history/lib/card/act.rb +2 -2
- data/mod/01_history/lib/card/action.rb +11 -2
- data/mod/01_history/set/all/actions.rb +4 -3
- data/mod/01_history/set/all/content_history.rb +1 -1
- data/mod/01_history/set/all/history.rb +55 -66
- data/mod/02_basic_types/set/all/file.rb +26 -3
- data/mod/02_basic_types/set/type/pointer.rb +13 -14
- data/mod/02_basic_types/spec/set/all/file_spec.rb +0 -1
- data/mod/03_machines/lib/card/machine.rb +4 -4
- data/mod/03_machines/lib/javascript/wagn_mod.js.coffee +4 -17
- data/mod/03_machines/lib/stylesheets/style_cards.scss +5 -0
- data/mod/03_machines/set/right/machine_input.rb +3 -0
- data/mod/03_machines/set/right/machine_output.rb +4 -0
- data/mod/04_settings/lib/card/setting.rb +2 -1
- data/mod/04_settings/set/abstract/permission.rb +95 -0
- data/mod/04_settings/set/right/comment.rb +2 -90
- data/mod/04_settings/set/right/create.rb +2 -2
- data/mod/04_settings/set/right/delete.rb +2 -3
- data/mod/04_settings/set/right/read.rb +3 -2
- data/mod/04_settings/set/right/update.rb +3 -2
- data/mod/04_settings/set/self/recent_settings.rb +3 -0
- data/mod/04_settings/set/type/setting.rb +9 -1
- data/mod/05_email/set/all/notify.rb +2 -1
- data/mod/05_email/set/type/email_template.rb +17 -17
- data/mod/05_standard/file/credit_image/image-icon.png +0 -0
- data/mod/05_standard/file/credit_image/image-large.png +0 -0
- data/mod/05_standard/file/credit_image/image-medium.png +0 -0
- data/mod/05_standard/file/credit_image/image-original.png +0 -0
- data/mod/05_standard/file/credit_image/image-small.png +0 -0
- data/mod/05_standard/file/favicon/{icon-image.png → image-icon.png} +0 -0
- data/mod/05_standard/file/favicon/{large-image.png → image-large.png} +0 -0
- data/mod/05_standard/file/favicon/{medium-image.png → image-medium.png} +0 -0
- data/mod/05_standard/file/favicon/{original-image.png → image-original.png} +0 -0
- data/mod/05_standard/file/favicon/{small-image.png → image-small.png} +0 -0
- data/mod/05_standard/file/logo/{icon-image.png → image-icon.png} +0 -0
- data/mod/05_standard/file/logo/{large-image.png → image-large.png} +0 -0
- data/mod/05_standard/file/logo/{medium-image.png → image-medium.png} +0 -0
- data/mod/05_standard/file/logo/{original-image.png → image-original.png} +0 -0
- data/mod/05_standard/file/logo/{small-image.png → image-small.png} +0 -0
- data/mod/05_standard/lib/carrier_wave/cardmount.rb +79 -0
- data/mod/05_standard/lib/file_uploader.rb +127 -0
- data/mod/05_standard/lib/image_uploader.rb +35 -0
- data/mod/05_standard/set/abstract/attachment.rb +85 -0
- data/mod/05_standard/set/all/error.rb +1 -18
- data/mod/05_standard/set/all/event_viz.rb +17 -14
- data/mod/05_standard/set/all/rich_html/editing.rb +10 -10
- data/mod/05_standard/set/all/rich_html/toolbar.rb +44 -37
- data/mod/05_standard/set/right/account.rb +1 -1
- data/mod/05_standard/set/right/password.rb +9 -10
- data/mod/05_standard/set/self/recent.rb +1 -1
- data/mod/05_standard/set/type/file.rb +43 -31
- data/mod/05_standard/set/type/image.rb +22 -6
- data/mod/05_standard/set/type/search_type.rb +4 -2
- data/mod/05_standard/set/type/session.rb +7 -5
- data/mod/05_standard/set/type/set.rb +3 -1
- data/mod/05_standard/spec/set/all/history_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/cardtype_spec.rb +3 -3
- data/mod/05_standard/spec/set/type/file_spec.rb +85 -1
- data/mod/05_standard/spec/set/type/image_spec.rb +89 -5
- data/mod/05_standard/spec/set/type/search_type_spec.rb +16 -1
- data/mod/06_bootstrap/file/{cerulean_skin/icon-image.png → cerulean_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{cerulean_skin/large-image.png → cerulean_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{cerulean_skin/medium-image.png → cerulean_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{cerulean_skin/original-image.png → cerulean_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{cerulean_skin/small-image.png → cerulean_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{cosmo_skin/icon-image.png → cosmo_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{cosmo_skin/large-image.png → cosmo_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{cosmo_skin/medium-image.png → cosmo_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{cosmo_skin/original-image.png → cosmo_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{cosmo_skin/small-image.png → cosmo_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{cyborg_skin/icon-image.png → cyborg_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{cyborg_skin/large-image.png → cyborg_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{cyborg_skin/medium-image.png → cyborg_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{cyborg_skin/original-image.png → cyborg_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{cyborg_skin/small-image.png → cyborg_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{darkly_skin/icon-image.png → darkly_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{darkly_skin/large-image.png → darkly_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{darkly_skin/medium-image.png → darkly_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{darkly_skin/original-image.png → darkly_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{darkly_skin/small-image.png → darkly_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{flatly_skin/icon-image.png → flatly_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{flatly_skin/large-image.png → flatly_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{flatly_skin/medium-image.png → flatly_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{flatly_skin/original-image.png → flatly_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{flatly_skin/small-image.png → flatly_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{journal_skin/icon-image.png → journal_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{journal_skin/large-image.png → journal_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{journal_skin/medium-image.png → journal_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{journal_skin/original-image.png → journal_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{journal_skin/small-image.png → journal_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{lumen_skin/icon-image.png → lumen_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{lumen_skin/large-image.png → lumen_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{lumen_skin/medium-image.png → lumen_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{lumen_skin/original-image.png → lumen_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{lumen_skin/small-image.png → lumen_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{paper_skin/icon-image.png → paper_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{paper_skin/large-image.png → paper_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{paper_skin/medium-image.png → paper_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{paper_skin/original-image.png → paper_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{paper_skin/small-image.png → paper_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{readable_skin/icon-image.png → readable_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{readable_skin/large-image.png → readable_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{readable_skin/medium-image.png → readable_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{readable_skin/original-image.png → readable_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{readable_skin/small-image.png → readable_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{sandstone_skin/icon-image.png → sandstone_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{sandstone_skin/large-image.png → sandstone_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{sandstone_skin/medium-image.png → sandstone_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{sandstone_skin/original-image.png → sandstone_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{sandstone_skin/small-image.png → sandstone_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{simplex_skin/icon-image.png → simplex_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{simplex_skin/large-image.png → simplex_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{simplex_skin/medium-image.png → simplex_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{simplex_skin/original-image.png → simplex_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{simplex_skin/small-image.png → simplex_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{slate_skin/icon-image.png → slate_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{slate_skin/large-image.png → slate_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{slate_skin/medium-image.png → slate_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{slate_skin/original-image.png → slate_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{slate_skin/small-image.png → slate_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{spacelab_skin/icon-image.png → spacelab_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{spacelab_skin/large-image.png → spacelab_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{spacelab_skin/medium-image.png → spacelab_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{spacelab_skin/original-image.png → spacelab_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{spacelab_skin/small-image.png → spacelab_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{superhero_skin/icon-image.png → superhero_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{superhero_skin/large-image.png → superhero_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{superhero_skin/medium-image.png → superhero_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{superhero_skin/original-image.png → superhero_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{superhero_skin/small-image.png → superhero_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{united_skin/icon-image.png → united_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{united_skin/large-image.png → united_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{united_skin/medium-image.png → united_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{united_skin/original-image.png → united_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{united_skin/small-image.png → united_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/file/{yeti_skin/icon-image.png → yeti_skin_image/image-icon.png} +0 -0
- data/mod/06_bootstrap/file/{yeti_skin/large-image.png → yeti_skin_image/image-large.png} +0 -0
- data/mod/06_bootstrap/file/{yeti_skin/medium-image.png → yeti_skin_image/image-medium.png} +0 -0
- data/mod/06_bootstrap/file/{yeti_skin/original-image.png → yeti_skin_image/image-original.png} +0 -0
- data/mod/06_bootstrap/file/{yeti_skin/small-image.png → yeti_skin_image/image-small.png} +0 -0
- data/mod/06_bootstrap/lib/stylesheets/bootstrap_cards.scss +5 -3
- data/spec/lib/card/reference_spec.rb +8 -1
- data/tmpsets/README.md +2 -0
- data/tmpsets/set/mod001-01_core/all/active_card.rb +40 -0
- data/tmpsets/set/mod001-01_core/all/collection.rb +348 -0
- data/tmpsets/set/mod001-01_core/all/content.rb +68 -0
- data/tmpsets/set/mod001-01_core/all/erb.rb +17 -0
- data/tmpsets/set/mod001-01_core/all/fetch.rb +242 -0
- data/tmpsets/set/mod001-01_core/all/haml.rb +13 -0
- data/tmpsets/set/mod001-01_core/all/initialize.rb +56 -0
- data/tmpsets/set/mod001-01_core/all/name.rb +279 -0
- data/tmpsets/set/mod001-01_core/all/pattern.rb +62 -0
- data/tmpsets/set/mod001-01_core/all/permissions.rb +289 -0
- data/tmpsets/set/mod001-01_core/all/phases.rb +187 -0
- data/tmpsets/set/mod001-01_core/all/references.rb +130 -0
- data/tmpsets/set/mod001-01_core/all/rules.rb +324 -0
- data/tmpsets/set/mod001-01_core/all/states.rb +28 -0
- data/tmpsets/set/mod001-01_core/all/templating.rb +132 -0
- data/tmpsets/set/mod001-01_core/all/tracked_attributes.rb +136 -0
- data/tmpsets/set/mod001-01_core/all/trash.rb +56 -0
- data/tmpsets/set/mod001-01_core/all/type.rb +91 -0
- data/tmpsets/set/mod001-01_core/all/utils.rb +162 -0
- data/tmpsets/set/mod001-01_core/all/view_cache.rb +14 -0
- data/tmpsets/set/mod002-01_history/all/actions.rb +54 -0
- data/tmpsets/set/mod002-01_history/all/content_history.rb +140 -0
- data/tmpsets/set/mod002-01_history/all/history.rb +341 -0
- data/tmpsets/set/mod003-02_basic_types/all/all_css.rb +48 -0
- data/tmpsets/set/mod003-02_basic_types/all/all_csv.rb +58 -0
- data/tmpsets/set/mod003-02_basic_types/all/all_js.rb +13 -0
- data/tmpsets/set/mod003-02_basic_types/all/base.rb +128 -0
- data/tmpsets/set/mod003-02_basic_types/all/file.rb +42 -0
- data/tmpsets/set/mod003-02_basic_types/all/json.rb +72 -0
- data/tmpsets/set/mod003-02_basic_types/all/rss.rb +78 -0
- data/tmpsets/set/mod003-02_basic_types/all/text.rb +14 -0
- data/tmpsets/set/mod003-02_basic_types/type/html.rb +33 -0
- data/tmpsets/set/mod003-02_basic_types/type/plain_text.rb +16 -0
- data/tmpsets/set/mod003-02_basic_types/type/pointer.rb +358 -0
- data/tmpsets/set/mod004-03_machines/right/machine_input.rb +8 -0
- data/tmpsets/set/mod004-03_machines/right/machine_output.rb +30 -0
- data/tmpsets/set/mod004-03_machines/self/script_ace.rb +18 -0
- data/tmpsets/set/mod004-03_machines/self/script_card_menu.rb +17 -0
- data/tmpsets/set/mod004-03_machines/self/script_html5shiv_printshiv.rb +8 -0
- data/tmpsets/set/mod004-03_machines/self/script_jquery.rb +8 -0
- data/tmpsets/set/mod004-03_machines/self/script_jquery_helper.rb +18 -0
- data/tmpsets/set/mod004-03_machines/self/script_slot.rb +13 -0
- data/tmpsets/set/mod004-03_machines/self/script_tinymce.rb +8 -0
- data/tmpsets/set/mod004-03_machines/self/style_bootstrap_compatible.rb +11 -0
- data/tmpsets/set/mod004-03_machines/self/style_cards.rb +12 -0
- data/tmpsets/set/mod004-03_machines/self/style_jquery_ui_smoothness.rb +9 -0
- data/tmpsets/set/mod004-03_machines/type/coffee_script.rb +67 -0
- data/tmpsets/set/mod004-03_machines/type/css.rb +55 -0
- data/tmpsets/set/mod004-03_machines/type/java_script.rb +43 -0
- data/tmpsets/set/mod004-03_machines/type/scss.rb +28 -0
- data/tmpsets/set/mod004-03_machines/type/skin.rb +18 -0
- data/tmpsets/set/mod005-04_settings/abstract/permission.rb +101 -0
- data/tmpsets/set/mod005-04_settings/right/add_help.rb +17 -0
- data/tmpsets/set/mod005-04_settings/right/comment.rb +9 -0
- data/tmpsets/set/mod005-04_settings/right/create.rb +9 -0
- data/tmpsets/set/mod005-04_settings/right/default.rb +9 -0
- data/tmpsets/set/mod005-04_settings/right/delete.rb +9 -0
- data/tmpsets/set/mod005-04_settings/right/help.rb +9 -0
- data/tmpsets/set/mod005-04_settings/right/read.rb +9 -0
- data/tmpsets/set/mod005-04_settings/right/script.rb +16 -0
- data/tmpsets/set/mod005-04_settings/right/structure.rb +16 -0
- data/tmpsets/set/mod005-04_settings/right/style.rb +16 -0
- data/tmpsets/set/mod005-04_settings/right/update.rb +9 -0
- data/tmpsets/set/mod005-04_settings/self/accountable.rb +9 -0
- data/tmpsets/set/mod005-04_settings/self/add_help.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/autoname.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/captcha.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/create.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/default.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/delete.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/help.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/input.rb +7 -0
- data/tmpsets/set/mod005-04_settings/self/layout.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/on_create.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/on_delete.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/on_update.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/options.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/options_label.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/read.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/recent_settings.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/script.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/structure.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/style.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/table_of_contents.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/thanks.rb +8 -0
- data/tmpsets/set/mod005-04_settings/self/update.rb +8 -0
- data/tmpsets/set/mod005-04_settings/type/setting.rb +96 -0
- data/tmpsets/set/mod006-05_email/all/email_html.rb +11 -0
- data/tmpsets/set/mod006-05_email/all/email_text.rb +11 -0
- data/tmpsets/set/mod006-05_email/all/follow.rb +260 -0
- data/tmpsets/set/mod006-05_email/all/notify.rb +244 -0
- data/tmpsets/set/mod006-05_email/all/observer.rb +33 -0
- data/tmpsets/set/mod006-05_email/right/bcc.rb +51 -0
- data/tmpsets/set/mod006-05_email/right/cc.rb +9 -0
- data/tmpsets/set/mod006-05_email/right/follow.rb +90 -0
- data/tmpsets/set/mod006-05_email/right/follow_fields.rb +8 -0
- data/tmpsets/set/mod006-05_email/right/followers.rb +35 -0
- data/tmpsets/set/mod006-05_email/right/following.rb +58 -0
- data/tmpsets/set/mod006-05_email/right/from.rb +9 -0
- data/tmpsets/set/mod006-05_email/right/html_message.rb +9 -0
- data/tmpsets/set/mod006-05_email/right/to.rb +9 -0
- data/tmpsets/set/mod006-05_email/self/always.rb +20 -0
- data/tmpsets/set/mod006-05_email/self/created.rb +27 -0
- data/tmpsets/set/mod006-05_email/self/edited.rb +30 -0
- data/tmpsets/set/mod006-05_email/self/follow.rb +8 -0
- data/tmpsets/set/mod006-05_email/self/follow_defaults.rb +71 -0
- data/tmpsets/set/mod006-05_email/self/never.rb +21 -0
- data/tmpsets/set/mod006-05_email/type/email_template.rb +119 -0
- data/tmpsets/set/mod006-05_email/type_plus_right/user/follow.rb +182 -0
- data/tmpsets/set/mod007-05_standard/abstract/attachment.rb +91 -0
- data/tmpsets/set/mod007-05_standard/all/account.rb +73 -0
- data/tmpsets/set/mod007-05_standard/all/comment.rb +45 -0
- data/tmpsets/set/mod007-05_standard/all/error.rb +198 -0
- data/tmpsets/set/mod007-05_standard/all/event_viz.rb +75 -0
- data/tmpsets/set/mod007-05_standard/all/links.rb +153 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/content.rb +248 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/editing.rb +216 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/form.rb +238 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/header.rb +80 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/menu.rb +135 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/modal.rb +98 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/toolbar.rb +271 -0
- data/tmpsets/set/mod007-05_standard/all/rich_html/wrapper.rb +158 -0
- data/tmpsets/set/mod007-05_standard/right/account.rb +187 -0
- data/tmpsets/set/mod007-05_standard/right/discussion.rb +9 -0
- data/tmpsets/set/mod007-05_standard/right/email.rb +57 -0
- data/tmpsets/set/mod007-05_standard/right/password.rb +44 -0
- data/tmpsets/set/mod007-05_standard/right/salt.rb +11 -0
- data/tmpsets/set/mod007-05_standard/right/stats.rb +41 -0
- data/tmpsets/set/mod007-05_standard/right/status.rb +15 -0
- data/tmpsets/set/mod007-05_standard/right/token.rb +11 -0
- data/tmpsets/set/mod007-05_standard/right/when_created.rb +11 -0
- data/tmpsets/set/mod007-05_standard/right/when_last_edited.rb +11 -0
- data/tmpsets/set/mod007-05_standard/rstar/rules.rb +411 -0
- data/tmpsets/set/mod007-05_standard/self/account_links.rb +55 -0
- data/tmpsets/set/mod007-05_standard/self/alerts.rb +11 -0
- data/tmpsets/set/mod007-05_standard/self/all.rb +28 -0
- data/tmpsets/set/mod007-05_standard/self/foot.rb +14 -0
- data/tmpsets/set/mod007-05_standard/self/head.rb +126 -0
- data/tmpsets/set/mod007-05_standard/self/navbox.rb +39 -0
- data/tmpsets/set/mod007-05_standard/self/now.rb +12 -0
- data/tmpsets/set/mod007-05_standard/self/performance_log.rb +98 -0
- data/tmpsets/set/mod007-05_standard/self/recent.rb +54 -0
- data/tmpsets/set/mod007-05_standard/self/search.rb +49 -0
- data/tmpsets/set/mod007-05_standard/self/signin.rb +130 -0
- data/tmpsets/set/mod007-05_standard/self/stats.rb +109 -0
- data/tmpsets/set/mod007-05_standard/self/version.rb +15 -0
- data/tmpsets/set/mod007-05_standard/type/basic.rb +52 -0
- data/tmpsets/set/mod007-05_standard/type/cardtype.rb +78 -0
- data/tmpsets/set/mod007-05_standard/type/date.rb +14 -0
- data/tmpsets/set/mod007-05_standard/type/file.rb +103 -0
- data/tmpsets/set/mod007-05_standard/type/image.rb +89 -0
- data/tmpsets/set/mod007-05_standard/type/layout_type.rb +21 -0
- data/tmpsets/set/mod007-05_standard/type/number.rb +25 -0
- data/tmpsets/set/mod007-05_standard/type/phrase.rb +9 -0
- data/tmpsets/set/mod007-05_standard/type/search_type.rb +291 -0
- data/tmpsets/set/mod007-05_standard/type/session.rb +42 -0
- data/tmpsets/set/mod007-05_standard/type/set.rb +354 -0
- data/tmpsets/set/mod007-05_standard/type/signup.rb +150 -0
- data/tmpsets/set/mod007-05_standard/type/toggle.rb +18 -0
- data/tmpsets/set/mod007-05_standard/type/uri.rb +17 -0
- data/tmpsets/set/mod007-05_standard/type/user.rb +78 -0
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/form.rb +41 -0
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/helper.rb +150 -0
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/wrapper.rb +18 -0
- data/tmpsets/set/mod008-06_bootstrap/all/rich_bootstrap.rb +14 -0
- data/tmpsets/set/mod008-06_bootstrap/self/bootstrap_cards.rb +15 -0
- data/tmpsets/set/mod008-06_bootstrap/self/bootstrap_js.rb +13 -0
- data/tmpsets/set/mod008-06_bootstrap/self/bootswatch_shared.rb +38 -0
- data/tmpsets/set/mod008-06_bootstrap/self/smartmenu_css.rb +13 -0
- data/tmpsets/set/mod008-06_bootstrap/self/smartmenu_js.rb +12 -0
- data/tmpsets/set_pattern/100-all.rb +24 -0
- data/tmpsets/set_pattern/101-all_plus.rb +26 -0
- data/tmpsets/set_pattern/102-type.rb +36 -0
- data/tmpsets/set_pattern/103-star.rb +28 -0
- data/tmpsets/set_pattern/104-rstar.rb +30 -0
- data/tmpsets/set_pattern/105-right.rb +33 -0
- data/tmpsets/set_pattern/106-type_plus_right.rb +36 -0
- data/tmpsets/set_pattern/107-self.rb +32 -0
- metadata +306 -107
- data/mod/05_standard/set/all/attach.rb +0 -164
- data/mod/05_standard/spec/set/all/attach_spec.rb +0 -9
@@ -0,0 +1,11 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; module All; module EmailHtml; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/email_html.rb ~~~~~~~~~~~
|
3
|
+
format :email_html do
|
4
|
+
view :missing do |args| '' end
|
5
|
+
view :closed_missing do |args| '' end
|
6
|
+
end
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
# ~~~~~~~~~~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/email_html.rb ~~~~~~~~~~~
|
11
|
+
end;end;end;end;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; module All; module EmailText; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/email_text.rb ~~~~~~~~~~~
|
3
|
+
|
4
|
+
format :email_text do
|
5
|
+
view :missing do |args| '' end
|
6
|
+
view :closed_missing do |args| '' end
|
7
|
+
end
|
8
|
+
|
9
|
+
|
10
|
+
# ~~~~~~~~~~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/email_text.rb ~~~~~~~~~~~
|
11
|
+
end;end;end;end;
|
@@ -0,0 +1,260 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; module All; module Follow; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/follow.rb ~~~~~~~~~~~
|
3
|
+
card_accessor :followers
|
4
|
+
|
5
|
+
FOLLOWER_IDS_CACHE_KEY = 'FOLLOWER_IDS'
|
6
|
+
|
7
|
+
event :cache_expired_because_of_new_set, :before=>:store, :on=>:create, :when=>proc { |c| c.type_id == Card::SetID } do
|
8
|
+
Card.follow_caches_expired
|
9
|
+
end
|
10
|
+
|
11
|
+
event :cache_expired_because_of_type_change, :before=>:store, :changed=>:type_id do #FIXME expire (also?) after save
|
12
|
+
Card.follow_caches_expired
|
13
|
+
end
|
14
|
+
|
15
|
+
event :cache_expired_because_of_name_change, :before=>:store, :changed=>:name do
|
16
|
+
Card.follow_caches_expired
|
17
|
+
end
|
18
|
+
|
19
|
+
event :cache_expired_because_of_new_user_rule, :before=>:extend, :when=>proc { |c| c.follow_rule_card? } do
|
20
|
+
Card.follow_caches_expired
|
21
|
+
end
|
22
|
+
|
23
|
+
format do
|
24
|
+
|
25
|
+
def follow_link_hash args
|
26
|
+
toggle = args[:toggle] || ( card.followed? ? :off : :on )
|
27
|
+
hash = { :class => "follow-toggle-#{toggle}" }
|
28
|
+
case toggle
|
29
|
+
when :off
|
30
|
+
hash[:content] = '*never'
|
31
|
+
hash[:title] = "stop sending emails about changes to #{card.follow_label}"
|
32
|
+
hash[:verb] = 'unfollow'
|
33
|
+
when :on
|
34
|
+
hash[:content] = '*always'
|
35
|
+
hash[:title] = "send emails about changes to #{card.follow_label}"
|
36
|
+
hash[:verb] = 'follow'
|
37
|
+
end
|
38
|
+
follow_rule_name = card.default_follow_set_card.follow_rule_name( Auth.current.name )
|
39
|
+
hash[:path] = path :name=>follow_rule_name, :action=>:update,
|
40
|
+
:success=>{ :layout=>:modal, :view=>:follow_status },
|
41
|
+
:card=>{ :content=>"[[#{hash[:content]}]]" }
|
42
|
+
hash
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
format :json do
|
48
|
+
view :follow_status do |args|
|
49
|
+
follow_link_hash args
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
format :html do
|
54
|
+
|
55
|
+
view :follow_link, :tags=>:unknown_ok, :perms=>:none do |args|
|
56
|
+
hash = follow_link_hash args
|
57
|
+
text = args[:icon] ? glyphicon('flag') : ''
|
58
|
+
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 ), :new=>{})
|
60
|
+
opts = ( args[:html_args] || {} ).clone
|
61
|
+
opts.merge!(
|
62
|
+
:title => hash[:title],
|
63
|
+
'data-path' => hash[:path],
|
64
|
+
'data-toggle' => 'modal',
|
65
|
+
'data-target' => "#modal-#{card.cardname.safe_key}",
|
66
|
+
)
|
67
|
+
opts[:class] = "follow-link #{opts[:class]}"
|
68
|
+
link_to text, hash[:path], opts
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
|
74
|
+
def follow_label
|
75
|
+
name
|
76
|
+
end
|
77
|
+
|
78
|
+
def followers
|
79
|
+
follower_ids.map do |id|
|
80
|
+
Card.fetch(id)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def follower_names
|
85
|
+
followers.map(&:name)
|
86
|
+
end
|
87
|
+
|
88
|
+
|
89
|
+
def follow_rule_card?
|
90
|
+
is_user_rule? && rule_setting_name == '*follow'
|
91
|
+
end
|
92
|
+
|
93
|
+
def follow_option?
|
94
|
+
codename && FollowOption.codenames.include?(codename.to_sym)
|
95
|
+
end
|
96
|
+
|
97
|
+
# used for the follow menu
|
98
|
+
# overwritten in type/set.rb and type/cardtype.rb
|
99
|
+
# for sets and cardtypes it doesn't check whether the users is following the card itself
|
100
|
+
# instead it checks whether he is following the complete set
|
101
|
+
def followed_by? user_id
|
102
|
+
with_follower_candidate_ids do
|
103
|
+
if follow_rule_applies? user_id
|
104
|
+
return true
|
105
|
+
end
|
106
|
+
if left_card = left and left_card.followed_field?(self) && left_card.followed_by?(user_id)
|
107
|
+
return true
|
108
|
+
end
|
109
|
+
return false
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
def followed?
|
114
|
+
followed_by? Auth.current_id
|
115
|
+
end
|
116
|
+
|
117
|
+
|
118
|
+
def follow_rule_applies? follower_id
|
119
|
+
follow_rule = rule :follow, :user_id=>follower_id
|
120
|
+
if follow_rule.present?
|
121
|
+
follow_rule.split("\n").each do |value|
|
122
|
+
|
123
|
+
value_code = value.to_name.code
|
124
|
+
accounted_ids = (
|
125
|
+
@follower_candidate_ids[ value_code ] ||=
|
126
|
+
if block = FollowOption.follower_candidate_ids[ value_code ]
|
127
|
+
block.call self
|
128
|
+
else
|
129
|
+
[]
|
130
|
+
end
|
131
|
+
)
|
132
|
+
|
133
|
+
applicable =
|
134
|
+
if test = FollowOption.test[ value_code ]
|
135
|
+
test.call follower_id, accounted_ids
|
136
|
+
else
|
137
|
+
accounted_ids.include? follower_id
|
138
|
+
end
|
139
|
+
|
140
|
+
return value.gsub( /[\[\]]/, '' ) if applicable
|
141
|
+
end
|
142
|
+
end
|
143
|
+
return false
|
144
|
+
end
|
145
|
+
|
146
|
+
|
147
|
+
def with_follower_candidate_ids
|
148
|
+
@follower_candidate_ids = {}
|
149
|
+
yield
|
150
|
+
@follower_candidate_ids = nil
|
151
|
+
end
|
152
|
+
|
153
|
+
|
154
|
+
# the set card to be followed if you want to follow changes of card
|
155
|
+
def default_follow_set_card
|
156
|
+
Card.fetch("#{name}+*self")
|
157
|
+
end
|
158
|
+
|
159
|
+
|
160
|
+
# returns true if according to the follow_field_rule followers of self also
|
161
|
+
# follow changes of field_card
|
162
|
+
def followed_field? field_card
|
163
|
+
(follow_field_rule = rule_card(:follow_fields)) || follow_field_rule.item_names.find do |item|
|
164
|
+
item.to_name.key == field_card.key || (item.to_name.key == Card[:includes].key && included_card_ids.include?(field_card.id) )
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
def follower_ids
|
169
|
+
@follower_ids = read_follower_ids_cache || begin
|
170
|
+
result = direct_follower_ids
|
171
|
+
left_card = left
|
172
|
+
while left_card
|
173
|
+
if left_card.followed_field? self
|
174
|
+
result += left_card.direct_follower_ids
|
175
|
+
end
|
176
|
+
left_card = left_card.left
|
177
|
+
end
|
178
|
+
write_follower_ids_cache result
|
179
|
+
result
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
|
184
|
+
def direct_followers
|
185
|
+
direct_follower_ids.map do |id|
|
186
|
+
Card.fetch(id)
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
# all ids of users that follow this card because of a follow rule that applies to this card
|
191
|
+
# doesn't include users that follow this card because they are following parent cards or other cards that include this card
|
192
|
+
def direct_follower_ids args={}
|
193
|
+
result = ::Set.new
|
194
|
+
with_follower_candidate_ids do
|
195
|
+
set_names.each do |set_name|
|
196
|
+
set_card = Card.fetch(set_name)
|
197
|
+
set_card.all_user_ids_with_rule_for(:follow).each do |user_id|
|
198
|
+
if (!result.include? user_id) and self.follow_rule_applies?(user_id)
|
199
|
+
result << user_id
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
203
|
+
end
|
204
|
+
result
|
205
|
+
end
|
206
|
+
|
207
|
+
def all_direct_follower_ids_with_reason
|
208
|
+
with_follower_candidate_ids do
|
209
|
+
visited = ::Set.new
|
210
|
+
set_names.each do |set_name|
|
211
|
+
set_card = Card.fetch(set_name)
|
212
|
+
set_card.all_user_ids_with_rule_for(:follow).each do |user_id|
|
213
|
+
if (!visited.include?(user_id)) && (follow_option = self.follow_rule_applies?(user_id))
|
214
|
+
visited << user_id
|
215
|
+
yield(user_id, :set_card=>set_card, :option=>follow_option)
|
216
|
+
end
|
217
|
+
end
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
|
222
|
+
|
223
|
+
|
224
|
+
#~~~~~ cache methods
|
225
|
+
|
226
|
+
def write_follower_ids_cache user_ids
|
227
|
+
hash = Card.follower_ids_cache
|
228
|
+
hash[id] = user_ids
|
229
|
+
Card.write_follower_ids_cache hash
|
230
|
+
end
|
231
|
+
|
232
|
+
def read_follower_ids_cache
|
233
|
+
Card.follower_ids_cache[id]
|
234
|
+
end
|
235
|
+
|
236
|
+
module ClassMethods
|
237
|
+
|
238
|
+
def follow_caches_expired
|
239
|
+
Card.clear_follower_ids_cache
|
240
|
+
Card.clear_user_rule_cache
|
241
|
+
end
|
242
|
+
|
243
|
+
def follower_ids_cache
|
244
|
+
Card.cache.read(FOLLOWER_IDS_CACHE_KEY) || {}
|
245
|
+
end
|
246
|
+
|
247
|
+
def write_follower_ids_cache hash
|
248
|
+
Card.cache.write FOLLOWER_IDS_CACHE_KEY, hash
|
249
|
+
end
|
250
|
+
|
251
|
+
def clear_follower_ids_cache
|
252
|
+
Card.cache.write FOLLOWER_IDS_CACHE_KEY, nil
|
253
|
+
end
|
254
|
+
|
255
|
+
end
|
256
|
+
|
257
|
+
|
258
|
+
|
259
|
+
# ~~~~~~~~~~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/follow.rb ~~~~~~~~~~~
|
260
|
+
end;end;end;end;
|
@@ -0,0 +1,244 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; module All; module Notify; extend Card::Set # ~~~~~~~~~~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/notify.rb ~~~~~~~~~~~
|
3
|
+
|
4
|
+
class FollowerStash
|
5
|
+
def initialize card=nil
|
6
|
+
@followed_affected_cards = Hash.new { |h,v| h[v]=[] }
|
7
|
+
@visited = ::Set.new
|
8
|
+
add_affected_card(card) if card
|
9
|
+
end
|
10
|
+
|
11
|
+
def add_affected_card card
|
12
|
+
Auth.as_bot do
|
13
|
+
if !@visited.include? card.key
|
14
|
+
@visited.add card.key
|
15
|
+
card.all_direct_follower_ids_with_reason do |user_id, reason|
|
16
|
+
notify Card.fetch(user_id), :of=>reason
|
17
|
+
end
|
18
|
+
if card.left and !@visited.include?(card.left.name) and follow_field_rule = card.left.rule_card(:follow_fields)
|
19
|
+
|
20
|
+
follow_field_rule.item_names(:context=>card.left.cardname).each do |item|
|
21
|
+
if @visited.include? item.to_name.key
|
22
|
+
add_affected_card card.left
|
23
|
+
break
|
24
|
+
elsif item.to_name.key == Card[:includes].key
|
25
|
+
includee_set = Card.search(:included_by=>card.left.name).map(&:key)
|
26
|
+
if !@visited.intersection(includee_set).empty?
|
27
|
+
add_affected_card card.left
|
28
|
+
break
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def followers
|
41
|
+
@followed_affected_cards.keys
|
42
|
+
end
|
43
|
+
|
44
|
+
def each_follower_with_reason # "follower" is a card object, "followed" a card name
|
45
|
+
@followed_affected_cards.each do |user, reasons|
|
46
|
+
yield(user,reasons.first)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
private
|
51
|
+
|
52
|
+
def notify follower, because
|
53
|
+
@followed_affected_cards[follower] << because[:of]
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
def act_card
|
59
|
+
@supercard || self
|
60
|
+
end
|
61
|
+
|
62
|
+
|
63
|
+
def followable?
|
64
|
+
true
|
65
|
+
end
|
66
|
+
|
67
|
+
def notable_change?
|
68
|
+
!supercard && current_act && Card::Auth.current_id != WagnBotID && followable?
|
69
|
+
end
|
70
|
+
|
71
|
+
event :notify_followers_after_save, :after=>:subsequent, :on=>:save, :when=>proc{ |ca| ca.notable_change? } do
|
72
|
+
notify_followers
|
73
|
+
end
|
74
|
+
|
75
|
+
# in the delete case we have to calculate the follower_stash beforehand
|
76
|
+
# but we can't pass the follower_stash through the ActiveJob queue.
|
77
|
+
# We have to deal with the notifications in the extend phase instead of the subsequent phase
|
78
|
+
event :stash_followers, :after=>:approve, :on=>:delete do
|
79
|
+
act_card.follower_stash ||= FollowerStash.new
|
80
|
+
act_card.follower_stash.add_affected_card self
|
81
|
+
end
|
82
|
+
event :notify_followers_after_delete, :after=>:extend, :on=>:delete,
|
83
|
+
:when=>proc{ |ca| ca.notable_change? } do
|
84
|
+
notify_followers
|
85
|
+
end
|
86
|
+
|
87
|
+
def notify_followers
|
88
|
+
begin
|
89
|
+
@current_act.reload
|
90
|
+
@follower_stash ||= FollowerStash.new
|
91
|
+
@current_act.actions.each do |a|
|
92
|
+
@follower_stash.add_affected_card a.card if a.card
|
93
|
+
end
|
94
|
+
@follower_stash.each_follower_with_reason do |follower, reason|
|
95
|
+
if follower.account and follower != @current_act.actor
|
96
|
+
follower.account.send_change_notice @current_act, reason[:set_card].name, reason[:option]
|
97
|
+
end
|
98
|
+
end
|
99
|
+
rescue =>e #this error handling should apply to all extend callback exceptions
|
100
|
+
Rails.logger.info "\nController exception: #{e.message}"
|
101
|
+
Card::Error.current = e
|
102
|
+
notable_exception_raised
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
format do
|
107
|
+
view :list_of_changes, :denial=>:blank do |args|
|
108
|
+
action = get_action(args)
|
109
|
+
|
110
|
+
relevant_fields = case action.action_type
|
111
|
+
when :create then [:cardtype, :content]
|
112
|
+
when :update then [:name, :cardtype, :content]
|
113
|
+
when :delete then [:content]
|
114
|
+
end
|
115
|
+
|
116
|
+
relevant_fields.map do |type|
|
117
|
+
edit_info_for(type, action)
|
118
|
+
end.compact.join
|
119
|
+
end
|
120
|
+
|
121
|
+
|
122
|
+
view :subedits, :perms=>:none do |args|
|
123
|
+
subedits = get_act(args).relevant_actions_for(card).map do |action|
|
124
|
+
if action.card_id != card.id
|
125
|
+
action.card.format(:format=>@format).render_subedit_notice(:action=>action)
|
126
|
+
end
|
127
|
+
end.compact.join
|
128
|
+
|
129
|
+
if subedits.present?
|
130
|
+
wrap_subedits subedits
|
131
|
+
else
|
132
|
+
''
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
view :subedit_notice, :denial=>:blank do |args|
|
137
|
+
action = get_action(args)
|
138
|
+
name_before_action = (action.new_values[:name] && action.old_values[:name]) || card.name
|
139
|
+
|
140
|
+
wrap_subedit_item %{#{name_before_action} #{action.action_type}d
|
141
|
+
#{ render_list_of_changes(args) }}
|
142
|
+
end
|
143
|
+
|
144
|
+
view :followed, :perms=>:none, :closed=>true do |args|
|
145
|
+
if args[:followed_set] && (set_card = Card.fetch(args[:followed_set])) &&
|
146
|
+
args[:follow_option] && (option_card = Card.fetch(args[:follow_option]))
|
147
|
+
option_card.description set_card
|
148
|
+
else
|
149
|
+
'followed card'
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
view :follower, :perms=>:none, :closed=>true do |args|
|
154
|
+
args[:follower] || 'follower'
|
155
|
+
end
|
156
|
+
|
157
|
+
view :unfollow_url, :perms=>:none, :closed=>true do |args|
|
158
|
+
if args[:followed_set] && (set_card = Card.fetch(args[:followed_set])) && args[:follow_option] && args[:follower]
|
159
|
+
rule_name = set_card.follow_rule_name args[:follower]
|
160
|
+
target_name = "#{args[:follower]}+#{Card[:follow].name}"
|
161
|
+
update_path = page_path target_name, :action=>:update, :card=>{:subcards=>{rule_name=>Card[:never].name}}
|
162
|
+
card_url update_path # absolutize path
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
def edit_info_for field, action
|
167
|
+
return nil unless action.new_values[field]
|
168
|
+
|
169
|
+
item_title = case action.action_type
|
170
|
+
when :update then 'new '
|
171
|
+
when :delete then 'deleted '
|
172
|
+
else ''
|
173
|
+
end
|
174
|
+
item_title += "#{field}: "
|
175
|
+
|
176
|
+
item_value = if action.action_type == :delete
|
177
|
+
action.old_values[field]
|
178
|
+
else
|
179
|
+
action.new_values[field]
|
180
|
+
end
|
181
|
+
|
182
|
+
wrap_list_item "#{item_title}#{item_value}"
|
183
|
+
end
|
184
|
+
|
185
|
+
def get_act args
|
186
|
+
@notification_act ||= args[:act] || (args[:act_id] and Act.find(args[:act_id])) || card.acts.last
|
187
|
+
end
|
188
|
+
|
189
|
+
def get_action args
|
190
|
+
args[:action] || (args[:action_id] and Action.fetch(args[:action_id])) || card.last_action
|
191
|
+
end
|
192
|
+
|
193
|
+
|
194
|
+
def wrap_subedits subedits
|
195
|
+
"\nThis update included the following changes:#{wrap_list subedits}"
|
196
|
+
end
|
197
|
+
|
198
|
+
def wrap_list list
|
199
|
+
"\n#{list}\n"
|
200
|
+
end
|
201
|
+
|
202
|
+
def wrap_list_item item
|
203
|
+
" #{item}\n"
|
204
|
+
end
|
205
|
+
|
206
|
+
def wrap_subedit_item text
|
207
|
+
"\n#{text}\n"
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
|
212
|
+
format :email_text do
|
213
|
+
view :last_action, :perms=>:none do |args|
|
214
|
+
act = get_act(args)
|
215
|
+
"#{act.main_action.action_type}d"
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
format :email_html do
|
220
|
+
view :last_action, :perms=>:none do |args|
|
221
|
+
act = get_act(args)
|
222
|
+
"#{act.main_action.action_type}d"
|
223
|
+
end
|
224
|
+
|
225
|
+
def wrap_list list
|
226
|
+
"<ul>#{list}</ul>\n"
|
227
|
+
end
|
228
|
+
|
229
|
+
def wrap_list_item item
|
230
|
+
"<li>#{item}</li>\n"
|
231
|
+
end
|
232
|
+
|
233
|
+
def wrap_subedit_item text
|
234
|
+
"<li>#{text}</li>\n"
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
# ~~~~~~~~~~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/05_email/set/all/notify.rb ~~~~~~~~~~~
|
244
|
+
end;end;end;end;
|