wagn 1.13.0 → 1.14.0.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Guardfile +3 -2
- data/VERSION +1 -1
- data/app/controllers/card_controller.rb +33 -38
- data/config/routes.rb +2 -2
- data/config/version.txt +1 -1
- data/db/bootstrap/card_actions.yml +3543 -0
- data/db/bootstrap/card_acts.yml +7 -0
- data/db/bootstrap/card_changes.yml +9150 -0
- data/db/bootstrap/card_references.yml +666 -344
- data/db/bootstrap/cards.yml +3256 -1702
- data/db/migrate/20140822073704_create_new_revision_tables.rb +43 -0
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +62 -0
- data/db/migrate_cards/20130411191151_renaming_for_menu.rb +42 -45
- data/db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb +13 -16
- data/db/migrate_cards/20130419215612_import_help_text.rb +7 -10
- data/db/migrate_cards/20130823192433_add_style_cards.rb +77 -81
- data/db/migrate_cards/20130910183318_move_styles_to_content.rb +4 -7
- data/db/migrate_cards/20130920214038_jsonize_tinymce.rb +9 -12
- data/db/migrate_cards/20130920291703_update_stylesheets.rb +10 -13
- data/db/migrate_cards/20130927191728_account_events.rb +15 -18
- data/db/migrate_cards/20131016172445_common_css_patch.rb +5 -8
- data/db/migrate_cards/20140110193325_reset_account_request_type.rb +4 -7
- data/db/migrate_cards/20140307231621_user_data_to_cards.rb +50 -53
- data/db/migrate_cards/20140317035504_account_requests_to_signups.rb +39 -42
- data/db/migrate_cards/20140512155840_add_script_cards.rb +56 -59
- data/db/migrate_cards/20140629222005_add_email_cards.rb +168 -0
- data/db/migrate_cards/20140725180118_config_card_updates.rb +4 -7
- data/db/migrate_cards/data/mailer/follower_notification_email.html +9 -0
- data/db/migrate_cards/data/mailer/follower_notification_email.txt +11 -0
- data/db/migrate_cards/data/mailer/mail_config.json +22 -0
- data/db/migrate_cards/data/mailer/password_reset_email.html +10 -0
- data/db/migrate_cards/data/mailer/password_reset_email.txt +11 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.html +7 -0
- data/db/migrate_cards/data/mailer/signup_alert_email.txt +5 -0
- data/db/migrate_cards/data/mailer/verification_email.html +9 -0
- data/db/migrate_cards/data/mailer/verification_email.txt +8 -0
- data/db/schema.rb +31 -1
- data/features/conflict.feature +39 -0
- data/features/flexmail.feature +54 -54
- data/features/notifications.feature +4 -2
- data/features/reset_password.feature +1 -1
- data/features/step_definitions/wagn_steps.rb +20 -2
- data/features/step_definitions/window_steps.rb +23 -0
- data/features/support/env.rb +1 -0
- data/features/update_includers.feature +16 -10
- data/features/watch.feature +2 -2
- data/lib/card.rb +11 -10
- data/lib/card/act.rb +63 -0
- data/lib/card/action.rb +194 -0
- data/lib/card/change.rb +29 -0
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +229 -276
- data/lib/card/env.rb +4 -3
- data/lib/card/format.rb +2 -5
- data/lib/card/generators/card_migration/USAGE +15 -3
- data/lib/card/generators/card_migration/card_migration_generator.rb +22 -2
- data/lib/card/generators/card_migration/templates/card_migration.erb +4 -5
- data/lib/card/generators/format/USAGE +2 -2
- data/lib/card/generators/format/format_generator.rb +2 -2
- data/lib/card/generators/set/USAGE +2 -2
- data/lib/card/mailer.rb +21 -100
- data/lib/card/name.rb +4 -3
- data/lib/card/query.rb +2 -2
- data/lib/card/query/card_spec.rb +20 -30
- data/lib/card/query/value_spec.rb +2 -3
- data/lib/card/set.rb +3 -0
- data/lib/wagn/all.rb +6 -0
- data/lib/wagn/application.rb +16 -6
- data/lib/wagn/commands.rb +87 -27
- data/lib/wagn/config/environments/development.rb +17 -0
- data/lib/wagn/config/environments/test.rb +14 -1
- data/lib/wagn/config/initializers/airbrake.rb +1 -1
- data/lib/wagn/generators/wagn/templates/Gemfile +27 -9
- data/lib/wagn/generators/wagn/templates/config/application.rb +12 -3
- data/lib/wagn/generators/wagn/templates/simplecov +5 -0
- data/lib/wagn/generators/wagn/templates/spec/spec_helper.rb +1 -0
- data/lib/wagn/generators/wagn/wagn_generator.rb +75 -45
- data/lib/wagn/location.rb +9 -0
- data/lib/wagn/migration.rb +96 -0
- data/lib/wagn/mods_spec_helper.rb +16 -8
- data/lib/wagn/simplecov_helper.rb +61 -0
- data/lib/wagn/{wagn_spec_helper.rb → spec_helper.rb} +11 -3
- data/lib/wagn/tasks/test.rake +1 -1
- data/lib/wagn/tasks/wagn.rake +100 -34
- data/lib/wagn/version.rb +7 -2
- data/mod/{core → 01_core}/chunk/include.rb +0 -0
- data/mod/{core → 01_core}/chunk/link.rb +0 -0
- data/mod/{core → 01_core}/chunk/literal.rb +0 -0
- data/mod/{core → 01_core}/chunk/reference.rb +15 -3
- data/mod/{core → 01_core}/chunk/uri.rb +0 -0
- data/mod/{core → 01_core}/format/data_format.rb +0 -0
- data/mod/{core → 01_core}/format/html_format.rb +5 -2
- data/mod/{core → 01_core}/format/text_format.rb +0 -0
- data/mod/{core → 01_core}/layout/blank.html +0 -0
- data/mod/{core → 01_core}/layout/default.html +0 -0
- data/mod/{core → 01_core}/layout/noside.html +0 -0
- data/mod/{core → 01_core}/layout/pre.html +0 -0
- data/mod/{core → 01_core}/layout/simple.html +0 -0
- data/mod/{core → 01_core}/set/all/active_card.rb +0 -0
- data/mod/{core → 01_core}/set/all/collection.rb +33 -5
- data/mod/01_core/set/all/content.rb +144 -0
- data/mod/01_core/set/all/erb.rb +11 -0
- data/mod/{core → 01_core}/set/all/fetch.rb +8 -1
- data/mod/01_core/set/all/haml.rb +7 -0
- data/mod/{core → 01_core}/set/all/initialize.rb +4 -2
- data/mod/{core → 01_core}/set/all/name.rb +2 -3
- data/mod/01_core/set/all/notify.rb +215 -0
- data/mod/{core → 01_core}/set/all/pattern.rb +0 -0
- data/mod/{core → 01_core}/set/all/permissions.rb +1 -1
- data/mod/{core → 01_core}/set/all/phases.rb +24 -8
- data/mod/{core → 01_core}/set/all/references.rb +2 -2
- data/mod/{core → 01_core}/set/all/rules.rb +2 -2
- data/mod/{core → 01_core}/set/all/states.rb +1 -1
- data/mod/{core → 01_core}/set/all/templating.rb +4 -4
- data/mod/{core → 01_core}/set/all/tracked_attributes.rb +15 -64
- data/mod/{core → 01_core}/set/all/trash.rb +6 -5
- data/mod/{core → 01_core}/set/all/type.rb +0 -0
- data/mod/{core → 01_core}/set/all/utils.rb +1 -1
- data/mod/{core → 01_core}/set_pattern/01_all.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/02_all_plus.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/03_type.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/04_star.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/05_rstar.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/06_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/07_type_plus_right.rb +0 -0
- data/mod/{core → 01_core}/set_pattern/08_self.rb +0 -0
- data/mod/01_core/spec/chunk/literal_spec.rb +14 -0
- data/{spec/mod/core → mod/01_core/spec}/chunk/uri_spec.rb +3 -3
- data/{spec/mod/core → mod/01_core/spec}/format/data_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/format/html_format_spec.rb +9 -8
- data/{spec/mod/core → mod/01_core/spec}/format/text_format_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/active_card_spec.rb +0 -0
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +21 -0
- data/mod/01_core/spec/set/all/collection_spec.rb +65 -0
- data/mod/01_core/spec/set/all/content_spec.rb +15 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/fetch_spec.rb +70 -68
- data/{spec/mod/core → mod/01_core/spec}/set/all/initialize_spec.rb +12 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/name_spec.rb +7 -7
- data/mod/01_core/spec/set/all/notify_spec.rb +199 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/pattern_spec.rb +16 -16
- data/{spec/mod/core → mod/01_core/spec}/set/all/permissions_spec.rb +62 -62
- data/{spec/mod/core → mod/01_core/spec}/set/all/phases_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/references_spec.rb +1 -1
- data/{spec/mod/core → mod/01_core/spec}/set/all/rules2_spec.rb +57 -57
- data/mod/01_core/spec/set/all/rules_spec.rb +81 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/states_spec.rb +0 -0
- data/{spec/mod/core → mod/01_core/spec}/set/all/templating_spec.rb +16 -12
- data/{spec/mod/core → mod/01_core/spec}/set/all/tracked_attributes_spec.rb +24 -22
- data/{spec/mod/core → mod/01_core/spec}/set/all/trash_spec.rb +2 -2
- data/{spec/mod/core → mod/01_core/spec}/set/all/type_spec.rb +13 -13
- data/{spec/mod/core → mod/01_core/spec}/set/all/utils_spec.rb +0 -0
- data/mod/{core → 02_basic_types}/set/type/plain_text.rb +0 -0
- data/mod/{standard → 02_basic_types}/set/type/pointer.rb +21 -8
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/plain_text_spec.rb +0 -0
- data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/pointer_spec.rb +22 -9
- data/mod/{standard → 03_machines}/lib/card/machine.rb +3 -2
- data/mod/{standard → 03_machines}/lib/card/machine_input.rb +1 -1
- data/mod/{standard → 03_machines}/lib/javascript/html5shiv-printshiv.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery-ui.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.autosize.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.fileupload.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.iframe-transport.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery.ui.autocomplete.html.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquery_ujs.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/jquerymobile.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/tinymce.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn.js.coffee +17 -9
- data/mod/{standard → 03_machines}/lib/javascript/wagn_menu.js +0 -0
- data/mod/{standard → 03_machines}/lib/javascript/wagn_mod.js.coffee +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/functional.scss +1 -1
- data/mod/{standard → 03_machines}/lib/stylesheets/jquery-ui-smoothness.css +0 -0
- data/mod/{standard → 03_machines}/lib/stylesheets/standard.scss +126 -21
- data/mod/{standard → 03_machines}/set/right/machine_output.rb +3 -2
- data/mod/{standard → 03_machines}/set/self/script_card_menu.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_html5shiv_printshiv.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_jquery_helper.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_slot.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/script_tinymce.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_functional.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_jquery_ui_smoothness.rb +1 -1
- data/mod/{standard → 03_machines}/set/self/style_standard.rb +1 -1
- data/mod/{standard → 03_machines}/set/type/coffee_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/css.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/java_script.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/scss.rb +0 -0
- data/mod/{standard → 03_machines}/set/type/skin.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_input_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_spec.rb +4 -4
- data/{spec/mod/standard → mod/03_machines/spec}/set/right/machine_output_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_functional_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_jquery_ui_smoothness_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_standard_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/coffeescript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/css_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/javascript_spec.rb +0 -0
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/scss_spec.rb +1 -1
- data/{spec/mod/standard → mod/03_machines/spec}/set/type/skin_spec.rb +22 -0
- data/mod/04_settings/lib/card/setting.rb +57 -0
- data/mod/{core/set/right/structure.rb → 04_settings/set/right/add_help.rb} +0 -2
- data/mod/{standard → 04_settings}/set/right/comment.rb +0 -1
- data/mod/{standard → 04_settings}/set/right/create.rb +0 -1
- data/mod/04_settings/set/right/default.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/delete.rb +2 -0
- data/mod/04_settings/set/right/help.rb +3 -0
- data/mod/{standard → 04_settings}/set/right/read.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/script.rb +0 -0
- data/mod/04_settings/set/right/structure.rb +4 -0
- data/mod/{standard → 04_settings}/set/right/style.rb +0 -0
- data/mod/{standard → 04_settings}/set/right/update.rb +0 -0
- data/mod/04_settings/set/self/accountable.rb +2 -0
- data/mod/04_settings/set/self/add_help.rb +2 -0
- data/mod/04_settings/set/self/autoname.rb +2 -0
- data/mod/04_settings/set/self/captcha.rb +2 -0
- data/mod/04_settings/set/self/comment.rb +2 -0
- data/mod/04_settings/set/self/create.rb +2 -0
- data/mod/04_settings/set/self/default.rb +2 -0
- data/mod/04_settings/set/self/delete.rb +2 -0
- data/mod/04_settings/set/self/help.rb +2 -0
- data/mod/04_settings/set/self/input.rb +2 -0
- data/mod/04_settings/set/self/layout.rb +2 -0
- data/mod/04_settings/set/self/on_create.rb +2 -0
- data/mod/04_settings/set/self/on_delete.rb +2 -0
- data/mod/04_settings/set/self/on_update.rb +2 -0
- data/mod/04_settings/set/self/options.rb +2 -0
- data/mod/04_settings/set/self/options_label.rb +2 -0
- data/mod/04_settings/set/self/read.rb +2 -0
- data/mod/04_settings/set/self/script.rb +2 -0
- data/mod/04_settings/set/self/structure.rb +2 -0
- data/mod/04_settings/set/self/style.rb +2 -0
- data/mod/04_settings/set/self/table_of_contents.rb +2 -0
- data/mod/04_settings/set/self/thanks.rb +2 -0
- data/mod/04_settings/set/self/update.rb +2 -0
- data/mod/{standard → 04_settings}/set/type/setting.rb +8 -14
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/add_help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/comment_spec.rb +5 -5
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/create_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/default_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/delete_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/help_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/read_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/script_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/structure_spec.rb +4 -2
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/style_spec.rb +1 -1
- data/{spec/mod/standard → mod/04_settings/spec}/set/right/update_spec.rb +0 -0
- data/{spec/mod/standard → mod/04_settings/spec}/set/type/setting_spec.rb +0 -0
- data/mod/{standard → 05_standard}/file/103/icon-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/large-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/medium-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/original-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/103/small-6566.ico +0 -0
- data/mod/{standard → 05_standard}/file/79/icon-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/large-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/medium-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/original-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/79/small-6556.png +0 -0
- data/mod/{standard → 05_standard}/file/790/icon-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/large-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/medium-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/original-6419.png +0 -0
- data/mod/{standard → 05_standard}/file/790/small-6419.png +0 -0
- data/mod/{standard → 05_standard}/format/css_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/csv_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/file_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/js_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/json_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/rss_format.rb +0 -0
- data/mod/{standard → 05_standard}/format/xml_format.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/account.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_css.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/all_csv.rb +1 -1
- data/mod/05_standard/set/all/all_js.rb +7 -0
- data/mod/{standard → 05_standard}/set/all/attach.rb +33 -33
- data/mod/{standard → 05_standard}/set/all/base.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/comment.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/event_viz.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/file.rb +0 -0
- data/mod/05_standard/set/all/follow.rb +51 -0
- data/mod/05_standard/set/all/history.rb +294 -0
- data/mod/{standard → 05_standard}/set/all/json.rb +2 -1
- data/mod/05_standard/set/all/observer.rb +27 -0
- data/mod/{standard → 05_standard}/set/all/rich_html.rb +21 -28
- data/mod/{standard → 05_standard}/set/all/rss.rb +0 -0
- data/mod/{standard → 05_standard}/set/all/text.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/account.rb +53 -7
- data/mod/{standard → 05_standard}/set/right/email.rb +0 -1
- data/mod/{standard → 05_standard}/set/right/password.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/salt.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/stats.rb +1 -1
- data/mod/{standard → 05_standard}/set/right/status.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/token.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_created.rb +0 -0
- data/mod/{standard → 05_standard}/set/right/when_last_edited.rb +0 -0
- data/mod/{standard → 05_standard}/set/rstar/rules.rb +8 -7
- data/mod/{standard → 05_standard}/set/self/account_links.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/alerts.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/all.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/foot.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/head.rb +21 -6
- data/mod/{standard → 05_standard}/set/self/navbox.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/now.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/recent.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/search.rb +0 -0
- data/mod/{standard → 05_standard}/set/self/signin.rb +1 -1
- data/mod/{standard → 05_standard}/set/self/stats.rb +2 -2
- data/mod/{standard → 05_standard}/set/self/version.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/basic.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/cardtype.rb +4 -6
- data/mod/{standard → 05_standard}/set/type/date.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/file.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/html.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/image.rb +7 -6
- data/mod/{standard → 05_standard}/set/type/layout_type.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/number.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/phrase.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/search_type.rb +6 -3
- data/mod/{standard → 05_standard}/set/type/set.rb +16 -9
- data/mod/{standard → 05_standard}/set/type/signup.rb +16 -17
- data/mod/{standard → 05_standard}/set/type/toggle.rb +0 -0
- data/mod/{standard → 05_standard}/set/type/user.rb +10 -11
- data/{spec/mod/standard → mod/05_standard/spec}/chunk/include_spec.rb +39 -39
- data/mod/05_standard/spec/chunk/link_spec.rb +61 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/css_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/csv_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/email_html_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/file_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/js_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/json_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/rss_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/format/xml_format_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/account_spec.rb +16 -16
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_css_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_csv_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/attach_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/base_spec.rb +10 -10
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/comment_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/email_html_spec.rb +15 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/event_viz_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/file_spec.rb +0 -0
- data/mod/05_standard/spec/set/all/follow_spec.rb +83 -0
- data/mod/05_standard/spec/set/all/history_spec.rb +161 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/json_spec.rb +4 -4
- data/mod/05_standard/spec/set/all/observer_spec.rb +74 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rich_html_spec.rb +14 -14
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/rss_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/all/text_spec.rb +0 -0
- data/mod/05_standard/spec/set/right/account_spec.rb +162 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/email_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/password_spec.rb +7 -7
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/salt_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/status_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/token_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_created_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_last_edited_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/rstar/rules_spec.rb +4 -4
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/account_links_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/alerts_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/all_spec.rb +7 -6
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/foot_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/head_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/navbox_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/now_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/recent_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/search_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/signin_spec.rb +12 -12
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/stats_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/self/version_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/basic_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/cardtype_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/date_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/email_template_spec.rb +130 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/file_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/html_spec.rb +3 -3
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/image_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/layout_type_spec.rb +1 -1
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/number_spec.rb +0 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/phrase_spec.rb +0 -0
- data/mod/05_standard/spec/set/type/search_type_spec.rb +27 -0
- data/mod/05_standard/spec/set/type/set_spec.rb +26 -0
- data/mod/05_standard/spec/set/type/signup_spec.rb +209 -0
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/toggle_spec.rb +2 -2
- data/{spec/mod/standard → mod/05_standard/spec}/set/type/user_spec.rb +0 -0
- data/mod/{standard → 06_email}/format/email_html_format.rb +0 -0
- data/mod/06_email/format/email_text_format.rb +7 -0
- data/mod/06_email/set/all/email_html.rb +9 -0
- data/mod/{standard/set/all/email_html.rb → 06_email/set/all/email_text.rb} +2 -1
- data/mod/06_email/set/right/bcc.rb +31 -0
- data/mod/06_email/set/right/cc.rb +2 -0
- data/mod/06_email/set/right/from.rb +2 -0
- data/mod/06_email/set/right/html_message.rb +3 -0
- data/mod/06_email/set/right/to.rb +2 -0
- data/mod/06_email/set/type/email_template.rb +99 -0
- data/spec/controllers/card_controller_spec.rb +34 -46
- data/spec/lib/card/action_spec.rb +14 -0
- data/spec/lib/card/chunk_spec.rb +3 -3
- data/spec/lib/card/codename_spec.rb +5 -5
- data/spec/lib/card/content_spec.rb +25 -25
- data/spec/lib/card/diff_spec.rb +107 -107
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/loader_spec.rb +35 -29
- data/spec/lib/card/name_spec.rb +82 -82
- data/spec/lib/card/query_spec.rb +83 -82
- data/spec/lib/card/reference_spec.rb +30 -30
- data/spec/lib/card/set_pattern_spec.rb +1 -1
- data/spec/lib/card/set_spec.rb +86 -82
- data/spec/lib/wagn/cache_spec.rb +24 -24
- data/spec/mailers/mailer_spec.rb +41 -30
- data/spec/models/card/cardtype_spec.rb +19 -19
- data/spec/models/card/create_spec.rb +14 -14
- data/spec/models/card/trash_spec.rb +37 -36
- data/spec/models/card/type_transition_spec.rb +13 -13
- data/spec/models/card/validation_spec.rb +6 -6
- data/spec/models/card_spec.rb +40 -39
- data/spec/spec_helper.rb +37 -11
- data/test/fixtures/card_actions.yml +4726 -0
- data/test/fixtures/card_acts.yml +589 -0
- data/test/fixtures/card_changes.yml +12644 -0
- data/test/fixtures/card_references.yml +976 -591
- data/test/fixtures/cards.yml +4544 -2781
- data/test/seed.rb +14 -13
- data/wagn.gemspec +4 -0
- metadata +404 -403
- data/db/bootstrap/card_revisions.yml +0 -3379
- data/lib/card/flexmail.rb +0 -53
- data/lib/card/mailer/change_notice.html.erb +0 -32
- data/lib/card/mailer/confirmation_email.html.erb +0 -12
- data/lib/card/mailer/flexmail.html.erb +0 -6
- data/lib/card/mailer/password_reset.html.erb +0 -9
- data/lib/card/mailer/signup_alert.html.erb +0 -14
- data/lib/card/revision.rb +0 -47
- data/lib/wagn/migration_helper.rb +0 -34
- data/mod/core/set/all/attribute_tracking.rb +0 -85
- data/mod/core/set/all/content.rb +0 -94
- data/mod/standard/set/all/flexmail.rb +0 -3
- data/mod/standard/set/all/follow.rb +0 -119
- data/mod/standard/set/all/history.rb +0 -107
- data/mod/standard/set/right/add_help.rb +0 -3
- data/mod/standard/set/right/default.rb +0 -3
- data/mod/standard/set/right/help.rb +0 -3
- data/spec/lib/card/flexmail_spec.rb +0 -209
- data/spec/lib/card/revision_spec.rb +0 -30
- data/spec/mod/core/chunk/literal_spec.rb +0 -14
- data/spec/mod/core/set/all/attribute_tracking_spec.rb +0 -21
- data/spec/mod/core/set/all/collection_spec.rb +0 -45
- data/spec/mod/core/set/all/content_spec.rb +0 -14
- data/spec/mod/core/set/all/rules_spec.rb +0 -98
- data/spec/mod/standard/chunk/link_spec.rb +0 -59
- data/spec/mod/standard/set/all/email_html_spec.rb +0 -13
- data/spec/mod/standard/set/all/flexmail_spec.rb +0 -5
- data/spec/mod/standard/set/all/follow_spec.rb +0 -95
- data/spec/mod/standard/set/all/history_spec.rb +0 -10
- data/spec/mod/standard/set/right/account_spec.rb +0 -90
- data/spec/mod/standard/set/type/search_type_spec.rb +0 -27
- data/spec/mod/standard/set/type/set_spec.rb +0 -26
- data/spec/mod/standard/set/type/signup_spec.rb +0 -169
- data/test/fixtures/card_revisions.yml +0 -4560
@@ -1,107 +0,0 @@
|
|
1
|
-
|
2
|
-
format :html do
|
3
|
-
|
4
|
-
view :history do |args|
|
5
|
-
load_revisions
|
6
|
-
if @revision
|
7
|
-
frame args.merge( :content=>true, :subheader=>_render_revision_subheader ) do
|
8
|
-
_render_diff
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
view :diff do |args|
|
14
|
-
load_revisions
|
15
|
-
if @show_diff and @previous_revision
|
16
|
-
diff @previous_revision.content, @revision.content
|
17
|
-
else
|
18
|
-
@revision.content
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
view :revision_subheader do |args|
|
23
|
-
%{
|
24
|
-
<div class="revision-header">
|
25
|
-
<span class="revision-title">#{ @revision.title }</span>
|
26
|
-
posted by #{ link_to_page @revision.creator.name }
|
27
|
-
on #{ format_date(@revision.created_at) } #{
|
28
|
-
if !card.drafts.empty?
|
29
|
-
%{<div class="autosave-alert">
|
30
|
-
This card has an #{ autosave_revision }
|
31
|
-
</div>}
|
32
|
-
end}#{
|
33
|
-
if @show_diff and @revision_number > 1 #ENGLISH
|
34
|
-
%{<div class="revision-diff-header">
|
35
|
-
<small>
|
36
|
-
Showing changes from revision ##{ @revision_number - 1 }:
|
37
|
-
<ins class="diffins">Added</ins> | <del class="diffmod">Deleted</del>
|
38
|
-
</small>
|
39
|
-
</div>}
|
40
|
-
end}
|
41
|
-
</div>
|
42
|
-
<div class="revision-navigation">#{ revision_menu }</div>
|
43
|
-
}
|
44
|
-
end
|
45
|
-
|
46
|
-
def load_revisions
|
47
|
-
unless @revision_number
|
48
|
-
@revision_number = (params[:rev] || (card.revisions.count - card.drafts.length)).to_i
|
49
|
-
@revision = card.revisions[@revision_number - 1]
|
50
|
-
@previous_revision = @revision ? card.previous_revision( @revision.id ) : nil
|
51
|
-
@show_diff = (params[:mode] != 'false')
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
def revision_link text, revision, name, accesskey='', mode=nil
|
56
|
-
link_to text, path(:view=>:history, :rev=>revision, :mode=>(mode || params[:mode] || true) ),
|
57
|
-
:class=>"slotter", :remote=>true, :rel=>'nofollow'
|
58
|
-
end
|
59
|
-
|
60
|
-
def rollback to_rev=nil
|
61
|
-
to_rev ||= @revision_number
|
62
|
-
if card.ok?(:update) && !(card.current_revision==@revision)
|
63
|
-
link_to 'Save as current', path(:action=>:rollback, :rev=>to_rev),
|
64
|
-
:class=>'slotter', :remote=>true
|
65
|
-
end
|
66
|
-
end
|
67
|
-
|
68
|
-
def revision_menu
|
69
|
-
revision_menu_items.flatten.map do |item|
|
70
|
-
"<span>#{item}</span>"
|
71
|
-
end.join('')
|
72
|
-
end
|
73
|
-
|
74
|
-
def revision_menu_items
|
75
|
-
items = [back_for_revision, forward, see_or_hide_changes_for_revision]
|
76
|
-
items << rollback unless card.recaptcha_on?
|
77
|
-
items
|
78
|
-
end
|
79
|
-
|
80
|
-
def forward
|
81
|
-
if @revision_number < card.revisions.count
|
82
|
-
revision_link('Newer', @revision_number +1, 'to_next_revision', 'F' ) +
|
83
|
-
raw(" <small>(#{card.revisions.count - @revision_number})</small>")
|
84
|
-
else
|
85
|
-
'Newer <small>(0)</small>'
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
def back_for_revision
|
90
|
-
if @revision_number > 1
|
91
|
-
revision_link('Older',@revision_number - 1, 'to_previous_revision') +
|
92
|
-
raw("<small>(#{@revision_number - 1})</small>")
|
93
|
-
else
|
94
|
-
'Older <small>(0)</small>'
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
def see_or_hide_changes_for_revision
|
99
|
-
revision_link(@show_diff ? 'Hide changes' : 'Show changes',
|
100
|
-
@revision_number, 'see_changes', 'C', (@show_diff ? 'false' : 'true'))
|
101
|
-
end
|
102
|
-
|
103
|
-
def autosave_revision
|
104
|
-
revision_link("Autosaved Draft", card.revisions.count, 'to autosave')
|
105
|
-
end
|
106
|
-
|
107
|
-
end
|
@@ -1,209 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Flexmail do
|
4
|
-
describe "#email_config_cardnames" do
|
5
|
-
it "handles relative names" do
|
6
|
-
Card::Auth.as_bot do
|
7
|
-
Card.create! :name=>'emailtest+*right+*send', :content=>'[[_left+email_config]]', :type=>'Pointer'
|
8
|
-
trigger_card = Card.new(:name=>'Huckleberry+emailtest')
|
9
|
-
Card::Flexmail.email_config_cardnames(trigger_card).first.should=='emailtest+*right+email_config'
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
describe ".configs_for" do
|
15
|
-
before do
|
16
|
-
Card::Auth.current_id = Card::WagnBotID
|
17
|
-
Card.create! :name => "mailconfig+*to", :content => "joe@user.com"
|
18
|
-
Card.create! :name => "mailconfig+*from", :content => "from@user.com"
|
19
|
-
Card.create! :name => "mailconfig+*subject", :content => "Subject of the mail"
|
20
|
-
Card.create! :name => "emailtest+*right+*send", :content => "[[mailconfig]]"
|
21
|
-
end
|
22
|
-
|
23
|
-
it "returns empty list for card with no configs" do
|
24
|
-
Card::Flexmail.configs_for( Card.new( :name => "random" )).should == []
|
25
|
-
end
|
26
|
-
|
27
|
-
it "takes Pointer value for extended_list fields" do
|
28
|
-
Card.create! :name => "mailconfig+*cc", :content => "[[mailconfig+*to]]", :type=>'Pointer'
|
29
|
-
c = Card.new(:name=>'Passion Fruit+emailtest')
|
30
|
-
Card::Flexmail.configs_for(c)[0][:cc].should == 'joe@user.com'
|
31
|
-
end
|
32
|
-
|
33
|
-
it "handles *email cards" do
|
34
|
-
Card::Auth.as_bot do
|
35
|
-
Card.create! :name => "mailconfig+*cc", :content => "[[Joe User+*email]]", :type=>'Pointer'
|
36
|
-
Card.create! :name => "mailconfig+*bcc", :content => '{"name":"Joe Admin","append":"*email"}', :type=>'Search'
|
37
|
-
end
|
38
|
-
c = Card.new(:name=>'Kiwi+emailtest')
|
39
|
-
conf = Card::Flexmail.configs_for(c)[0]
|
40
|
-
conf[:cc].should == 'joe@user.com'
|
41
|
-
conf[:bcc].should == 'joe@admin.com'
|
42
|
-
end
|
43
|
-
|
44
|
-
it "returns list with correct hash for card with configs" do
|
45
|
-
Card.create! :name => "mailconfig+*message", :content => "It's true that {{_left+story|core}}"
|
46
|
-
c = Card.create :name=>'Banana+story', :content=>"I was born a poor black seed"
|
47
|
-
c = Card.create :name => "Banana+emailtest", :content => "data content"
|
48
|
-
Card::Flexmail.configs_for(c).should == [{
|
49
|
-
:to => "joe@user.com",
|
50
|
-
:from => "from@user.com",
|
51
|
-
:bcc => "",
|
52
|
-
:cc => "",
|
53
|
-
:subject => "Subject of the mail",
|
54
|
-
:message => "It's true that I was born a poor black seed",
|
55
|
-
:attach => ""
|
56
|
-
}]
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
describe "complex configs for" do
|
61
|
-
before do
|
62
|
-
class ActionView::Base
|
63
|
-
def params
|
64
|
-
if @controller
|
65
|
-
@controller.params
|
66
|
-
else
|
67
|
-
{}
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
Card::Auth.as_bot do
|
73
|
-
Card.create! :name => 'Bobs addy', :content=>'bob@bob.com', :type=>'Phrase'
|
74
|
-
Card.create! :name => 'default subject', :content=>'a very nutty thang', :type=>'Phrase'
|
75
|
-
Card.create! :name => "mailconfig+*to", :content => %{ {"key":"bob_addy"} }, :type=>'Search'
|
76
|
-
Card.create! :name => "mailconfig+*from", :content => %{ {"left":"_left", "right":"email"} }, :type=>'Search'
|
77
|
-
Card.create! :name => "subject search+*right+*structure", :content => %{{"referred_to_by":"_self+subject"}}, :type=>'Search'
|
78
|
-
Card.create! :name => "mailconfig+*subject", :content => "{{+subject search|core;item:core}}"
|
79
|
-
Card.create! :name => "mailconfig+*message", :content => "Triggered by {{_self|name}} and its wonderful content: {{_self|core}}"
|
80
|
-
Card.create! :name => "mailconfig+*attach", :type=>"Pointer", :content => "[[_self+attachment]]"
|
81
|
-
Card.create! :name=>'Trigger', :type=>'Cardtype'
|
82
|
-
Card.create :name=>'Trigger+*type+*create', :type=>'Pointer', :content=>'[[Anonymous]]'
|
83
|
-
Card.create! :name=>'Trigger+*type+*structure', :content=>''
|
84
|
-
Card.create! :name => "Trigger+*type+*send", :content => "[[mailconfig]]", :type=>'Pointer'
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
it "returns list with correct hash for card with configs" do
|
89
|
-
pending 'spec is breaking but flexmail is being refactored'
|
90
|
-
Card::Auth.as_bot do
|
91
|
-
Card::Env[:protocol] = 'http://'
|
92
|
-
Card::Env[:host] = 'a.com'
|
93
|
-
|
94
|
-
#c = Card.new(:name => "Banana Trigger", :content => "data content [[A]]", :type=>'Trigger')
|
95
|
-
#warn "boom: #{ Card::Flexmail.configs_for(c).inspect }"
|
96
|
-
|
97
|
-
c = Card.create(
|
98
|
-
:name => "Banana Trigger",
|
99
|
-
:content => "data content [[A]]",
|
100
|
-
:type => 'Trigger',
|
101
|
-
:subcards=> {
|
102
|
-
'+email' => {:content=>'gary@gary.com'},
|
103
|
-
'+subject' => {:type=>'Pointer', :content=>'[[default subject]]'},
|
104
|
-
# '+attachment' => {:type=>'File', :content=>"notreally.txt" }
|
105
|
-
}
|
106
|
-
)
|
107
|
-
conf = Card::Flexmail.configs_for(c).first
|
108
|
-
|
109
|
-
conf[:to ].should == "bob@bob.com"
|
110
|
-
conf[:from ].should == "gary@gary.com"
|
111
|
-
conf[:bcc ].should == ''
|
112
|
-
conf[:cc ].should == ''
|
113
|
-
conf[:subject].should == "a very nutty thang"
|
114
|
-
# conf[:attach ].should == ['Banana Trigger+attachment']
|
115
|
-
conf[:message].should == "Triggered by Banana Trigger and its wonderful content: data content " +
|
116
|
-
'<a class="known-card" href="http://a.com/A">A</a>'
|
117
|
-
end
|
118
|
-
end
|
119
|
-
end
|
120
|
-
|
121
|
-
describe "hooks for" do
|
122
|
-
describe "untemplated card" do
|
123
|
-
before do
|
124
|
-
Card::Auth.as_bot {
|
125
|
-
Card.create! :name => "emailtest+*right+*send", :type => "Pointer", :content => "[[mailconfig]]"
|
126
|
-
Card.create! :name => "mailconfig+*to", :content => "joe@user.com"
|
127
|
-
}
|
128
|
-
end
|
129
|
-
|
130
|
-
it "calls to mailer only on Card#create" do
|
131
|
-
Card::Auth.as_bot do
|
132
|
-
mock( Card::Mailer ).flexmail( hash_including :to=>"joe@user.com" ).times 1
|
133
|
-
c =Card.create :name => "Banana+emailtest"
|
134
|
-
c.update_attributes! :content => 'short lived'
|
135
|
-
c.delete!
|
136
|
-
end
|
137
|
-
|
138
|
-
end
|
139
|
-
|
140
|
-
|
141
|
-
it "handles case of referring to self for content" do
|
142
|
-
Card::Auth.as_bot do
|
143
|
-
Card.create! :name => "Email", :type => "Cardtype"
|
144
|
-
Card.create! :name => "Email+*type+*send", :type => "Pointer", :content => "[[mailconfig]]"
|
145
|
-
Card.create! :name => "mailconfig+*message", :content => "this {{_self|core}}"
|
146
|
-
end
|
147
|
-
|
148
|
-
Rails.logger.level = ActiveSupport::BufferedLogger::Severity::DEBUG
|
149
|
-
mock(Card::Mailer).flexmail(hash_including(:message=>"this had betta work"))
|
150
|
-
Card.create!(:name => "ToYou", :type => "Email", :content => "had betta work")
|
151
|
-
end
|
152
|
-
|
153
|
-
end
|
154
|
-
|
155
|
-
describe "templated card" do
|
156
|
-
before do
|
157
|
-
Card::Auth.as_bot do
|
158
|
-
Card.create! :name => "Book+*type+*send", :type => "Pointer",
|
159
|
-
:content => "[[mailconfig]]"
|
160
|
-
Card.create! :name => "mailconfig+*to", :content => "joe@user.com"
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
it "doesn't call to mailer on Card#create" do
|
165
|
-
mock.dont_allow(Card::Mailer).flexmail
|
166
|
-
Card.create :name => "Banana+emailtest"
|
167
|
-
end
|
168
|
-
|
169
|
-
it "calls to mailer on Card#create" do
|
170
|
-
mock(Card::Mailer).flexmail(hash_including(:to=>"joe@user.com")).at_least(1)
|
171
|
-
c = Card.create :name => "Illiodity", :type=>"Book"
|
172
|
-
Card.update(c.id, :subcards=> {"~author" => {"name" => "Bukowski"}})
|
173
|
-
end
|
174
|
-
end
|
175
|
-
end
|
176
|
-
|
177
|
-
# Note: this mailer method and the corresponding template are defined in the regular rails places
|
178
|
-
# rather that the flexmail module.
|
179
|
-
# They can/should be brought out to more modular space if/when modules support adding
|
180
|
-
# view template (through adding directories, etc.)
|
181
|
-
describe Card::Mailer do
|
182
|
-
# to access things like 'create_account_url' include UrlWriter
|
183
|
-
# include ActionController::UrlWriter
|
184
|
-
|
185
|
-
before(:all) do
|
186
|
-
@email = Card::Mailer.flexmail({
|
187
|
-
:to=>"joe@user.com",
|
188
|
-
:subject=>"boo-ya",
|
189
|
-
:message=>"Ipsum Daido Lorem"
|
190
|
-
})
|
191
|
-
end
|
192
|
-
|
193
|
-
it "respects to:" do
|
194
|
-
@email.to.first.should == "joe@user.com"
|
195
|
-
end
|
196
|
-
|
197
|
-
it "respects subject:" do
|
198
|
-
@email.subject.should match /boo-ya/
|
199
|
-
end
|
200
|
-
|
201
|
-
it "respects content:" do
|
202
|
-
@email.body.should match /Ipsum Daido Lorem/
|
203
|
-
end
|
204
|
-
end
|
205
|
-
end
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
@@ -1,30 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Revision do
|
4
|
-
|
5
|
-
it 'should be created whenever content is updated' do
|
6
|
-
author1 = Card::Auth[ 'joe@user.com' ]
|
7
|
-
author2 = Card::Auth[ 'sara@user.com' ]
|
8
|
-
author_cd1 = Card[author1.id]
|
9
|
-
author_cd2 = Card[author2.id]
|
10
|
-
Card::Auth.current_id = Card::WagnBotID
|
11
|
-
rc1=author_cd1.fetch(:new=>{}, :trait=>:roles)
|
12
|
-
rc1 << Card::AdministratorID
|
13
|
-
rc2 = author_cd2.fetch(:new=>{}, :trait=>:roles)
|
14
|
-
rc2 << Card::AdministratorID
|
15
|
-
author_cd1.save
|
16
|
-
author_cd2.save
|
17
|
-
Card::Auth.current_id = author_cd1.id
|
18
|
-
card = Card.create! :name=>'alpha', :content=>'stuff'
|
19
|
-
Card::Auth.current_id = author_cd2.id
|
20
|
-
card.content = 'boogy'
|
21
|
-
card.save
|
22
|
-
card.reload
|
23
|
-
|
24
|
-
assert_equal 2, card.revisions.count, 'Should have two revisions'
|
25
|
-
assert_equal author_cd2.name, card.current_revision.creator.name, 'current author'
|
26
|
-
assert_equal author_cd1.name, card.revisions.first.creator.name, 'first author'
|
27
|
-
end
|
28
|
-
|
29
|
-
|
30
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Chunk::EscapedLiteral, "literal chunk tests" do
|
4
|
-
|
5
|
-
it "should handle escaped link" do
|
6
|
-
render_content('write this: \[[text]]').should == 'write this: <span>[</span>[text]]'
|
7
|
-
end
|
8
|
-
|
9
|
-
it "should handle escaped inclusion" do
|
10
|
-
render_content('write this: \{{cardname}}').should == 'write this: <span>{</span>{cardname}}'
|
11
|
-
end
|
12
|
-
|
13
|
-
end
|
14
|
-
|
@@ -1,21 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Set::All::AttributeTracking do
|
4
|
-
context "new card" do
|
5
|
-
before(:each) do
|
6
|
-
Card::Auth.as_bot do
|
7
|
-
@c = Card.new :name=>"New Card", :content=>"Great Content"
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
it "should have updates" do
|
12
|
-
described_class::Updates.should === @c.updates
|
13
|
-
end
|
14
|
-
|
15
|
-
it "should track changes" do
|
16
|
-
@c.name.should == 'New Card'
|
17
|
-
@c.name = 'Old Card'
|
18
|
-
@c.name.should == 'Old Card'
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Set::All::Collection do
|
4
|
-
describe "#item_names" do
|
5
|
-
it "returns item for each line of basic content" do
|
6
|
-
Card.new( :name=>"foo", :content => "X\nY" ).item_names.should == ["X","Y"]
|
7
|
-
end
|
8
|
-
|
9
|
-
it "returns list of card names for search" do
|
10
|
-
c = Card.new( :name=>"foo", :type=>"Search", :content => %[{"name":"Z"}])
|
11
|
-
c.item_names.should == ["Z"]
|
12
|
-
end
|
13
|
-
|
14
|
-
it "handles searches relative to context card" do
|
15
|
-
# note: A refers to 'Z'
|
16
|
-
Card.new(:name=>"foo", :type=>"Search", :content => %[{"referred_to_by":"_self"}]).item_names( :context=>'A' ).should == ["Z"]
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
describe "#extended_list" do
|
21
|
-
it "returns item's content for pointer setting" do
|
22
|
-
c = Card.new(:name=>"foo", :type=>"Pointer", :content => "[[Z]]")
|
23
|
-
c.extended_list.should == ["I'm here to be referenced to"]
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
describe "#contextual_content" do
|
28
|
-
|
29
|
-
it "processes inclusions relative to context card" do
|
30
|
-
context_card = Card["A"] # refers to 'Z'
|
31
|
-
c = Card.new(:name=>"foo", :content => "{{_self+B|core}}")
|
32
|
-
c.contextual_content( context_card ).should == "AlphaBeta"
|
33
|
-
end
|
34
|
-
|
35
|
-
it "returns content even when context card is hard templated" do #why the heck is this good? -efm
|
36
|
-
context_card = Card["A"] # refers to 'Z'
|
37
|
-
|
38
|
-
Card::Auth.as_bot do
|
39
|
-
Card.create! :name => "A+*self+*structure", :content => "Banana"
|
40
|
-
end
|
41
|
-
c = Card.new( :name => "foo", :content => "{{_self+B|core}}" )
|
42
|
-
c.contextual_content( context_card ).should == "AlphaBeta"
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
2
|
-
|
3
|
-
describe Card::Set::All::Content do
|
4
|
-
describe 'save_draft' do
|
5
|
-
it 'should store a draft revision' do
|
6
|
-
@card = Card.create! :name=>"mango", :content=>"foo"
|
7
|
-
@card.save_draft("bar")
|
8
|
-
assert_equal 1, @card.drafts.length
|
9
|
-
@card.save_draft("booboo")
|
10
|
-
assert_equal 1, @card.drafts.length
|
11
|
-
assert_equal "booboo", @card.drafts[0].content
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|