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
@@ -9,18 +9,18 @@ describe Card::Set::Right::Comment do
|
|
9
9
|
end
|
10
10
|
|
11
11
|
it "should have appender immediately" do
|
12
|
-
Card['a'].ok?(:comment).
|
12
|
+
expect(Card['a'].ok?(:comment)).not_to be_truthy
|
13
13
|
Card::Auth.as_bot do
|
14
14
|
@rule.save!
|
15
15
|
end
|
16
|
-
Card['a'].ok?(:comment).
|
16
|
+
expect(Card['a'].ok?(:comment)).to be_truthy
|
17
17
|
end
|
18
18
|
|
19
19
|
it "should have appender immediately" do
|
20
20
|
Card::Auth.as_bot do
|
21
|
-
Card['a'].ok?(:comment).
|
21
|
+
expect(Card['a'].ok?(:comment)).not_to be_truthy
|
22
22
|
@rule.save!
|
23
|
-
Card['a'].ok?(:comment).
|
23
|
+
expect(Card['a'].ok?(:comment)).to be_truthy
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
@@ -34,7 +34,7 @@ describe Card::Set::Right::Comment do
|
|
34
34
|
@c.comment = " and more\n \nsome lines\n\n"
|
35
35
|
@c.save!
|
36
36
|
end
|
37
|
-
Card["basicname"].content.
|
37
|
+
expect(Card["basicname"].content).to match(/\<p\>some lines\<\/p\>/)
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -3,13 +3,15 @@
|
|
3
3
|
describe Card::Set::Right::Structure do
|
4
4
|
it "closed_content is rendered as type + raw" do
|
5
5
|
template = Card.new(:name=>'A+*right+*structure', :content=>'[[link]] {{inclusion}}')
|
6
|
-
template.format._render(:closed_content).
|
6
|
+
expect(template.format._render(:closed_content)).to eq(
|
7
7
|
'<a href="/Basic" class="cardtype">Basic</a> : [[link]] {{inclusion}}'
|
8
|
+
)
|
8
9
|
end
|
9
10
|
|
10
11
|
it "closed_content is rendered as type + raw" do
|
11
12
|
template = Card.new(:name=>'A+*right+*structure', :type=>'Html', :content=>'[[link]] {{inclusion}}')
|
12
|
-
template.format._render(:closed_content).
|
13
|
+
expect(template.format._render(:closed_content)).to eq(
|
13
14
|
'<a href="/HTML" class="cardtype">HTML</a> : [[link]] {{inclusion}}'
|
15
|
+
)
|
14
16
|
end
|
15
17
|
end
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -28,7 +28,7 @@ format :csv do
|
|
28
28
|
begin
|
29
29
|
card1 = search_vars[:results].first
|
30
30
|
|
31
|
-
parsed_content = Card::Content.new card1.
|
31
|
+
parsed_content = Card::Content.new card1.raw_content, self
|
32
32
|
unless String === parsed_content.__getobj__
|
33
33
|
titles = parsed_content.map do |chunk|
|
34
34
|
next if chunk.class != Card::Chunk::Include
|
@@ -1,23 +1,18 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
c=
|
4
|
-
self.content
|
5
|
-
else
|
6
|
-
Card::Revision.find_by_id(selected_revision_id).content
|
7
|
-
end
|
1
|
+
def attach_array
|
2
|
+
|
3
|
+
c= self.content
|
8
4
|
!c || c =~ /^\s*<img / ? ['','',''] : c.split(/\n/)
|
9
5
|
end
|
10
6
|
|
7
|
+
#ask ethan
|
11
8
|
def attach_array_set i, v
|
12
|
-
|
13
|
-
c = attach_array rev_id
|
14
|
-
c = c[0..2] # make sure there is no mod set for uploaded files
|
15
|
-
|
9
|
+
c = attach_array[0..2] # make sure there is no mod set for uploaded files
|
16
10
|
if c[i] != v
|
17
11
|
c[i] = v
|
18
12
|
self.content = c*"\n"
|
19
13
|
end
|
20
14
|
end
|
15
|
+
|
21
16
|
def attach_file_name() attach_array[0] end
|
22
17
|
def attach_content_type() attach_array[1] end
|
23
18
|
def attach_file_size() attach_array[2] end
|
@@ -40,13 +35,17 @@ STYLES = %w{ icon small medium large original }
|
|
40
35
|
|
41
36
|
|
42
37
|
def attachment_format(ext)
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
38
|
+
if ext.present? and attach and original_ext=attach_extension
|
39
|
+
if['file', original_ext].member? ext
|
40
|
+
original_ext
|
41
|
+
elsif exts = MIME::Types[attach.content_type]
|
42
|
+
if exts.find {|mt| mt.extensions.member? ext }
|
43
|
+
ext
|
44
|
+
else
|
45
|
+
exts[0].extensions[0]
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
50
49
|
rescue => e
|
51
50
|
Rails.logger.info "attachment_format issue: #{e.message}"
|
52
51
|
nil
|
@@ -55,31 +54,30 @@ end
|
|
55
54
|
# FIXME: test extension matches content type
|
56
55
|
|
57
56
|
|
58
|
-
|
59
|
-
def attachment_link(rev_id) # create filesystem links to previous revision
|
57
|
+
def attachment_symlink_to(previous_action_id) # create filesystem links to files from previous action
|
60
58
|
if styles = case type_code
|
61
|
-
when
|
62
|
-
when
|
59
|
+
when :file; ['']
|
60
|
+
when :image; STYLES
|
63
61
|
end
|
64
|
-
|
62
|
+
save_action_id = selected_action_id
|
65
63
|
links = {}
|
66
64
|
|
67
|
-
self.
|
65
|
+
self.selected_action_id = previous_action_id
|
68
66
|
styles.each { |style| links[style] = attach.path(style) }
|
69
67
|
|
70
|
-
self.
|
71
|
-
styles.each { |style| File.
|
68
|
+
self.selected_action_id = last_action_id
|
69
|
+
styles.each { |style| ::File.symlink links[style], attach.path(style) }
|
72
70
|
|
73
|
-
self.
|
71
|
+
self.selected_action_id = save_action_id
|
74
72
|
end
|
75
73
|
end
|
76
74
|
|
77
75
|
def before_post_attach
|
78
76
|
# Rails.logger.info "bpa called for #{name}"
|
77
|
+
|
79
78
|
at=self.attach
|
80
79
|
at.instance_write :file_name, at.original_filename
|
81
|
-
|
82
|
-
Card::ImageID == (type_id || Card.fetch_id( @type_args[:type] ) )
|
80
|
+
Card::ImageID == (type_id || Card.fetch_id( @type_args[:type] || @type_args[:type_code]) )
|
83
81
|
# returning true enables thumnail creation
|
84
82
|
end
|
85
83
|
|
@@ -88,8 +86,8 @@ def self.included(base)
|
|
88
86
|
base.class_eval do
|
89
87
|
has_attached_file :attach, :preserve_files=>true,
|
90
88
|
:default_url => "missing",
|
91
|
-
:url => ":file_path/:basename-:size:
|
92
|
-
:path => ":local/:card_id/:size:
|
89
|
+
:url => ":file_path/:basename-:size:action_id.:extension",
|
90
|
+
:path => ":local/:card_id/:size:action_id.:extension",
|
93
91
|
:styles => { :icon => '16x16#', :small => '75x75',
|
94
92
|
:medium => '200x200>', :large => '500x500>' }
|
95
93
|
|
@@ -97,7 +95,7 @@ def self.included(base)
|
|
97
95
|
|
98
96
|
validates_each :attach do |rec, attr, value|
|
99
97
|
if [Card::FileID, Card::ImageID].member? rec.type_id
|
100
|
-
max_size = (max = Card['*upload max']) ? max.
|
98
|
+
max_size = (max = Card['*upload max']) ? max.db_content.to_i : 5
|
101
99
|
if value.size.to_i > max_size.megabytes
|
102
100
|
rec.errors.add :file_size, "File cannot be larger than #{max_size} megabytes"
|
103
101
|
end
|
@@ -137,6 +135,8 @@ module Paperclip::Interpolations
|
|
137
135
|
at.instance.type_id==Card::FileID || style_name.blank? ? '' : "#{style_name}-"
|
138
136
|
end
|
139
137
|
|
140
|
-
def
|
138
|
+
def action_id(at, style_name)
|
139
|
+
at.instance.selected_content_action_id
|
140
|
+
end
|
141
141
|
end
|
142
142
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,51 @@
|
|
1
|
+
def toggle_subscription_for watcher
|
2
|
+
following = watcher.fetch :trait=>:following, :new=>{:type=>:pointer}
|
3
|
+
if following.items.include? card
|
4
|
+
following.drop_item card.name
|
5
|
+
else
|
6
|
+
following.add_item card.name
|
7
|
+
end
|
8
|
+
following.save
|
9
|
+
end
|
10
|
+
|
11
|
+
|
12
|
+
format :html do
|
13
|
+
watch_perms = lambda { |r| Auth.signed_in? && !r.card.new_card? }
|
14
|
+
|
15
|
+
view :watch, :tags=>[:unknown_ok, :no_wrap_comments], :denial=>:blank, :perms=>:none do |args|
|
16
|
+
wrap args do
|
17
|
+
link_args = if card.watched?
|
18
|
+
[card,"following", :off, "stop sending emails about changes to #{card.name}", { :hover_content=> 'unfollow' } ]
|
19
|
+
elsif card.type_watched?
|
20
|
+
[card.type_card, "(following)", :off, "stop sending emails about changes to #{card.type_name} cards", { :hover_content=> 'unfollow' } ]
|
21
|
+
else
|
22
|
+
[card,"follow", :on, "send emails about changes to #{card.name}" ]
|
23
|
+
end
|
24
|
+
watch_link *link_args
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def watch_link watched_card, text, toggle, title, extra={}
|
29
|
+
return '' unless watched_card
|
30
|
+
|
31
|
+
following = Auth.current.fetch :trait=>:following, :new=>{:type=>:pointer}
|
32
|
+
path_hash = {:card=>following, :action=>:update, :toggle=>toggle,
|
33
|
+
:success=>{:id=>card.name, :view=>:watch} }
|
34
|
+
case toggle
|
35
|
+
when :off then path_hash[:drop_item] = watched_card.cardname.url_key
|
36
|
+
when :on then path_hash[:add_item] = watched_card.cardname.url_key
|
37
|
+
end
|
38
|
+
|
39
|
+
link_to "#{text}", path(path_hash),
|
40
|
+
{:class=>"watch-toggle watch-toggle-#{toggle} slotter", :title=>title, :remote=>true, :method=>'post'}.merge(extra)
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
def type_watched?; Auth.current.fetch(:trait=>:following, :new=>{}).include_item? type_card.cardname.url_key end
|
48
|
+
def watched?; Auth.current.fetch(:trait=>:following, :new=>{}).include_item? cardname.url_key end
|
49
|
+
|
50
|
+
|
51
|
+
|
@@ -0,0 +1,294 @@
|
|
1
|
+
REVISIONS_PER_PAGE = Wagn.config.revisions_per_page
|
2
|
+
|
3
|
+
# must be called on all actions and before :set_name, :process_subcards and :validate_delete_children
|
4
|
+
def create_act_and_action
|
5
|
+
@current_act = if @supercard
|
6
|
+
@supercard.current_act || @supercard.acts.build(:ip_address=>Env.ip)
|
7
|
+
else
|
8
|
+
acts.build(:ip_address=>Env.ip)
|
9
|
+
end
|
10
|
+
|
11
|
+
@current_action = actions.build(:action_type=>@action, :draft=>(Env.params['draft'] == 'true') )
|
12
|
+
@current_action.act = @current_act
|
13
|
+
|
14
|
+
# @current_act = (@supercard ? @supercard.current_act : Card::Act.new(:ip_address=>Env.ip))
|
15
|
+
# if !@supercard
|
16
|
+
# @current_act.card = self
|
17
|
+
# end
|
18
|
+
# @current_action = @current_act.actions.build(:action_type=>@action, :draft=>(Env.params['draft'] == 'true') )
|
19
|
+
# @current_action.card = self
|
20
|
+
|
21
|
+
if (@supercard and @supercard !=self)
|
22
|
+
@current_action.super_action = @supercard.current_action
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
event(:create_act_and_action_for_save, :before=>:process_subcards, :on=>:save) { create_act_and_action }
|
29
|
+
event(:create_act_and_action_for_delete, :before =>:validate_delete_children, :on=>:delete) { create_act_and_action }
|
30
|
+
|
31
|
+
|
32
|
+
event :remove_empty_act, :after=>:extend do
|
33
|
+
# if not @supercard and not @current_act.actions.empty?
|
34
|
+
# @current_act.save
|
35
|
+
# end
|
36
|
+
@current_act.reload
|
37
|
+
if not @supercard and @current_act.actions.empty?
|
38
|
+
@current_act.delete
|
39
|
+
@current_act = nil
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
event :rollback_actions, :before=>:approve, :on=>:update, :when=>proc{ |c| Env and Env.params['action_ids'] and Env.params['action_ids'].class == Array} do
|
46
|
+
revision = { :subcards => {}}
|
47
|
+
rollback_actions = Env.params['action_ids'].map do |a_id|
|
48
|
+
Action.fetch(a_id) || nil
|
49
|
+
end
|
50
|
+
rollback_actions.each do |action|
|
51
|
+
if action.card_id == id
|
52
|
+
revision.merge!(revision(action))
|
53
|
+
else
|
54
|
+
revision[:subcards].merge!(revision(action))
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
Env.params['action_ids'] = nil
|
59
|
+
update_attributes! revision
|
60
|
+
rollback_actions.each do |action|
|
61
|
+
action.card.attachment_symlink_to action.id
|
62
|
+
end
|
63
|
+
clear_drafts
|
64
|
+
abort :success
|
65
|
+
end
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
def intrusive_family_acts args={} # all acts with actions on self and on cards that are descendants of self and included in self
|
72
|
+
@intrusive_family_acts ||= begin
|
73
|
+
Act.find_all_with_actions_on( (included_descendant_card_ids << id), args)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def intrusive_acts args={:with_drafts=>true} # all acts with actions on self and on cards included in self
|
78
|
+
@intrusive_acts ||= begin
|
79
|
+
Act.find_all_with_actions_on( (included_card_ids << id), args)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def current_rev_nr
|
84
|
+
@current_rev_nr ||= begin
|
85
|
+
@intrusive_acts.first.actions.last.draft ? @intrusive_acts.size - 1 : @intrusive_acts.size
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def included_card_ids
|
90
|
+
Card::Reference.select(:referee_id).where( :ref_type => 'I', :referer_id=>id ).pluck('referee_id').compact.uniq
|
91
|
+
end
|
92
|
+
|
93
|
+
def descendant_card_ids parent_ids=[id]
|
94
|
+
more_ids = Card.where('left_id IN (?)', parent_ids).pluck('id')
|
95
|
+
|
96
|
+
if !more_ids.empty?
|
97
|
+
more_ids += descendant_card_ids more_ids
|
98
|
+
end
|
99
|
+
more_ids
|
100
|
+
end
|
101
|
+
|
102
|
+
def included_descendant_card_ids
|
103
|
+
included_card_ids & descendant_card_ids
|
104
|
+
end
|
105
|
+
|
106
|
+
format :html do
|
107
|
+
view :history do |args|
|
108
|
+
frame args.merge(:body_class=>"history-slot", :content=>true, :subheader=>_render_revision_subheader ) do
|
109
|
+
_render_revisions
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
view :revisions do |args|
|
114
|
+
page = params['page'] || 1
|
115
|
+
count = card.intrusive_acts.size+1-(page.to_i-1)*REVISIONS_PER_PAGE
|
116
|
+
card.intrusive_acts.page(page).per(REVISIONS_PER_PAGE).map do |act|
|
117
|
+
count -= 1
|
118
|
+
render_act_summary args.merge(:act=>act,:rev_nr=>count)
|
119
|
+
end.join
|
120
|
+
end
|
121
|
+
|
122
|
+
view :revision_subheader do |args|
|
123
|
+
intr = card.intrusive_acts.page(params['page']).per(REVISIONS_PER_PAGE)
|
124
|
+
render_haml :intr=>intr do
|
125
|
+
%{
|
126
|
+
.history-header
|
127
|
+
%span.slotter
|
128
|
+
= paginate intr, :remote=>true
|
129
|
+
%span.history-legend{:style=>"text-align:right;"}
|
130
|
+
%i.fa.fa-circle.diff-green
|
131
|
+
%span
|
132
|
+
= Card::Diff.render_added_chunk("Added")
|
133
|
+
|
|
134
|
+
%i.fa.fa-circle.diff-red
|
135
|
+
%span
|
136
|
+
= Card::Diff.render_deleted_chunk("Deleted")
|
137
|
+
}
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
view :act_summary do |args|
|
142
|
+
render_act :summary, args
|
143
|
+
end
|
144
|
+
|
145
|
+
view :act_expanded do |args|
|
146
|
+
render_act :expanded, args
|
147
|
+
end
|
148
|
+
|
149
|
+
def render_act act_view, args
|
150
|
+
act = (params['act_id'] and Card::Act.find(params['act_id'])) || args[:act]
|
151
|
+
rev_nr = params['rev_nr'] || args[:rev_nr]
|
152
|
+
current_rev_nr = params['current_rev_nr'] || args[:current_rev_nr] || card.current_rev_nr
|
153
|
+
hide_diff = (params["hide_diff"]=="true") || args[:hide_diff]
|
154
|
+
wrap( args.merge(:slot_class=>"revision-#{act.id} history-slot") ) do
|
155
|
+
render_haml :card=>card, :act=>act, :act_view=>act_view,
|
156
|
+
:current_rev_nr=>current_rev_nr, :rev_nr=>rev_nr,
|
157
|
+
:hide_diff=> hide_diff do
|
158
|
+
%{
|
159
|
+
.act{:style=>"clear:both;"}
|
160
|
+
.head
|
161
|
+
.nr
|
162
|
+
= "##{rev_nr}"
|
163
|
+
.title
|
164
|
+
.actor
|
165
|
+
= link_to act.actor.name, wagn_url( act.actor )
|
166
|
+
.time.timeago
|
167
|
+
= time_ago_in_words(act.acted_at)
|
168
|
+
ago
|
169
|
+
- if act.actions.last.draft
|
170
|
+
|
|
171
|
+
%em.info
|
172
|
+
Autosave
|
173
|
+
- if current_rev_nr == rev_nr
|
174
|
+
|
|
175
|
+
%em.info
|
176
|
+
Current
|
177
|
+
- elsif act_view == :expanded
|
178
|
+
= rollback_link act.relevant_actions_for(card, act.actions.last.draft)
|
179
|
+
= show_or_hide_changes_link hide_diff, :act_id=>act.id, :act_view=>act_view, :rev_nr=>rev_nr, :current_rev_nr=>current_rev_nr
|
180
|
+
.toggle
|
181
|
+
= fold_or_unfold_link :act_id=>act.id, :act_view=>act_view, :rev_nr=>rev_nr, :current_rev_nr=>current_rev_nr
|
182
|
+
|
183
|
+
.action-container{:style=>("clear: left;" if act_view == :expanded)}
|
184
|
+
- act.relevant_actions_for(card).each do |action|
|
185
|
+
= send("_render_action_#{ act_view }", :action=>action )
|
186
|
+
}
|
187
|
+
end
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
view :action_summary do |args|
|
192
|
+
render_action :summary, args
|
193
|
+
end
|
194
|
+
|
195
|
+
view :action_expanded do |args|
|
196
|
+
render_action :expanded, args
|
197
|
+
end
|
198
|
+
|
199
|
+
def render_action action_view, args
|
200
|
+
action = args[:action] || card.last_action
|
201
|
+
render_haml :action => action,
|
202
|
+
:action_view=>action_view,
|
203
|
+
:hide_diff=>Env.params["hide_diff"]=="true" || args[:hide_diff] do
|
204
|
+
%{
|
205
|
+
.action
|
206
|
+
.summary
|
207
|
+
%span.ampel
|
208
|
+
%i.fa.fa-circle{:class=>(action.red? ? 'diff-red' : 'diff-invisible')}
|
209
|
+
%i.fa.fa-circle{:class=>(action.green? ? 'diff-green' : 'diff-invisible')}
|
210
|
+
-if action.card == card
|
211
|
+
= wrap_diff :name do
|
212
|
+
- name_changes(action, hide_diff)
|
213
|
+
-else
|
214
|
+
= link_to path(:view=>:related, :related=>{:view=>"history",:name=>action.card.name}), :class=>'slotter name-diff',
|
215
|
+
:slotSelector=>".card-slot.card-frame", :remote=>true do
|
216
|
+
- name_changes(action, hide_diff)
|
217
|
+
-if action.new_type?
|
218
|
+
= wrap_diff :type do
|
219
|
+
- type_changes action, hide_diff
|
220
|
+
-if action.new_content?
|
221
|
+
%i.fa.fa-arrow-right.arrow
|
222
|
+
-if action_view == :summary
|
223
|
+
= wrap_diff :content do
|
224
|
+
- action.card.format.render_content_changes :action=>action, :diff_type=>action_view, :hide_diff=>hide_diff
|
225
|
+
-if action.new_content? and action_view == :expanded
|
226
|
+
.expanded
|
227
|
+
= wrap_diff :content do
|
228
|
+
- action.card.format.render_content_changes :action=>action, :diff_type=>action_view, :hide_diff=>hide_diff
|
229
|
+
}
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
def wrap_diff field, &block
|
234
|
+
content = block.call
|
235
|
+
if content.present?
|
236
|
+
%{
|
237
|
+
<span class="#{field}-diff">
|
238
|
+
#{content}
|
239
|
+
</span>
|
240
|
+
}
|
241
|
+
end
|
242
|
+
end
|
243
|
+
|
244
|
+
def name_changes action, hide_diff=false
|
245
|
+
old_name = (name = action.old_values[:name] and showname(name).to_s)
|
246
|
+
if action.new_name?
|
247
|
+
new_name = showname(action.new_values[:name]).to_s
|
248
|
+
if hide_diff
|
249
|
+
new_name
|
250
|
+
else
|
251
|
+
Card::Diff::DiffBuilder.new(old_name,new_name).complete
|
252
|
+
end
|
253
|
+
else
|
254
|
+
old_name
|
255
|
+
end
|
256
|
+
end
|
257
|
+
|
258
|
+
def type_changes action, hide_diff=false
|
259
|
+
change = hide_diff ? action.new_values[:cardtype] : action.cardtype_diff
|
260
|
+
"(#{change})"
|
261
|
+
end
|
262
|
+
|
263
|
+
view :content_changes do |args|
|
264
|
+
if args[:hide_diff]
|
265
|
+
args[:action].new_values[:content]
|
266
|
+
else
|
267
|
+
args[:action].content_diff(args[:diff_type])
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
271
|
+
def rollback_link action_ids
|
272
|
+
if card.ok?(:update)
|
273
|
+
"| " + link_to('Save as current', path(:action=>:update, :view=>:open, :action_ids=>action_ids,),
|
274
|
+
:class=>'slotter',:slotSelector=>'.card-slot.card-frame', :remote=>true, :method=>:post, :rel=>'nofollow')
|
275
|
+
end
|
276
|
+
end
|
277
|
+
|
278
|
+
def fold_or_unfold_link args
|
279
|
+
if (args[:act_view] == :expanded)
|
280
|
+
toggled_view = :act_summary
|
281
|
+
else
|
282
|
+
toggled_view = :act_expanded
|
283
|
+
end
|
284
|
+
link_to '', path(args.merge(:view=>toggled_view)),
|
285
|
+
:class=>"slotter revision-#{args[:act_id]} #{ args[:act_view]==:expanded ? "arrow-down" : "arrow-right"}",
|
286
|
+
:remote=>true
|
287
|
+
end
|
288
|
+
|
289
|
+
def show_or_hide_changes_link hide_diff, args
|
290
|
+
"| " + link_to_view( (hide_diff ? "Show" : "Hide") + " changes", :act_expanded,
|
291
|
+
:path_opts=>args.merge(:hide_diff=>!hide_diff),
|
292
|
+
:class=>'slotter', :remote=>true )
|
293
|
+
end
|
294
|
+
end
|