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
data/lib/card/env.rb
CHANGED
@@ -8,9 +8,10 @@ class Card
|
|
8
8
|
|
9
9
|
if c = args[:controller]
|
10
10
|
self[:controller] = c
|
11
|
-
self[:session]
|
12
|
-
self[:params]
|
13
|
-
self[:
|
11
|
+
self[:session] = c.request.session
|
12
|
+
self[:params] = c.request.params
|
13
|
+
self[:ip] = c.request.remote_ip
|
14
|
+
self[:ajax] = c.request.xhr? || c.request.params[:simulate_xhr]
|
14
15
|
self[:host] = Wagn.config.override_host || c.request.env['HTTP_HOST']
|
15
16
|
self[:protocol] = Wagn.config.override_protocol || c.request.protocol
|
16
17
|
|
data/lib/card/format.rb
CHANGED
@@ -207,7 +207,7 @@ class Card
|
|
207
207
|
when api_option == :hide ; false
|
208
208
|
# default
|
209
209
|
else ; default==:show
|
210
|
-
end
|
210
|
+
end
|
211
211
|
end
|
212
212
|
|
213
213
|
def show_views args
|
@@ -285,15 +285,13 @@ class Card
|
|
285
285
|
content = card.raw_content || '' if content.nil?
|
286
286
|
|
287
287
|
obj_content = Card::Content===content ? content : Card::Content.new( content, format=self, opts.delete(:content_opts) )
|
288
|
-
|
289
288
|
card.update_references( obj_content, refresh=true ) if card.references_expired # I thik we need this generalized
|
290
|
-
|
291
289
|
obj_content.process_content_object do |chunk_opts|
|
292
290
|
prepare_nest chunk_opts.merge(opts) { yield }
|
293
291
|
end
|
294
292
|
end
|
295
293
|
|
296
|
-
def ok_view view, args={}
|
294
|
+
def ok_view view, args={}
|
297
295
|
return view if args.delete :skip_permissions
|
298
296
|
approved_view = case
|
299
297
|
when @depth >= @@max_depth ; :too_deep # prevent recursion. @depth tracks subformats
|
@@ -435,7 +433,6 @@ class Card
|
|
435
433
|
when @mode == :closed ; !nested_card.known? ? :closed_missing : :closed_content
|
436
434
|
else ; view
|
437
435
|
end
|
438
|
-
|
439
436
|
sub.render view, opts
|
440
437
|
#end
|
441
438
|
end
|
@@ -1,7 +1,10 @@
|
|
1
1
|
|
2
2
|
Description:
|
3
|
-
Generates a migration of database content
|
4
|
-
|
3
|
+
Generates a migration of database content.
|
4
|
+
|
5
|
+
To import database content from a json file move your json file to db/migrate_cards/data
|
6
|
+
and choose as migration name import_<filename>.
|
7
|
+
|
5
8
|
Example:
|
6
9
|
wagn generate card_migration better_commented_search_cards
|
7
10
|
|
@@ -9,4 +12,13 @@ Example:
|
|
9
12
|
|
10
13
|
db/migrate_cards/(migration_number)_(name).rb
|
11
14
|
|
12
|
-
...which is set up to use methods in lib/wagn/
|
15
|
+
...which is set up to use methods in lib/wagn/migration.rb
|
16
|
+
|
17
|
+
|
18
|
+
wagn generate card_migration import_better_search_cards
|
19
|
+
|
20
|
+
This will create:
|
21
|
+
|
22
|
+
db/migrate_cards/(migration_number)_(name).rb
|
23
|
+
|
24
|
+
...which is set up to import data from db/migrate_cards/data/better_search_cards.json
|
@@ -3,8 +3,28 @@ require 'rails/generators/active_record'
|
|
3
3
|
|
4
4
|
class CardMigrationGenerator < ActiveRecord::Generators::Base
|
5
5
|
source_root File.expand_path('../templates', __FILE__)
|
6
|
+
|
7
|
+
class_option 'core', :type => :boolean, aliases: '-c', :default => false, :group => :runtime,
|
8
|
+
desc: "Create card migration for wagn core"
|
6
9
|
|
7
10
|
def create_migration_file
|
8
|
-
|
11
|
+
root = options['core'] ? Wagn::Migration.card_migration_paths.first : Wagn::Migration.deck_card_migration_paths.first
|
12
|
+
set_local_assigns!
|
13
|
+
migration_template @migration_template, File.join( root, "#{file_name}.rb")
|
9
14
|
end
|
10
|
-
|
15
|
+
|
16
|
+
protected
|
17
|
+
|
18
|
+
# sets the default migration template that is being used for the generation of the migration
|
19
|
+
# depending on the arguments which would be sent out in the command line, the migration template
|
20
|
+
# and the table name instance variables are setup.
|
21
|
+
|
22
|
+
def set_local_assigns!
|
23
|
+
@migration_template = "card_migration.erb"
|
24
|
+
case file_name
|
25
|
+
when /^(import)_(.*)(?:\.json)?/
|
26
|
+
@migration_action = $1
|
27
|
+
@json_filename = "#{$2}.json"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -1,10 +1,9 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
|
-
class <%= migration_class_name %> <
|
4
|
-
include Wagn::MigrationHelper
|
3
|
+
class <%= migration_class_name %> < Wagn::Migration
|
5
4
|
def up
|
6
|
-
|
7
|
-
|
8
|
-
end
|
5
|
+
<% if @migration_action == 'import' -%>
|
6
|
+
import_json "<%= @json_filename %>"
|
7
|
+
<% end -%>
|
9
8
|
end
|
10
9
|
end
|
@@ -2,7 +2,7 @@ class FormatGenerator < Rails::Generators::NamedBase
|
|
2
2
|
source_root File.expand_path('../templates', __FILE__)
|
3
3
|
|
4
4
|
def create_files
|
5
|
-
template 'format_template.erb', "mod/
|
6
|
-
template 'format_spec_template.erb', "spec/mod/
|
5
|
+
template 'format_template.erb', "mod/05_standard/format/#{file_name}_format.rb"
|
6
|
+
template 'format_spec_template.erb', "spec/mod/05_standard/format/#{file_name}_format_spec.rb"
|
7
7
|
end
|
8
8
|
end
|
data/lib/card/mailer.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
require 'open-uri'
|
3
3
|
|
4
|
+
|
4
5
|
class Card
|
5
6
|
class Mailer < ActionMailer::Base
|
6
7
|
|
@@ -11,108 +12,28 @@ class Card
|
|
11
12
|
default @@defaults
|
12
13
|
|
13
14
|
include Wagn::Location
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
mail_from( { :to=>account.email, :subject=>"verification link for #{@site}" }, confirm_from )
|
24
|
-
end
|
25
|
-
|
26
|
-
def password_reset account
|
27
|
-
@site = Card.setting :title
|
28
|
-
@link = wagn_url "/update/#{account.cardname.url_key}?reset_token=#{account.token_card.refresh(true).content}"
|
29
|
-
@expiry = Wagn.config.token_expiry
|
30
|
-
|
31
|
-
reset_from = token_emails_from(account)
|
32
|
-
mail_from( { :to=>account.email, :subject=>"verification link for #{@site}" }, reset_from )
|
33
|
-
end
|
34
|
-
|
35
|
-
def signup_alert invite_request
|
36
|
-
@site = Card.setting :title
|
37
|
-
@card = invite_request
|
38
|
-
@email= invite_request.account.email
|
39
|
-
@name = invite_request.name
|
40
|
-
@content = invite_request.content
|
41
|
-
@request_url = wagn_url invite_request
|
42
|
-
@requests_url = wagn_url Card[:signup]
|
43
|
-
|
44
|
-
args = {
|
45
|
-
:to => Card.setting('*request+*to'),
|
46
|
-
:subject => "#{invite_request.name} signed up for #{@site}",
|
47
|
-
:content_type => 'text/html',
|
48
|
-
}
|
49
|
-
mail_from args, Card.setting('*request+*from') || "#{@name} <#{@email}>"
|
50
|
-
end
|
51
|
-
|
52
|
-
|
53
|
-
def change_notice cd_with_acct, card, action, watched, subedits=[], updated_card=nil
|
54
|
-
cd_with_acct = Card[cd_with_acct] unless Card===cd_with_acct
|
55
|
-
email = cd_with_acct.account.email
|
56
|
-
#warn "change_notice( #{cd_with_acct}, #{email}, #{card.inspect}, #{action.inspect}, #{watched.inspect} Uc:#{updated_card.inspect}...)"
|
57
|
-
|
58
|
-
updated_card ||= card
|
59
|
-
@card = card
|
60
|
-
@updater = updated_card.updater.name
|
61
|
-
@action = action
|
62
|
-
@subedits = subedits
|
63
|
-
@card_url = wagn_url card
|
64
|
-
@change_url = wagn_url "card/changes/#{card.cardname.url_key}"
|
65
|
-
@unwatch_url = wagn_url "card/watch/#{watched.to_name.url_key}?toggle=off"
|
66
|
-
@udpater_url = wagn_url card.updater
|
67
|
-
@watched = (watched == card.cardname ? "#{watched}" : "#{watched} cards")
|
68
|
-
|
69
|
-
args = {
|
70
|
-
:to => email,
|
71
|
-
:subject => "[#{Card.setting :title} notice] #{@updater} #{action} \"#{card.name}\"" ,
|
72
|
-
:content_type => 'text/html',
|
73
|
-
}
|
74
|
-
mail_from args, Card[Card::WagnBotID].account.email
|
75
|
-
end
|
76
|
-
|
77
|
-
def flexmail config
|
78
|
-
@message = config.delete(:message)
|
79
|
-
|
80
|
-
if attachment_list = config.delete(:attach) and !attachment_list.empty?
|
81
|
-
attachment_list.each_with_index do |cardname, i|
|
82
|
-
if c = Card[ cardname ] and c.respond_to?(:attach)
|
83
|
-
attachments["attachment-#{i + 1}.#{c.attach_extension}"] = File.read( c.attach.path )
|
84
|
-
end
|
85
|
-
end
|
15
|
+
|
16
|
+
class << self
|
17
|
+
def new_mail(*args, &block)
|
18
|
+
mail = Mail.new(args, &block)
|
19
|
+
method = Card::Mailer.delivery_method
|
20
|
+
mail.delivery_method(method, Card::Mailer.send(:"#{method}_settings"))
|
21
|
+
mail.perform_deliveries = Card::Mailer.perform_deliveries
|
22
|
+
mail.raise_delivery_errors = Card::Mailer.raise_delivery_errors
|
23
|
+
mail
|
86
24
|
end
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
from_card = Card[from_card_id]
|
98
|
-
"#{from_card.name} <#{from_card.account.email}>"
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
def mail_from args, from
|
103
|
-
from_name, from_email = (from =~ /(.*)\<(.*)>/) ? [$1.strip, $2] : [nil, from]
|
104
|
-
|
105
|
-
if default_from=@@defaults[:from]
|
106
|
-
args[:from] = !from_email ? default_from : "#{from_name || from_email} <#{default_from}>"
|
107
|
-
args[:reply_to] ||= from
|
108
|
-
else
|
109
|
-
args[:from] = from
|
25
|
+
|
26
|
+
def layout message
|
27
|
+
%{
|
28
|
+
<!DOCTYPE html>
|
29
|
+
<html>
|
30
|
+
<body>
|
31
|
+
#{message}
|
32
|
+
</body>
|
33
|
+
</html>
|
34
|
+
}
|
110
35
|
end
|
111
|
-
|
112
|
-
args[:template_path] = 'mailer'
|
113
|
-
mail args
|
114
36
|
end
|
115
|
-
|
116
37
|
end
|
117
|
-
|
118
38
|
end
|
39
|
+
|
data/lib/card/name.rb
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
# -*- encoding : utf-8 -*-
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
2
|
require 'smart_name'
|
3
3
|
|
4
4
|
class Card
|
5
5
|
class Name < SmartName
|
6
6
|
|
7
7
|
self.params = Card::Env # yuck!
|
8
|
-
self.session = proc { Auth.current.name }
|
8
|
+
self.session = proc { Card::Auth.current.name }
|
9
9
|
self.banned_array = ['/']
|
10
10
|
|
11
11
|
def star?
|
@@ -32,7 +32,8 @@ class Card
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def trait tag_code
|
35
|
-
trait_name( tag_code )
|
35
|
+
name = trait_name( tag_code )
|
36
|
+
name ? name.s : ( raise Wagn::NotFound, "unknown codename: #{tag_code}" )
|
36
37
|
end
|
37
38
|
end
|
38
39
|
end
|
data/lib/card/query.rb
CHANGED
@@ -58,10 +58,10 @@ class Card::Query
|
|
58
58
|
|
59
59
|
|
60
60
|
class SqlStatement
|
61
|
-
attr_accessor :fields, :
|
61
|
+
attr_accessor :fields, :tables, :joins, :conditions, :group, :order, :limit, :offset
|
62
62
|
|
63
63
|
def initialize
|
64
|
-
@fields, @
|
64
|
+
@fields, @joins, @conditions = [],[],[],[]
|
65
65
|
@tables, @group, @order, @limit, @offset = "","","","",""
|
66
66
|
end
|
67
67
|
|
data/lib/card/query/card_spec.rb
CHANGED
@@ -4,7 +4,7 @@ class Card
|
|
4
4
|
class CardSpec < Spec
|
5
5
|
|
6
6
|
ATTRIBUTES = {
|
7
|
-
:basic => %w{ name type_id content id key updater_id left_id right_id creator_id updater_id codename },
|
7
|
+
:basic => %w{ name type_id content id key updater_id left_id right_id creator_id updater_id codename },
|
8
8
|
:relational => %w{ type part left right editor_of edited_by last_editor_of last_edited_by creator_of created_by member_of member },
|
9
9
|
:plus_relational => %w{ plus left_plus right_plus },
|
10
10
|
:ref_relational => %w{ refer_to referred_to_by link_to linked_to_by include included_by },
|
@@ -200,15 +200,15 @@ class Card
|
|
200
200
|
def right val
|
201
201
|
merge field(:right_id) => id_or_subspec(val)
|
202
202
|
end
|
203
|
-
|
203
|
+
|
204
204
|
def editor_of val
|
205
|
-
|
205
|
+
action_spec :actor_id, "card_actions.card_id", val
|
206
206
|
end
|
207
207
|
|
208
208
|
def edited_by val
|
209
|
-
|
209
|
+
action_spec "card_actions.card_id", :actor_id, val
|
210
210
|
end
|
211
|
-
|
211
|
+
|
212
212
|
def last_editor_of val
|
213
213
|
merge field(:id) => subspec(val, :return=>'updater_id')
|
214
214
|
end
|
@@ -291,7 +291,7 @@ class Card
|
|
291
291
|
|
292
292
|
def sort val
|
293
293
|
return nil if @parent
|
294
|
-
val[:return] = val[:return] ? safe_sql(val[:return]) : '
|
294
|
+
val[:return] = val[:return] ? safe_sql(val[:return]) : 'db_content'
|
295
295
|
@mods[:sort] = "t_sort.#{val[:return]}"
|
296
296
|
item = val.delete(:item) || 'left'
|
297
297
|
|
@@ -326,10 +326,8 @@ class Card
|
|
326
326
|
|
327
327
|
|
328
328
|
cond = begin
|
329
|
-
join_alias = add_revision_join
|
330
|
-
# FIXME: OMFG this is ugly
|
331
329
|
val_list = val.split(/\s+/).map do |v|
|
332
|
-
name_or_content = ["replace(#{self.table_alias}.name,'+',' ')","#{
|
330
|
+
name_or_content = ["replace(#{self.table_alias}.name,'+',' ')","#{self.table_alias}.db_content"].map do |field|
|
333
331
|
%{#{field} #{ cxn.match quote("[[:<:]]#{v}[[:>:]]") }}
|
334
332
|
end
|
335
333
|
"(#{name_or_content.join ' OR '})"
|
@@ -374,10 +372,6 @@ class Card
|
|
374
372
|
join_alias
|
375
373
|
end
|
376
374
|
|
377
|
-
def add_revision_join
|
378
|
-
add_join(:rev, :card_revisions, :current_revision_id, :id)
|
379
|
-
end
|
380
|
-
|
381
375
|
def field name
|
382
376
|
@fields ||= {}
|
383
377
|
@fields[name] ||= 0
|
@@ -394,13 +388,19 @@ class Card
|
|
394
388
|
cardspec = CardSpec.build( args )
|
395
389
|
merge field(:cond) => cardspec.merge(val)
|
396
390
|
self.joins.merge! cardspec.joins
|
397
|
-
self.sql.relevance_fields += cardspec.sql.relevance_fields
|
398
391
|
end
|
399
392
|
|
400
|
-
|
401
|
-
|
393
|
+
# def revision_spec(field, linkfield, val)
|
394
|
+
# card_select = CardSpec.build(:_parent=>self, :return=>'id').merge(val).to_sql
|
395
|
+
# add_join :ed, "(select distinct #{field} from card_revisions where #{linkfield} in #{card_select})", :id, field
|
396
|
+
# end
|
397
|
+
|
398
|
+
|
399
|
+
def action_spec(field, linkfield, val)
|
402
400
|
card_select = CardSpec.build(:_parent=>self, :return=>'id').merge(val).to_sql
|
403
|
-
|
401
|
+
sql = "(SELECT DISTINCT #{field} AS join_card_id FROM card_acts INNER JOIN card_actions ON card_acts.id = card_act_id "
|
402
|
+
sql += " WHERE #{linkfield} IN #{card_select} AND (draft=0 OR draft IS NULL))"
|
403
|
+
add_join :ac, sql, :id, :join_card_id
|
404
404
|
end
|
405
405
|
|
406
406
|
|
@@ -472,9 +472,7 @@ class Card
|
|
472
472
|
when :raw; "#{table_alias}.*"
|
473
473
|
when :card; "#{table_alias}.name"
|
474
474
|
when :count; "coalesce(count(*),0) as count"
|
475
|
-
when :content
|
476
|
-
join_alias = add_revision_join
|
477
|
-
"#{join_alias}.content"
|
475
|
+
when :content; "#{table_alias}.db_content"
|
478
476
|
else
|
479
477
|
ATTRIBUTES[field.to_sym]==:basic ? "#{table_alias}.#{field}" : safe_sql(field)
|
480
478
|
end
|
@@ -500,16 +498,8 @@ class Card
|
|
500
498
|
when "update"; "#{table_alias}.updated_at"
|
501
499
|
when "create"; "#{table_alias}.created_at"
|
502
500
|
when /^(name|alpha)$/; "LOWER( #{table_alias}.key )"
|
503
|
-
when 'content'
|
504
|
-
|
505
|
-
"lower(#{join_alias}.content)"
|
506
|
-
when "relevance"
|
507
|
-
if !sql.relevance_fields.empty?
|
508
|
-
sql.fields << sql.relevance_fields
|
509
|
-
"name_rank desc, content_rank"
|
510
|
-
else
|
511
|
-
"#{table_alias}.updated_at"
|
512
|
-
end
|
501
|
+
when 'content'; "#{table_alias}.db_content"
|
502
|
+
when "relevance"; "#{table_alias}.updated_at" #deprecated
|
513
503
|
else
|
514
504
|
safe_sql(key)
|
515
505
|
end
|
@@ -49,12 +49,11 @@ class Card::Query
|
|
49
49
|
field, v = case field
|
50
50
|
when "cond"; return "(#{sqlize(v)})"
|
51
51
|
when "name"; ["#{table}.key", [v].flatten.map(&:to_name).map(&:key)]
|
52
|
-
when "content";
|
53
|
-
["#{join_alias}.content", v]
|
52
|
+
when "content"; ["#{table}.db_content", v]
|
54
53
|
else; ["#{table}.#{safe_sql(field)}", v]
|
55
54
|
end
|
56
55
|
|
57
|
-
v = v[0] if Array===v && v.length==1
|
56
|
+
v = v[0] if Array===v && v.length==1 && op != 'in'
|
58
57
|
if op=='~'
|
59
58
|
cxn, v = match_prep(v,@cardspec)
|
60
59
|
%{#{field} #{cxn.match(sqlize(v))}}
|