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
@@ -0,0 +1,27 @@
|
|
1
|
+
def send_action_mails args
|
2
|
+
setting = "on_#{args[:on]}".to_sym
|
3
|
+
email_templates_for( setting ) do |mailcard|
|
4
|
+
mailcard.deliver( context: self )
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
def email_templates_for setting
|
9
|
+
|
10
|
+
if email_templates = @email_template_cache ||
|
11
|
+
( event_card = self.rule_card(setting) and event_card.extended_item_cards )
|
12
|
+
email_templates.each do |mailcard|
|
13
|
+
yield(mailcard)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
[:create, :update, :delete].each do |action|
|
19
|
+
event "observer_#{action}".to_sym, :after=>:extend, :on=>action do
|
20
|
+
self.send_action_mails :on=>action
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
event :cache_delete_email_templates, :after=>:approve, :on=>:delete do
|
25
|
+
event_card = self.rule_card(:on_delete)
|
26
|
+
@email_template_cache = event_card && event_card.extended_item_cards
|
27
|
+
end
|
@@ -14,7 +14,7 @@ format :html do
|
|
14
14
|
end
|
15
15
|
|
16
16
|
view :layout, :perms=>:none do |args|
|
17
|
-
process_content get_layout_content, :content_opts=>{ :chunk_list=>:
|
17
|
+
process_content get_layout_content, :content_opts=>{ :chunk_list=>:references }
|
18
18
|
end
|
19
19
|
|
20
20
|
view :content do |args|
|
@@ -96,6 +96,7 @@ format :html do
|
|
96
96
|
=end
|
97
97
|
|
98
98
|
view :menu, :tags=>:unknown_ok do |args|
|
99
|
+
return _render_template_closer if args[:menu_hack] == :template_closer
|
99
100
|
disc_tagname = Card.fetch(:discussion, :skip_modules=>true).cardname
|
100
101
|
disc_card = unless card.new_card? or card.junction? && card.cardname.tag_name.key == disc_tagname.key
|
101
102
|
Card.fetch "#{card.name}+#{disc_tagname}", :skip_virtual=>true, :skip_modules=>true, :new=>{}
|
@@ -348,7 +349,6 @@ format :html do
|
|
348
349
|
end
|
349
350
|
|
350
351
|
|
351
|
-
|
352
352
|
view :edit_in_form, :perms=>:update, :tags=>:unknown_ok do |args|
|
353
353
|
eform = form_for_multi
|
354
354
|
content = content_field eform, args.merge( :nested=>true )
|
@@ -372,19 +372,6 @@ format :html do
|
|
372
372
|
frame args do
|
373
373
|
subformat( current_set ).render_content
|
374
374
|
end
|
375
|
-
|
376
|
-
=begin
|
377
|
-
#{
|
378
|
-
if card.accountable? && !card.account
|
379
|
-
%{
|
380
|
-
<div class="new-account-link">
|
381
|
-
#{ link_to %{Add a sign-in account for "#{card.name}"}, path(:view=>:new_account),
|
382
|
-
:class=>'slotter new-account-link', :remote=>true }
|
383
|
-
</div>
|
384
|
-
}
|
385
|
-
end
|
386
|
-
}
|
387
|
-
=end
|
388
375
|
end
|
389
376
|
|
390
377
|
|
@@ -413,10 +400,9 @@ format :html do
|
|
413
400
|
args[:help_text]
|
414
401
|
else
|
415
402
|
setting = card.new_card? ? [ :add_help, { :fallback => :help } ] : :help
|
416
|
-
|
417
403
|
if help_card = card.rule_card( *setting ) and help_card.ok? :read
|
418
404
|
with_inclusion_mode :normal do
|
419
|
-
process_content _render_raw( args.merge :structure=>help_card.name )
|
405
|
+
process_content _render_raw( args.merge :structure=>help_card.name ), :content_opts=>{ :chunk_list=>:references }
|
420
406
|
# render help card with current card's format so current card's context is used in help card inclusions
|
421
407
|
end
|
422
408
|
end
|
@@ -431,12 +417,20 @@ format :html do
|
|
431
417
|
end
|
432
418
|
|
433
419
|
view :conflict, :error_code=>409 do |args|
|
434
|
-
|
420
|
+
# FIXME: hack to get the conflicted update as a proper act for the diff view
|
421
|
+
card.current_act.save
|
422
|
+
action = card.actions.last
|
423
|
+
action.card_act_id = card.current_act.id
|
424
|
+
action.draft = true
|
425
|
+
action.save
|
426
|
+
card.store_changes
|
427
|
+
|
435
428
|
wrap args.merge( :slot_class=>'error-view' ) do
|
436
|
-
%{<strong>Conflict!</strong><span class="new-current-revision-id">#{
|
437
|
-
<div>#{ link_to_page
|
429
|
+
%{<strong>Conflict!</strong><span class="new-current-revision-id">#{card.last_action_id}</span>
|
430
|
+
<div>#{ link_to_page card.last_action.act.actor.name } has also been making changes.</div>
|
438
431
|
<div>Please examine below, resolve above, and re-submit.</div>
|
439
|
-
#{ wrap do |args|
|
432
|
+
#{ wrap do |args| _render_act_expanded :act=>card.current_act, :current_rev_nr => 0 end }
|
433
|
+
}
|
440
434
|
end
|
441
435
|
end
|
442
436
|
|
@@ -453,12 +447,11 @@ format :html do
|
|
453
447
|
|
454
448
|
|
455
449
|
view :last_action do |args|
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
end
|
450
|
+
action = case card.last_action.action_type
|
451
|
+
when :create; 'added'
|
452
|
+
when :update; link_to('edited', path(:view=>:history), :class=>'last-edited', :rel=>'nofollow')
|
453
|
+
when :delete; 'deleted'
|
454
|
+
end
|
462
455
|
%{
|
463
456
|
<span class="last-update">
|
464
457
|
#{ action }
|
@@ -470,7 +463,6 @@ format :html do
|
|
470
463
|
end
|
471
464
|
|
472
465
|
view :errors, :perms=>:none do |args|
|
473
|
-
#Rails.logger.debug "errors #{args.inspect}, #{card.inspect}, #{caller[0..3]*", "}"
|
474
466
|
if card.errors.any?
|
475
467
|
title = %{ Problems #{%{ with #{card.name} } unless card.name.blank?} }
|
476
468
|
frame args.merge( :title=>title ) do
|
@@ -517,6 +509,7 @@ format :html do
|
|
517
509
|
or_signup = if Card.new(:type_id=>Card::SignupID).ok? :create
|
518
510
|
"or #{ link_to 'sign up', wagn_url('account/signup') }"
|
519
511
|
end
|
512
|
+
save_interrupted_action(request.env['REQUEST_URI'])
|
520
513
|
"You have to #{ link_to 'sign in', wagn_url(':signin') } #{or_signup} #{to_task}"
|
521
514
|
end
|
522
515
|
|
File without changes
|
File without changes
|
@@ -1,5 +1,6 @@
|
|
1
1
|
|
2
2
|
include All::Permissions::Accounts
|
3
|
+
include Wagn::Location
|
3
4
|
|
4
5
|
card_accessor :email
|
5
6
|
card_accessor :password
|
@@ -23,6 +24,24 @@ def authenticate_by_token val
|
|
23
24
|
end
|
24
25
|
|
25
26
|
|
27
|
+
format do
|
28
|
+
view :verify_url do |args|
|
29
|
+
wagn_url "/update/#{card.cardname.left_name.url_key}?token=#{card.token}"
|
30
|
+
end
|
31
|
+
|
32
|
+
view :verify_days do |args|
|
33
|
+
( Wagn.config.token_expiry / 1.day ).to_s
|
34
|
+
end
|
35
|
+
|
36
|
+
view :reset_password_url do |args|
|
37
|
+
wagn_url "/update/#{card.cardname.url_key}?reset_token=#{card.token_card.refresh(true).content}"
|
38
|
+
end
|
39
|
+
|
40
|
+
view :reset_password_days do |args|
|
41
|
+
( Wagn.config.token_expiry / 1.day ).to_s
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
26
45
|
|
27
46
|
format :html do
|
28
47
|
|
@@ -60,7 +79,7 @@ event :set_default_salt, :on=>:create, :before=>:process_subcards do
|
|
60
79
|
end
|
61
80
|
|
62
81
|
event :set_default_status, :on=>:create, :before=>:process_subcards do
|
63
|
-
default_status = ( Auth.
|
82
|
+
default_status = ( Auth.needs_setup? ? 'active' : 'pending' )
|
64
83
|
subcards["+#{Card[:status].name}"] = { :content => default_status }
|
65
84
|
end
|
66
85
|
|
@@ -110,17 +129,44 @@ event :reset_token do
|
|
110
129
|
end
|
111
130
|
|
112
131
|
|
113
|
-
event :
|
114
|
-
|
115
|
-
Mailer.confirmation_email( self ).deliver
|
116
|
-
end
|
132
|
+
event :send_account_verification_email, :on=>:create, :after=>:extend, :when=>proc{ |c| c.token.present? } do
|
133
|
+
Card[:verification_email].deliver( :context => self, :to => self.email )
|
117
134
|
end
|
118
135
|
|
119
136
|
event :send_reset_password_token do
|
120
|
-
|
121
|
-
|
137
|
+
Auth.as_bot do
|
138
|
+
token_card.update_attributes! :content => generate_token
|
139
|
+
end
|
140
|
+
Card[:password_reset_email].deliver( :context => self, :to => self.email )
|
122
141
|
end
|
123
142
|
|
124
143
|
def ok_to_read
|
125
144
|
is_own_account? ? true : super
|
126
145
|
end
|
146
|
+
|
147
|
+
|
148
|
+
def changes_visible? act
|
149
|
+
act.relevant_actions_for(act.card).each do |action|
|
150
|
+
return true if action.card.ok? :read
|
151
|
+
end
|
152
|
+
return false
|
153
|
+
end
|
154
|
+
|
155
|
+
def send_change_notice act, followed_card_name
|
156
|
+
if changes_visible?(act)
|
157
|
+
Card[:follower_notification_email].deliver(
|
158
|
+
:context => act.card,
|
159
|
+
:to => email,
|
160
|
+
:follower => left.name,
|
161
|
+
:followed => followed_card_name,
|
162
|
+
)
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
|
167
|
+
format :email do
|
168
|
+
view :mail do |args|
|
169
|
+
args[:to] ||= card.email
|
170
|
+
super args
|
171
|
+
end
|
172
|
+
end
|
@@ -17,7 +17,7 @@ event :encrypt_password, :on=>:save, :after=>:process_subcards do
|
|
17
17
|
#errors.add :password, 'need a valid salt'
|
18
18
|
# turns out we have a lot of existing account without a salt. not sure when that broke??
|
19
19
|
end
|
20
|
-
if
|
20
|
+
if db_content_changed?
|
21
21
|
unless Card::Env[:no_password_encryptions] # hack for import - fix with api for ignoring events
|
22
22
|
self.content = Auth.encrypt content, salt
|
23
23
|
end
|
File without changes
|
@@ -10,7 +10,7 @@ view :core do |args|
|
|
10
10
|
%{<table class="show-cache">
|
11
11
|
<tr><th>Field</th><th>Cache Val</th><th>Database Val</th></tr>
|
12
12
|
#{
|
13
|
-
[ :name, :updated_at, :updater_id, :
|
13
|
+
[ :name, :updated_at, :updater_id, :content ].map do |field|
|
14
14
|
%{<tr>#{ [ field, cache_card.send(field), db_card.send(field) ].map() { |cell| "<td>#{cell}</td>"}.join }</tr>}
|
15
15
|
end.join
|
16
16
|
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
format :html do
|
3
2
|
|
4
3
|
view :closed_rule, :tags=>:unknown_ok do |args|
|
@@ -51,7 +50,7 @@ format :html do
|
|
51
50
|
current_rule.assign_attributes card_args
|
52
51
|
current_rule.include_set_modules
|
53
52
|
end
|
54
|
-
set_selected = card_args[:name].to_name.
|
53
|
+
set_selected = card_args[:name].to_name.left
|
55
54
|
edit_mode = true
|
56
55
|
end
|
57
56
|
|
@@ -149,11 +148,13 @@ format :html do
|
|
149
148
|
|
150
149
|
<div class="card-editor">
|
151
150
|
#{
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
151
|
+
if card.right.rule_type_editable
|
152
|
+
fieldset 'type', type_field(
|
153
|
+
:href => path(:card=>open_rule, :view=>:open_rule, :type_reload=>true),
|
154
|
+
:class => 'type-field rule-type-field live-type-field',
|
155
|
+
'data-remote' => true
|
156
|
+
), :editor=>'type'
|
157
|
+
end
|
157
158
|
}
|
158
159
|
|
159
160
|
#{ fieldset 'content', content_field( form, args.merge(:skip_rev_id=>true) ), :editor=>'content' }
|
File without changes
|
File without changes
|
@@ -6,7 +6,7 @@ event :admin_tasks, :on=>:update, :before=>:approve do
|
|
6
6
|
when :clear_cache ; Wagn::Cache.reset_global
|
7
7
|
when :repair_references ; Card::Reference.repair_all
|
8
8
|
when :empty_trash ; Card.empty_trash
|
9
|
-
when :delete_old_revisions ; Card::
|
9
|
+
when :delete_old_revisions ; Card::Action.delete_old
|
10
10
|
when :delete_old_sessions
|
11
11
|
if months = Env.params[:months].to_i and months > 0
|
12
12
|
ActiveRecord::SessionStore::Session.delete_all ["updated_at < ?", months.months.ago]
|
File without changes
|
@@ -29,7 +29,7 @@ format :html do
|
|
29
29
|
def head_buttons
|
30
30
|
bits = []
|
31
31
|
[:favicon, :logo].each do |name|
|
32
|
-
if c = Card[name] and c.type_id == ImageID and !c.
|
32
|
+
if c = Card[name] and c.type_id == ImageID and !c.db_content.blank?
|
33
33
|
bits << %{<link rel="shortcut icon" href="#{ subformat(c)._render_source :size=>:icon }" />}
|
34
34
|
break
|
35
35
|
end
|
@@ -48,13 +48,14 @@ format :html do
|
|
48
48
|
bits << %{<link rel="alternate" type="application/rss+xml" title="RSS" href=#{page_path root.card.name, opts} />}
|
49
49
|
end
|
50
50
|
end
|
51
|
+
bits << '<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">'
|
51
52
|
bits.join "\n "
|
52
53
|
end
|
53
54
|
|
54
55
|
def head_stylesheets
|
55
56
|
manual_style = params[:style]
|
56
57
|
style_card = Card[manual_style] if manual_style
|
57
|
-
style_card ||= card.rule_card :style
|
58
|
+
style_card ||= root.card.rule_card :style
|
58
59
|
|
59
60
|
@css_path = if params[:debug] == 'style'
|
60
61
|
page_path( style_card.name, :item => :import, :format => :css)
|
@@ -76,13 +77,27 @@ format :html do
|
|
76
77
|
c=Card[:double_click] and !Card.toggle c.content and varvals << 'wagn.noDoubleClick=true'
|
77
78
|
@css_path and varvals << "wagn.cssPath='#{@css_path}'"
|
78
79
|
|
79
|
-
|
80
|
+
manual_script = params[:script]
|
81
|
+
script_card = Card[manual_script] if manual_script
|
82
|
+
script_card ||= root.card.rule_card :script
|
83
|
+
|
84
|
+
@js_tag = if params[:debug] == 'script'
|
85
|
+
script_card.format(:format=>:js).render_core :item => :include_tag
|
86
|
+
elsif script_card
|
87
|
+
javascript_include_tag script_card.machine_output_url
|
88
|
+
end
|
89
|
+
|
80
90
|
ie9_card = Card[:script_html5shiv_printshiv]
|
81
|
-
%(#{ javascript_tag do varvals * ';' end }
|
82
|
-
#{
|
91
|
+
%(#{ javascript_tag do varvals * ';' end }
|
92
|
+
#{ @js_tag if @js_tag }
|
83
93
|
<!--[if lt IE 9]>#{ javascript_include_tag ie9_card.machine_output_url if ie9_card }<![endif]-->
|
84
94
|
#{ javascript_tag { "wagn.setTinyMCEConfig('#{ escape_javascript Card.setting(:tiny_mce).to_s }')" } }
|
85
|
-
#{ google_analytics_head_javascript }
|
95
|
+
#{ google_analytics_head_javascript }
|
96
|
+
<script type="text/javascript">
|
97
|
+
$('document').ready(function() {
|
98
|
+
$('.card-slot').trigger('slotReady');
|
99
|
+
})
|
100
|
+
</script>)
|
86
101
|
end
|
87
102
|
|
88
103
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -21,8 +21,8 @@ format :html do
|
|
21
21
|
<td>#{link_to 'delete all', wagn_path( 'update/:all?task=empty_trash' )}</td>
|
22
22
|
</tr>
|
23
23
|
<tr>
|
24
|
-
<td>
|
25
|
-
<td>#{ Card::
|
24
|
+
<td>actions</td>
|
25
|
+
<td>#{ Card::Action.count }</td>
|
26
26
|
<td>#{link_to 'delete old', wagn_path( 'update/:all?task=delete_old_revisions' ) }</td>
|
27
27
|
</tr>
|
28
28
|
<tr><td>references</td>
|
File without changes
|
File without changes
|
@@ -16,14 +16,12 @@ format :html do
|
|
16
16
|
|
17
17
|
view :watch do |args|
|
18
18
|
wrap args do
|
19
|
-
|
20
|
-
|
21
|
-
["following", :off, "stop sending emails about changes to #{card.cardname}", { :hover_content=> 'unfollow' } ]
|
19
|
+
link_args = if card.watched?
|
20
|
+
[card, "following", :off, "stop sending emails", { :hover_content=> 'unfollow' } ]
|
22
21
|
else
|
23
|
-
["follow all", :on, "send emails
|
22
|
+
[card, "follow all", :on, "send emails"]
|
24
23
|
end
|
25
|
-
link_args[
|
26
|
-
#type_link +
|
24
|
+
link_args[3] += " about changes to #{card.cardname} cards"
|
27
25
|
watch_link( *link_args )
|
28
26
|
end
|
29
27
|
end
|
File without changes
|