card 1.16.6 → 1.16.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +234 -49
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/VERSION +1 -1
- data/config/initializers/mime_types.rb +3 -3
- data/config/initializers/notification.rb +1 -1
- data/db/migrate/20121118115000_update_link_type.rb +8 -8
- data/db/migrate/20130411210957_update_codenames.rb +2 -2
- data/db/migrate/20140822073704_create_new_revision_tables.rb +12 -13
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +16 -16
- data/db/migrate/20141121172918_rename_card_migration_table.rb +4 -4
- data/db/migrate_core_cards/20130419215612_import_help_text.rb +3 -3
- data/db/migrate_core_cards/20130823192433_add_style_cards.rb +45 -47
- data/db/migrate_core_cards/20130910183318_move_styles_to_content.rb +1 -1
- data/db/migrate_core_cards/20130920214038_jsonize_tinymce.rb +3 -3
- data/db/migrate_core_cards/20130920291703_update_stylesheets.rb +3 -3
- data/db/migrate_core_cards/20130927191728_account_events.rb +6 -6
- data/db/migrate_core_cards/20131016172445_common_css_patch.rb +1 -1
- data/db/migrate_core_cards/20140110193325_reset_account_request_type.rb +1 -1
- data/db/migrate_core_cards/20140307231621_user_data_to_cards.rb +19 -19
- data/db/migrate_core_cards/20140317035504_account_requests_to_signups.rb +11 -12
- data/db/migrate_core_cards/20140512155840_add_script_cards.rb +35 -36
- data/db/migrate_core_cards/20140629222005_add_email_cards.rb +55 -55
- data/db/migrate_core_cards/20140725180118_config_card_updates.rb +1 -1
- data/db/migrate_core_cards/20141111083921_delete_machine_output.rb +2 -2
- data/db/migrate_core_cards/20141115034214_config_descriptions_etc.rb +3 -3
- data/db/migrate_core_cards/20141120120605_fix_notification_html_message.rb +2 -2
- data/db/migrate_core_cards/20141204061304_watchers_to_following.rb +8 -8
- data/db/migrate_core_cards/20141208162106_add_ace_script.rb +2 -2
- data/db/migrate_core_cards/20141216155251_add_more_following_cards.rb +16 -16
- data/db/migrate_core_cards/20141230204340_uri_codename.rb +1 -1
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +19 -19
- data/db/migrate_core_cards/20150220134731_following_to_follow_rule.rb +3 -3
- data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +15 -15
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +11 -11
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +1 -1
- data/db/migrate_core_cards/20150429090551_search_card_context.rb +1 -1
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +3 -3
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +1 -1
- data/db/migrate_core_cards/20150528084659_add_session_cardtype.rb +4 -4
- data/db/migrate_core_cards/20150601133433_add_recent_setting_session_card.rb +5 -5
- data/db/migrate_core_cards/20150605115802_add_performance_log_card.rb +1 -1
- data/db/migrate_core_cards/20150610171702_add_debugger_session_card.rb +2 -2
- data/db/migrate_core_cards/20150611203506_rails_inflection_updates.rb +5 -5
- data/db/migrate_core_cards/20150627205133_fix_script_bootstrap_card_type.rb +1 -1
- data/db/migrate_core_cards/20150702130543_remove_edit_toolbar_pinned.rb +1 -1
- data/db/migrate_core_cards/20150724123438_update_file_and_image_cards.rb +5 -5
- data/db/migrate_core_cards/20150807205221_create_references_for_search_cards.rb +1 -1
- data/db/migrate_core_cards/20150824135418_update_file_history.rb +3 -3
- data/db/migrate_core_cards/20150903130006_attachment_upload_cards.rb +2 -2
- data/db/migrate_core_cards/20150910085603_remove_performance_log_card.rb +1 -1
- data/lib/card.rb +4 -4
- data/lib/card/active_record_ext.rb +8 -8
- data/lib/card/auth.rb +6 -6
- data/lib/card/cache.rb +1 -1
- data/lib/card/chunk.rb +1 -1
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +10 -10
- data/lib/card/env.rb +1 -1
- data/lib/card/format.rb +12 -12
- data/lib/card/loader.rb +1 -1
- data/lib/card/migration.rb +1 -1
- data/lib/card/name.rb +4 -4
- data/lib/card/query.rb +255 -61
- data/lib/card/query/attributes.rb +310 -0
- data/lib/card/query/clause.rb +12 -15
- data/lib/card/query/join.rb +73 -0
- data/lib/card/query/reference.rb +51 -0
- data/lib/card/query/sql_statement.rb +228 -0
- data/lib/card/query/value.rb +66 -0
- data/lib/card/reference.rb +6 -6
- data/lib/card/set.rb +12 -12
- data/lib/card/set_pattern.rb +9 -9
- data/lib/card/spec_helper.rb +5 -5
- data/lib/card/success.rb +1 -1
- data/lib/cardio.rb +7 -7
- data/lib/generators/card/format/format_generator.rb +3 -3
- data/lib/generators/card/migration/migration_generator.rb +5 -5
- data/lib/generators/card/set/set_generator.rb +4 -4
- data/mod/01_core/chunk/include.rb +4 -4
- data/mod/01_core/chunk/link.rb +5 -5
- data/mod/01_core/chunk/literal.rb +2 -2
- data/mod/01_core/chunk/query_reference.rb +8 -8
- data/mod/01_core/chunk/uri.rb +18 -18
- data/mod/01_core/format/html_format.rb +4 -4
- data/mod/01_core/set/all/active_card.rb +2 -2
- data/mod/01_core/set/all/collection.rb +21 -26
- data/mod/01_core/set/all/content.rb +2 -2
- data/mod/01_core/set/all/fetch.rb +6 -6
- data/mod/01_core/set/all/initialize.rb +4 -4
- data/mod/01_core/set/all/location_history.rb +2 -2
- data/mod/01_core/set/all/name.rb +14 -14
- data/mod/01_core/set/all/pattern.rb +1 -1
- data/mod/01_core/set/all/permissions.rb +12 -12
- data/mod/01_core/set/all/phases.rb +29 -12
- data/mod/01_core/set/all/references.rb +14 -14
- data/mod/01_core/set/all/rules.rb +8 -8
- data/mod/01_core/set/all/templating.rb +10 -9
- data/mod/01_core/set/all/tracked_attributes.rb +7 -7
- data/mod/01_core/set/all/trash.rb +6 -6
- data/mod/01_core/set/all/type.rb +7 -7
- data/mod/01_core/set/all/utils.rb +4 -4
- data/mod/01_core/set/all/view_cache.rb +1 -1
- data/mod/01_core/set_pattern/02_all_plus.rb +2 -2
- data/mod/01_core/set_pattern/03_type.rb +1 -1
- data/mod/01_core/set_pattern/04_star.rb +1 -1
- data/mod/01_core/set_pattern/05_rstar.rb +2 -2
- data/mod/01_core/set_pattern/06_right.rb +4 -4
- data/mod/01_core/set_pattern/07_type_plus_right.rb +4 -4
- data/mod/01_core/set_pattern/08_self.rb +1 -1
- data/mod/01_core/spec/chunk/uri_spec.rb +73 -73
- data/mod/01_core/spec/format/html_format_spec.rb +5 -5
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +1 -1
- data/mod/01_core/spec/set/all/collection_spec.rb +22 -22
- data/mod/01_core/spec/set/all/content_spec.rb +1 -1
- data/mod/01_core/spec/set/all/fetch_spec.rb +24 -24
- data/mod/01_core/spec/set/all/initialize_spec.rb +9 -9
- data/mod/01_core/spec/set/all/name_spec.rb +8 -8
- data/mod/01_core/spec/set/all/pattern_spec.rb +10 -10
- data/mod/01_core/spec/set/all/permissions_spec.rb +45 -45
- data/mod/01_core/spec/set/all/references_spec.rb +1 -1
- data/mod/01_core/spec/set/all/rules2_spec.rb +15 -15
- data/mod/01_core/spec/set/all/rules_spec.rb +37 -37
- data/mod/01_core/spec/set/all/templating_spec.rb +21 -21
- data/mod/01_core/spec/set/all/tracked_attributes_spec.rb +55 -55
- data/mod/01_core/spec/set/all/trash_spec.rb +4 -4
- data/mod/01_core/spec/set/all/type_spec.rb +15 -15
- data/mod/01_history/lib/card/act.rb +2 -2
- data/mod/01_history/lib/card/action.rb +22 -22
- data/mod/01_history/lib/card/change.rb +1 -1
- data/mod/01_history/set/all/actions.rb +2 -2
- data/mod/01_history/set/all/content_history.rb +4 -4
- data/mod/01_history/set/all/history.rb +46 -46
- data/mod/02_basic_types/set/all/all_css.rb +10 -10
- data/mod/02_basic_types/set/all/all_csv.rb +7 -7
- data/mod/02_basic_types/set/all/base.rb +25 -25
- data/mod/02_basic_types/set/all/json.rb +16 -16
- data/mod/02_basic_types/set/all/rss.rb +7 -7
- data/mod/02_basic_types/set/type/html.rb +2 -2
- data/mod/02_basic_types/set/type/plain_text.rb +1 -1
- data/mod/02_basic_types/set/type/pointer.rb +39 -31
- data/mod/02_basic_types/spec/set/all/all_css_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/all_csv_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/base_spec.rb +18 -18
- data/mod/02_basic_types/spec/set/all/json_spec.rb +4 -4
- data/mod/02_basic_types/spec/set/all/rss_spec.rb +8 -2
- data/mod/02_basic_types/spec/set/type/plain_text_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/type/pointer_spec.rb +54 -44
- data/mod/03_machines/lib/card/machine.rb +46 -29
- data/mod/03_machines/lib/card/machine_input.rb +34 -10
- data/mod/03_machines/set/type/coffee_script.rb +3 -3
- data/mod/03_machines/set/type/css.rb +8 -8
- data/mod/03_machines/set/type/java_script.rb +4 -4
- data/mod/03_machines/set/type/scss.rb +2 -2
- data/mod/03_machines/set/type/skin.rb +1 -1
- data/mod/03_machines/spec/lib/shared_machine_examples.rb +27 -27
- data/mod/03_machines/spec/lib/shared_machine_input_examples.rb +8 -8
- data/mod/03_machines/spec/set/type/coffeescript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/css_spec.rb +9 -9
- data/mod/03_machines/spec/set/type/javascript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/scss_spec.rb +5 -5
- data/mod/03_machines/spec/set/type/skin_spec.rb +25 -25
- data/mod/04_settings/lib/card/setting.rb +11 -11
- data/mod/04_settings/set/abstract/permission.rb +9 -9
- data/mod/04_settings/set/right/script.rb +1 -1
- data/mod/04_settings/set/right/structure.rb +0 -5
- data/mod/04_settings/set/right/style.rb +2 -2
- data/mod/04_settings/set/self/accountable.rb +1 -1
- data/mod/04_settings/set/self/add_help.rb +1 -1
- data/mod/04_settings/set/self/autoname.rb +1 -1
- data/mod/04_settings/set/self/captcha.rb +1 -1
- data/mod/04_settings/set/self/create.rb +1 -1
- data/mod/04_settings/set/self/default.rb +1 -1
- data/mod/04_settings/set/self/delete.rb +1 -1
- data/mod/04_settings/set/self/help.rb +1 -1
- data/mod/04_settings/set/self/input.rb +1 -1
- data/mod/04_settings/set/self/layout.rb +1 -1
- data/mod/04_settings/set/self/on_create.rb +1 -1
- data/mod/04_settings/set/self/on_delete.rb +1 -1
- data/mod/04_settings/set/self/on_update.rb +1 -1
- data/mod/04_settings/set/self/options.rb +1 -1
- data/mod/04_settings/set/self/options_label.rb +1 -1
- data/mod/04_settings/set/self/read.rb +1 -1
- data/mod/04_settings/set/self/script.rb +1 -1
- data/mod/04_settings/set/self/structure.rb +1 -1
- data/mod/04_settings/set/self/style.rb +1 -1
- data/mod/04_settings/set/self/table_of_contents.rb +1 -1
- data/mod/04_settings/set/self/thanks.rb +1 -1
- data/mod/04_settings/set/self/update.rb +1 -1
- data/mod/04_settings/set/type/setting.rb +14 -14
- data/mod/04_settings/spec/set/right/comment_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/create_spec.rb +1 -1
- data/mod/04_settings/spec/set/right/script_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/structure_spec.rb +4 -2
- data/mod/04_settings/spec/set/right/style_spec.rb +7 -7
- data/mod/04_settings/spec/set/type/setting_spec.rb +2 -2
- data/mod/05_email/lib/card/follow_option.rb +24 -24
- data/mod/05_email/set/all/follow.rb +24 -16
- data/mod/05_email/set/all/notify.rb +25 -23
- data/mod/05_email/set/all/observer.rb +5 -5
- data/mod/05_email/set/right/bcc.rb +8 -8
- data/mod/05_email/set/right/follow.rb +44 -17
- data/mod/05_email/set/right/follow_fields.rb +1 -1
- data/mod/05_email/set/right/following.rb +49 -40
- data/mod/05_email/set/self/always.rb +2 -2
- data/mod/05_email/set/self/created.rb +1 -1
- data/mod/05_email/set/self/edited.rb +4 -4
- data/mod/05_email/set/self/follow.rb +1 -1
- data/mod/05_email/set/self/follow_defaults.rb +9 -9
- data/mod/05_email/set/self/never.rb +1 -1
- data/mod/05_email/set/type/email_template.rb +9 -9
- data/mod/05_email/set/type_plus_right/user/follow.rb +16 -16
- data/mod/05_email/spec/set/all/follow_spec.rb +10 -10
- data/mod/05_email/spec/set/all/notify_spec.rb +82 -82
- data/mod/05_email/spec/set/all/observer_spec.rb +16 -16
- data/mod/05_email/spec/set/right/followers_spec.rb +6 -6
- data/mod/05_email/spec/set/self/follow_defaults_spec.rb +2 -2
- data/mod/05_standard/lib/carrier_wave/cardmount.rb +5 -5
- data/mod/05_standard/lib/image_uploader.rb +8 -8
- data/mod/05_standard/set/abstract/attachment.rb +18 -18
- data/mod/05_standard/set/all/account.rb +5 -5
- data/mod/05_standard/set/all/comment.rb +7 -7
- data/mod/05_standard/set/all/error.rb +25 -25
- data/mod/05_standard/set/all/event_viz.rb +1 -1
- data/mod/05_standard/set/all/links.rb +9 -9
- data/mod/05_standard/set/all/rich_html/content.rb +34 -34
- data/mod/05_standard/set/all/rich_html/editing.rb +35 -35
- data/mod/05_standard/set/all/rich_html/form.rb +20 -20
- data/mod/05_standard/set/all/rich_html/header.rb +8 -8
- data/mod/05_standard/set/all/rich_html/menu.rb +33 -33
- data/mod/05_standard/set/all/rich_html/modal.rb +16 -16
- data/mod/05_standard/set/all/rich_html/toolbar.rb +63 -63
- data/mod/05_standard/set/all/rich_html/wrapper.rb +8 -8
- data/mod/05_standard/set/right/account.rb +27 -27
- data/mod/05_standard/set/right/email.rb +5 -5
- data/mod/05_standard/set/right/password.rb +5 -5
- data/mod/05_standard/set/rstar/rules.rb +52 -52
- data/mod/05_standard/set/self/account_links.rb +27 -27
- data/mod/05_standard/set/self/all.rb +1 -1
- data/mod/05_standard/set/self/head.rb +5 -5
- data/mod/05_standard/set/self/navbox.rb +11 -11
- data/mod/05_standard/set/self/recent.rb +2 -2
- data/mod/05_standard/set/self/search.rb +13 -13
- data/mod/05_standard/set/self/signin.rb +19 -19
- data/mod/05_standard/set/self/stats.rb +2 -2
- data/mod/05_standard/set/type/basic.rb +1 -1
- data/mod/05_standard/set/type/cardtype.rb +5 -5
- data/mod/05_standard/set/type/date.rb +1 -1
- data/mod/05_standard/set/type/file.rb +7 -7
- data/mod/05_standard/set/type/image.rb +8 -8
- data/mod/05_standard/set/type/number.rb +2 -2
- data/mod/05_standard/set/type/phrase.rb +1 -1
- data/mod/05_standard/set/type/search_type.rb +27 -21
- data/mod/05_standard/set/type/session.rb +2 -2
- data/mod/05_standard/set/type/set.rb +37 -37
- data/mod/05_standard/set/type/signup.rb +25 -25
- data/mod/05_standard/set/type/uri.rb +1 -1
- data/mod/05_standard/set/type/user.rb +21 -21
- data/mod/05_standard/spec/chunk/include_spec.rb +16 -16
- data/mod/05_standard/spec/chunk/link_spec.rb +18 -18
- data/mod/05_standard/spec/chunk/query_reference_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/account_spec.rb +7 -7
- data/mod/05_standard/spec/set/all/email_html_spec.rb +3 -3
- data/mod/05_standard/spec/set/all/history_spec.rb +14 -14
- data/mod/05_standard/spec/set/all/rich_html/editing_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/rich_html/form_spec.rb +2 -2
- data/mod/05_standard/spec/set/right/account_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/email_spec.rb +8 -8
- data/mod/05_standard/spec/set/right/password_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_created_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_last_edited_spec.rb +1 -1
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/account_links_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/all_spec.rb +8 -11
- data/mod/05_standard/spec/set/self/head_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/navbox_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/now_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/version_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/email_template_spec.rb +25 -25
- data/mod/05_standard/spec/set/type/file_spec.rb +4 -4
- data/mod/05_standard/spec/set/type/html_spec.rb +3 -3
- data/mod/05_standard/spec/set/type/image_spec.rb +6 -6
- data/mod/05_standard/spec/set/type/layout_type_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/search_type_spec.rb +10 -10
- data/mod/05_standard/spec/set/type/signup_spec.rb +11 -11
- data/mod/05_standard/spec/set/type/toggle_spec.rb +2 -2
- data/mod/05_standard/spec/set/type/uri_spec.rb +9 -9
- data/mod/06_bootstrap/set/all/bootstrap/helper.rb +10 -10
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +4 -4
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +1 -1
- data/spec/lib/card/action_spec.rb +2 -2
- data/spec/lib/card/cache_spec.rb +7 -7
- data/spec/lib/card/content_spec.rb +31 -37
- data/spec/lib/card/diff_spec.rb +56 -56
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/query_spec.rb +382 -265
- data/spec/lib/card/reference_spec.rb +133 -140
- data/spec/lib/card/set_pattern_spec.rb +10 -9
- data/spec/lib/card/set_spec.rb +11 -11
- data/spec/lib/card/success_spec.rb +16 -8
- data/spec/mailers/mailer_spec.rb +5 -5
- data/spec/models/card/cardtype_spec.rb +20 -20
- data/spec/models/card/create_spec.rb +6 -6
- data/spec/models/card/trash_spec.rb +20 -20
- data/spec/models/card/type_transition_spec.rb +3 -3
- data/spec/models/card/validation_spec.rb +5 -5
- data/spec/models/card_spec.rb +24 -24
- data/spec/spec_helper.rb +5 -5
- data/tmpsets/set/mod001-01_core/all/active_card.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/collection.rb +23 -26
- data/tmpsets/set/mod001-01_core/all/content.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/fetch.rb +6 -6
- data/tmpsets/set/mod001-01_core/all/initialize.rb +8 -4
- data/tmpsets/set/mod001-01_core/all/name.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/pattern.rb +1 -1
- data/tmpsets/set/mod001-01_core/all/permissions.rb +12 -12
- data/tmpsets/set/mod001-01_core/all/phases.rb +31 -13
- data/tmpsets/set/mod001-01_core/all/references.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/rules.rb +8 -10
- data/tmpsets/set/mod001-01_core/all/templating.rb +10 -9
- data/tmpsets/set/mod001-01_core/all/tracked_attributes.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/trash.rb +9 -8
- data/tmpsets/set/mod001-01_core/all/type.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/utils.rb +16 -4
- data/tmpsets/set/mod001-01_core/all/view_cache.rb +1 -1
- data/tmpsets/set/mod002-01_history/all/actions.rb +2 -2
- data/tmpsets/set/mod002-01_history/all/content_history.rb +11 -7
- data/tmpsets/set/mod002-01_history/all/history.rb +46 -46
- data/tmpsets/set/mod003-02_basic_types/all/all_css.rb +10 -10
- data/tmpsets/set/mod003-02_basic_types/all/all_csv.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/all/base.rb +25 -25
- data/tmpsets/set/mod003-02_basic_types/all/json.rb +16 -16
- data/tmpsets/set/mod003-02_basic_types/all/rss.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/type/html.rb +2 -2
- data/tmpsets/set/mod003-02_basic_types/type/plain_text.rb +1 -1
- data/tmpsets/set/mod003-02_basic_types/type/pointer.rb +38 -31
- data/tmpsets/set/mod004-03_machines/right/machine_output.rb +4 -0
- data/tmpsets/set/mod004-03_machines/type/coffee_script.rb +3 -3
- data/tmpsets/set/mod004-03_machines/type/css.rb +8 -8
- data/tmpsets/set/mod004-03_machines/type/java_script.rb +4 -4
- data/tmpsets/set/mod004-03_machines/type/scss.rb +2 -2
- data/tmpsets/set/mod004-03_machines/type/skin.rb +1 -1
- data/tmpsets/set/mod005-04_settings/abstract/permission.rb +9 -9
- data/tmpsets/set/mod005-04_settings/right/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/right/structure.rb +0 -5
- data/tmpsets/set/mod005-04_settings/right/style.rb +2 -2
- data/tmpsets/set/mod005-04_settings/self/accountable.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/add_help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/autoname.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/captcha.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/default.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/input.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/layout.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options_label.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/read.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/structure.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/style.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/table_of_contents.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/thanks.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/type/setting.rb +14 -14
- data/tmpsets/set/mod006-05_email/all/follow.rb +24 -16
- data/tmpsets/set/mod006-05_email/all/notify.rb +25 -23
- data/tmpsets/set/mod006-05_email/all/observer.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/bcc.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/follow.rb +44 -17
- data/tmpsets/set/mod006-05_email/right/follow_fields.rb +1 -1
- data/tmpsets/set/mod006-05_email/right/following.rb +49 -40
- data/tmpsets/set/mod006-05_email/self/always.rb +2 -2
- data/tmpsets/set/mod006-05_email/self/created.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/edited.rb +4 -4
- data/tmpsets/set/mod006-05_email/self/follow.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/follow_defaults.rb +9 -9
- data/tmpsets/set/mod006-05_email/self/never.rb +1 -1
- data/tmpsets/set/mod006-05_email/type/email_template.rb +9 -9
- data/tmpsets/set/mod006-05_email/type_plus_right/user/follow.rb +17 -17
- data/tmpsets/set/mod007-05_standard/abstract/attachment.rb +98 -46
- data/tmpsets/set/mod007-05_standard/all/account.rb +5 -5
- data/tmpsets/set/mod007-05_standard/all/comment.rb +7 -7
- data/tmpsets/set/mod007-05_standard/all/error.rb +26 -26
- data/tmpsets/set/mod007-05_standard/all/event_viz.rb +1 -1
- data/tmpsets/set/mod007-05_standard/all/links.rb +10 -9
- data/tmpsets/set/mod007-05_standard/all/rich_html/content.rb +34 -34
- data/tmpsets/set/mod007-05_standard/all/rich_html/editing.rb +35 -35
- data/tmpsets/set/mod007-05_standard/all/rich_html/form.rb +20 -20
- data/tmpsets/set/mod007-05_standard/all/rich_html/header.rb +8 -8
- data/tmpsets/set/mod007-05_standard/all/rich_html/menu.rb +33 -33
- data/tmpsets/set/mod007-05_standard/all/rich_html/modal.rb +16 -16
- data/tmpsets/set/mod007-05_standard/all/rich_html/toolbar.rb +63 -63
- data/tmpsets/set/mod007-05_standard/all/rich_html/wrapper.rb +8 -8
- data/tmpsets/set/mod007-05_standard/right/account.rb +27 -27
- data/tmpsets/set/mod007-05_standard/right/email.rb +5 -5
- data/tmpsets/set/mod007-05_standard/right/password.rb +5 -5
- data/tmpsets/set/mod007-05_standard/rstar/rules.rb +52 -52
- data/tmpsets/set/mod007-05_standard/self/account_links.rb +27 -27
- data/tmpsets/set/mod007-05_standard/self/all.rb +1 -1
- data/tmpsets/set/mod007-05_standard/self/head.rb +5 -5
- data/tmpsets/set/mod007-05_standard/self/navbox.rb +11 -11
- data/tmpsets/set/mod007-05_standard/self/recent.rb +2 -2
- data/tmpsets/set/mod007-05_standard/self/search.rb +13 -13
- data/tmpsets/set/mod007-05_standard/self/signin.rb +19 -19
- data/tmpsets/set/mod007-05_standard/self/stats.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/basic.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/cardtype.rb +5 -5
- data/tmpsets/set/mod007-05_standard/type/date.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/file.rb +23 -8
- data/tmpsets/set/mod007-05_standard/type/image.rb +10 -8
- data/tmpsets/set/mod007-05_standard/type/number.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/phrase.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/search_type.rb +21 -19
- data/tmpsets/set/mod007-05_standard/type/session.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/set.rb +37 -37
- data/tmpsets/set/mod007-05_standard/type/signup.rb +25 -25
- data/tmpsets/set/mod007-05_standard/type/uri.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/user.rb +21 -21
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/helper.rb +10 -10
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/wrapper.rb +4 -4
- data/tmpsets/set/mod008-06_bootstrap/all/rich_bootstrap.rb +1 -1
- data/tmpsets/set_pattern/101-all_plus.rb +2 -2
- data/tmpsets/set_pattern/102-type.rb +1 -1
- data/tmpsets/set_pattern/103-star.rb +1 -1
- data/tmpsets/set_pattern/104-rstar.rb +2 -2
- data/tmpsets/set_pattern/105-right.rb +4 -4
- data/tmpsets/set_pattern/106-type_plus_right.rb +4 -4
- data/tmpsets/set_pattern/107-self.rb +1 -1
- metadata +7 -5
- data/lib/card/query/card_clause.rb +0 -528
- data/lib/card/query/ref_clause.rb +0 -47
- data/lib/card/query/value_clause.rb +0 -65
@@ -5,9 +5,9 @@ describe Card::Set::All::Templating do
|
|
5
5
|
describe "#structurees" do
|
6
6
|
it "for User+*type+*structure should return all Users" do
|
7
7
|
Card::Auth.as_bot do
|
8
|
-
c=Card.create(:
|
8
|
+
c=Card.create(name: 'User+*type+*structure')
|
9
9
|
users
|
10
|
-
|
10
|
+
|
11
11
|
expect(c.structuree_names.sort).to eq(["Big Brother", "Joe Admin", "Joe Camel", "Joe User", "John", "Narcissist", "No Count", "Optic fan", "Sample User", "Sara", "Sunglasses fan", "u1", "u2", "u3"])
|
12
12
|
end
|
13
13
|
end
|
@@ -21,9 +21,9 @@ describe Card::Set::All::Templating do
|
|
21
21
|
describe "with right structure" do
|
22
22
|
before do
|
23
23
|
Card::Auth.as_bot do
|
24
|
-
@bt = Card.create! :
|
24
|
+
@bt = Card.create! name: "birthday+*right+*structure", type: 'Date', content: "Today!"
|
25
25
|
end
|
26
|
-
@jb = Card.create! :
|
26
|
+
@jb = Card.create! name: "Jim+birthday"
|
27
27
|
end
|
28
28
|
|
29
29
|
it "should have default content" do
|
@@ -38,12 +38,12 @@ describe Card::Set::All::Templating do
|
|
38
38
|
end
|
39
39
|
jb = @jb.refresh force=true
|
40
40
|
expect(jb.format.render(:raw)).to eq('Tomorrow')
|
41
|
-
expect(jb.type_id).to eq(Card::PhraseID)
|
41
|
+
expect(jb.type_id).to eq(Card::PhraseID)
|
42
42
|
end
|
43
|
-
|
43
|
+
|
44
44
|
it "should have type and content overridden by (new) type_plus_right set" do
|
45
45
|
Card::Auth.as_bot do
|
46
|
-
Card.create! :
|
46
|
+
Card.create! name: 'Basic+birthday+*type plus right+*structure', type: 'PlainText', content: 'Yesterday'
|
47
47
|
end
|
48
48
|
jb = @jb.refresh force=true
|
49
49
|
expect(jb.raw_content).to eq('Yesterday')
|
@@ -55,10 +55,10 @@ describe Card::Set::All::Templating do
|
|
55
55
|
describe "with right default" do
|
56
56
|
before do
|
57
57
|
Card::Auth.as_bot do
|
58
|
-
@bt = Card.create! :
|
58
|
+
@bt = Card.create! name: "birthday+*right+*default", type: 'Date', content: "Today!"
|
59
59
|
end
|
60
|
-
@bb = Card.new :
|
61
|
-
@jb = Card.create! :
|
60
|
+
@bb = Card.new name: 'Bob+birthday'
|
61
|
+
@jb = Card.create! name: "Jim+birthday"
|
62
62
|
end
|
63
63
|
|
64
64
|
it "should have default cardtype" do
|
@@ -68,9 +68,9 @@ describe Card::Set::All::Templating do
|
|
68
68
|
it "should have default content" do
|
69
69
|
expect(Card['Jim+birthday'].content).to eq('Today!')
|
70
70
|
end
|
71
|
-
|
71
|
+
|
72
72
|
it "should apply to new cards" do
|
73
|
-
pb = Card.new :
|
73
|
+
pb = Card.new name: "Pete+birthday"
|
74
74
|
expect(pb.raw_content).to eq('Today!')
|
75
75
|
expect(pb.content).to eq('Today!')
|
76
76
|
end
|
@@ -79,33 +79,33 @@ describe Card::Set::All::Templating do
|
|
79
79
|
describe "with type structure" do
|
80
80
|
before do
|
81
81
|
Card::Auth.as_bot do
|
82
|
-
@dt = Card.create! :
|
82
|
+
@dt = Card.create! name: "Date+*type+*structure", type: 'Basic', content: 'Tomorrow'
|
83
83
|
end
|
84
84
|
end
|
85
|
-
|
85
|
+
|
86
86
|
it "should return templated content even if content is passed in" do
|
87
|
-
expect(Card.new(:
|
87
|
+
expect(Card.new(type: 'Date', content: '').format._render(:raw)).to eq('Tomorrow')
|
88
88
|
end
|
89
|
-
|
89
|
+
|
90
90
|
describe 'and right structure' do
|
91
91
|
before do
|
92
92
|
Card::Auth.as_bot do
|
93
|
-
Card.create :
|
94
|
-
@bt = Card.create! :
|
93
|
+
Card.create name: "Jim+birthday", content: 'Yesterday'
|
94
|
+
@bt = Card.create! name: "birthday+*right+*structure", type: 'Date', content: "Today"
|
95
95
|
end
|
96
96
|
end
|
97
|
-
|
97
|
+
|
98
98
|
it "*right setting should override *type setting" do
|
99
99
|
expect(Card['Jim+birthday'].raw_content).to eq('Today')
|
100
100
|
end
|
101
101
|
|
102
102
|
it "should defer to normal content when *structure rule's content is (exactly) '_self'" do
|
103
|
-
Card::Auth.as_bot { Card.create! :
|
103
|
+
Card::Auth.as_bot { Card.create! name: 'Jim+birthday+*self+*structure', content: '_self' }
|
104
104
|
expect(Card['Jim+birthday'].raw_content).to eq('Yesterday')
|
105
105
|
end
|
106
106
|
end
|
107
107
|
end
|
108
|
-
|
108
|
+
|
109
109
|
end
|
110
110
|
|
111
111
|
|
@@ -4,12 +4,12 @@
|
|
4
4
|
module RenameMethods
|
5
5
|
def name_invariant_attributes card
|
6
6
|
{
|
7
|
-
:
|
8
|
-
|
9
|
-
|
10
|
-
:
|
11
|
-
:
|
12
|
-
:
|
7
|
+
content: card.content,
|
8
|
+
#updater_id: card.updater_id,
|
9
|
+
#revisions: card.actions.count,
|
10
|
+
referencers: card.referencers.map(&:name).sort,
|
11
|
+
referees: card.referees.map(&:name).sort,
|
12
|
+
dependents: card.dependents.map(&:id).sort
|
13
13
|
}
|
14
14
|
end
|
15
15
|
|
@@ -34,7 +34,7 @@ include RenameMethods
|
|
34
34
|
|
35
35
|
|
36
36
|
describe Card::Set::All::TrackedAttributes do
|
37
|
-
|
37
|
+
|
38
38
|
describe '#extract_subcard_args!' do
|
39
39
|
it "should move plus keys into subcard hash" do
|
40
40
|
raw_args = { 'name'=>'test', 'subcards'=>{ '+*oldway'=>{'content'=>'old'}, }, '+*newway'=>{'content'=>'new'} }
|
@@ -43,13 +43,13 @@ describe Card::Set::All::TrackedAttributes do
|
|
43
43
|
expect(subcards.keys.sort).to eq(['+*newway', '+*oldway'])
|
44
44
|
end
|
45
45
|
end
|
46
|
-
|
47
|
-
|
46
|
+
|
47
|
+
|
48
48
|
describe 'set_name' do
|
49
49
|
|
50
50
|
|
51
51
|
it "should handle case variants" do
|
52
|
-
@c = Card.create! :
|
52
|
+
@c = Card.create! name: 'chump'
|
53
53
|
expect(@c.name).to eq('chump')
|
54
54
|
@c.name = 'Chump'
|
55
55
|
@c.save!
|
@@ -57,20 +57,20 @@ describe Card::Set::All::TrackedAttributes do
|
|
57
57
|
end
|
58
58
|
|
59
59
|
it "should handle changing from plus card to simple" do
|
60
|
-
c = Card.create! :
|
60
|
+
c = Card.create! name: 'four+five'
|
61
61
|
c.name = 'nine'
|
62
62
|
c.save!
|
63
63
|
expect(c.name).to eq('nine')
|
64
64
|
expect(c.left_id).to eq(nil)
|
65
65
|
expect(c.right_id).to eq(nil)
|
66
66
|
end
|
67
|
-
|
67
|
+
|
68
68
|
#FIXME - following tests more about fetch than set_name. this spec still needs lots of cleanup
|
69
69
|
|
70
70
|
it "test fetch with new when present" do
|
71
|
-
Card.create!(:
|
71
|
+
Card.create!(name: "Carrots")
|
72
72
|
cards_should_be_added 0 do
|
73
|
-
c=Card.fetch "Carrots", :
|
73
|
+
c=Card.fetch "Carrots", new: {}
|
74
74
|
c.save
|
75
75
|
expect(c).to be_instance_of(Card)
|
76
76
|
expect(Card.fetch("Carrots")).to be_instance_of(Card)
|
@@ -80,7 +80,7 @@ describe Card::Set::All::TrackedAttributes do
|
|
80
80
|
it "test_simple" do
|
81
81
|
cards_should_be_added 1 do
|
82
82
|
expect(Card['Boo!']).to be_nil
|
83
|
-
expect(Card.create(:
|
83
|
+
expect(Card.create(name: "Boo!")).to be_instance_of(Card)
|
84
84
|
expect(Card['Boo!']).to be_instance_of(Card)
|
85
85
|
end
|
86
86
|
end
|
@@ -88,7 +88,7 @@ describe Card::Set::All::TrackedAttributes do
|
|
88
88
|
|
89
89
|
it "test fetch with new when not present" do
|
90
90
|
cards_should_be_added 1 do
|
91
|
-
c=Card.fetch("Tomatoes", :
|
91
|
+
c=Card.fetch("Tomatoes", new: {})
|
92
92
|
c.save
|
93
93
|
expect(c).to be_instance_of(Card)
|
94
94
|
expect(Card.fetch("Tomatoes")).to be_instance_of(Card)
|
@@ -97,7 +97,7 @@ describe Card::Set::All::TrackedAttributes do
|
|
97
97
|
|
98
98
|
it "test_create_junction" do
|
99
99
|
cards_should_be_added 3 do
|
100
|
-
expect(Card.create(:
|
100
|
+
expect(Card.create(name: "Peach+Pear", content: "juicy")).to be_instance_of(Card)
|
101
101
|
end
|
102
102
|
expect(Card["Peach"]).to be_instance_of(Card)
|
103
103
|
expect(Card["Pear"]).to be_instance_of(Card)
|
@@ -133,16 +133,16 @@ describe Card::Set::All::TrackedAttributes do
|
|
133
133
|
assert_rename Card['Menu'], 'manure'
|
134
134
|
expect(Card['Menu']).to be_nil
|
135
135
|
end
|
136
|
-
|
136
|
+
|
137
137
|
it "wipes old references by default" do
|
138
138
|
c = Card['Menu']
|
139
139
|
c.name = 'manure'
|
140
140
|
c.save!
|
141
141
|
expect(Card['manure'].references_from.size).to eq(0)
|
142
142
|
end
|
143
|
-
|
143
|
+
|
144
144
|
it "picks up new references" do
|
145
|
-
Card.create :
|
145
|
+
Card.create name: 'kinds of poop', content: '[[manure]]'
|
146
146
|
assert_rename Card['Menu'], 'manure'
|
147
147
|
expect(Card['manure'].references_from.size).to eq(2)
|
148
148
|
end
|
@@ -154,7 +154,7 @@ describe Card::Set::All::TrackedAttributes do
|
|
154
154
|
it "handles plus cards renamed to simple" do
|
155
155
|
assert_rename card("A+B"), "K"
|
156
156
|
end
|
157
|
-
|
157
|
+
|
158
158
|
|
159
159
|
it "handles flipped parts" do
|
160
160
|
assert_rename card("A+B"), "B+A"
|
@@ -208,52 +208,52 @@ describe Card::Set::All::TrackedAttributes do
|
|
208
208
|
|
209
209
|
|
210
210
|
it "test_rename_should_not_fail_when_updating_inaccessible_referencer" do
|
211
|
-
Card.create! :
|
211
|
+
Card.create! name: "Joe Card", content: "Whattup"
|
212
212
|
Card::Auth.as :joe_admin do
|
213
|
-
Card.create! :
|
213
|
+
Card.create! name: "Admin Card", content: "[[Joe Card]]"
|
214
214
|
end
|
215
215
|
c = Card["Joe Card"]
|
216
|
-
c.update_attributes! :
|
216
|
+
c.update_attributes! name: "Card of Joe", update_referencers: true
|
217
217
|
assert_equal "[[Card of Joe]]", Card["Admin Card"].content
|
218
218
|
end
|
219
219
|
|
220
220
|
it "test_rename_should_update_structured_referencer" do
|
221
221
|
Card::Auth.as_bot do
|
222
|
-
c=Card.create! :
|
223
|
-
Card.create! :
|
224
|
-
Card.create! :
|
222
|
+
c=Card.create! name: "Pit"
|
223
|
+
Card.create! name: "Orange", type: "Fruit", content: "[[Pit]]"
|
224
|
+
Card.create! name: "Fruit+*type+*structure", content: "this [[Pit]]"
|
225
225
|
|
226
226
|
assert_equal "this [[Pit]]", Card["Orange"].raw_content
|
227
|
-
c.update_attributes! :
|
227
|
+
c.update_attributes! name: "Seed", update_referencers: true
|
228
228
|
assert_equal "this [[Seed]]", Card["Orange"].raw_content
|
229
229
|
end
|
230
230
|
end
|
231
|
-
|
231
|
+
|
232
232
|
it 'should handle plus cards that have children' do
|
233
233
|
Card::Auth.as_bot do
|
234
|
-
Card.create :
|
234
|
+
Card.create name: 'a+b+c+d'
|
235
235
|
ab = Card['a+b']
|
236
236
|
assert_rename ab, 'e+f'
|
237
237
|
end
|
238
238
|
end
|
239
|
-
|
240
|
-
|
239
|
+
|
240
|
+
|
241
241
|
context "chuck" do
|
242
242
|
before do
|
243
243
|
Card::Auth.as_bot do
|
244
|
-
Card.create! :
|
244
|
+
Card.create! name: "chuck_wagn+chuck"
|
245
245
|
end
|
246
246
|
end
|
247
|
-
|
247
|
+
|
248
248
|
it "test_rename_name_substitution" do
|
249
249
|
c1, c2 = Card["chuck_wagn+chuck"], Card["chuck"]
|
250
250
|
assert_rename c2, "buck"
|
251
251
|
assert_equal "chuck_wagn+buck", Card.find(c1.id).name
|
252
252
|
end
|
253
|
-
|
253
|
+
|
254
254
|
it "test_reference_updates_plus_to_simple" do
|
255
255
|
c1 = Card::Auth.as_bot do
|
256
|
-
Card.create! :
|
256
|
+
Card.create! name: 'Huck', content: "[[chuck wagn+chuck]]"
|
257
257
|
end
|
258
258
|
c2 = Card["chuck_wagn+chuck"]
|
259
259
|
assert_rename c2, 'schmuck'
|
@@ -261,14 +261,14 @@ describe Card::Set::All::TrackedAttributes do
|
|
261
261
|
assert_equal '[[schmuck]]', c1.content
|
262
262
|
end
|
263
263
|
end
|
264
|
-
|
264
|
+
|
265
265
|
context "dairy" do
|
266
266
|
before do
|
267
267
|
Card::Auth.as_bot do
|
268
|
-
Card.create! :
|
268
|
+
Card.create! type: "Cardtype", name: "Dairy", content: "[[/new/{{_self|name}}|new]]"
|
269
269
|
end
|
270
270
|
end
|
271
|
-
|
271
|
+
|
272
272
|
it "test_renaming_card_with_self_link_should_not_hang" do
|
273
273
|
c = Card["Dairy"]
|
274
274
|
c.name = "Buttah"
|
@@ -283,34 +283,34 @@ describe Card::Set::All::TrackedAttributes do
|
|
283
283
|
assert_equal "[[/new/{{_self|name}}|new]]", Card["Newt"].content
|
284
284
|
end
|
285
285
|
end
|
286
|
-
|
287
|
-
|
286
|
+
|
287
|
+
|
288
288
|
context "blues" do
|
289
289
|
before do
|
290
290
|
Card::Auth.as_bot do
|
291
|
-
Card.create! :
|
292
|
-
|
293
|
-
Card.create! :
|
294
|
-
Card.create! :
|
295
|
-
|
296
|
-
Card.create! :
|
297
|
-
Card.create! :
|
291
|
+
Card.create! name: "Blue"
|
292
|
+
|
293
|
+
Card.create! name: "blue includer 1", content: "{{Blue}}"
|
294
|
+
Card.create! name: "blue includer 2", content: "{{blue|closed;other:stuff}}"
|
295
|
+
|
296
|
+
Card.create! name: "blue linker 1", content: "[[Blue]]"
|
297
|
+
Card.create! name: "blue linker 2", content: "[[blue]]"
|
298
298
|
end
|
299
299
|
end
|
300
|
-
|
301
|
-
|
300
|
+
|
301
|
+
|
302
302
|
it "test_updates_inclusions_when_renaming" do
|
303
303
|
c1,c2,c3 = Card["Blue"], Card["blue includer 1"], Card["blue includer 2"]
|
304
|
-
c1.update_attributes :
|
305
|
-
assert_equal "{{Red}}", Card.find(c2.id).content
|
304
|
+
c1.update_attributes name: "Red", update_referencers: true
|
305
|
+
assert_equal "{{Red}}", Card.find(c2.id).content
|
306
306
|
# NOTE these attrs pass through a hash stage that may not preserve order
|
307
307
|
assert_equal "{{Red|closed;other:stuff}}", Card.find(c3.id).content
|
308
308
|
end
|
309
309
|
|
310
310
|
it "test_updates_inclusions_when_renaming_to_plus" do
|
311
311
|
c1,c2 = Card["Blue"], Card["blue includer 1"]
|
312
|
-
c1.update_attributes :
|
313
|
-
assert_equal "{{blue includer 1+color}}", Card.find(c2.id).content
|
312
|
+
c1.update_attributes name: "blue includer 1+color", update_referencers: true
|
313
|
+
assert_equal "{{blue includer 1+color}}", Card.find(c2.id).content
|
314
314
|
end
|
315
315
|
|
316
316
|
it "test_reference_updates_on_case_variants" do
|
@@ -324,5 +324,5 @@ describe Card::Set::All::TrackedAttributes do
|
|
324
324
|
end
|
325
325
|
|
326
326
|
end
|
327
|
-
|
327
|
+
|
328
328
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
2
|
|
3
3
|
describe Card::Set::All::Trash do
|
4
|
-
|
4
|
+
|
5
5
|
it "certain 'all rules' should be indestructable" do
|
6
6
|
Card::Auth.as_bot do
|
7
7
|
name = '*all+*default'
|
@@ -11,7 +11,7 @@ describe Card::Set::All::Trash do
|
|
11
11
|
expect(Card[name]).to be
|
12
12
|
end
|
13
13
|
end
|
14
|
-
|
14
|
+
|
15
15
|
it 'does not delete account with edits' do
|
16
16
|
Card::Auth.as_bot do
|
17
17
|
name = 'Joe User'
|
@@ -21,11 +21,11 @@ describe Card::Set::All::Trash do
|
|
21
21
|
expect(Card[name]).to be
|
22
22
|
end
|
23
23
|
end
|
24
|
-
|
24
|
+
|
25
25
|
it 'deletes account without edits' do
|
26
26
|
Card::Auth.as_bot do
|
27
27
|
name = 'born to die'
|
28
|
-
card = Card.create! :name
|
28
|
+
card = Card.create! name: name, type_code: :user
|
29
29
|
card.delete
|
30
30
|
expect(Card[name]).not_to be
|
31
31
|
end
|
@@ -4,28 +4,28 @@ describe Card::Set::All::Type do
|
|
4
4
|
|
5
5
|
describe 'get_type_id (#new)' do
|
6
6
|
it "should accept cardtype name and casespace variant as type" do
|
7
|
-
expect(Card.new( :
|
8
|
-
expect(Card.new( :
|
9
|
-
expect(Card.new( :
|
10
|
-
expect(Card.new( :
|
7
|
+
expect(Card.new( type: 'Phrase' ).type_id).to eq(Card::PhraseID)
|
8
|
+
expect(Card.new( type: 'PHRASE' ).type_id).to eq(Card::PhraseID)
|
9
|
+
expect(Card.new( type: 'phrase' ).type_id).to eq(Card::PhraseID)
|
10
|
+
expect(Card.new( type: 'phrase??' ).type_id).to eq(Card::PhraseID)
|
11
11
|
end
|
12
12
|
|
13
13
|
it 'should accept type_code' do
|
14
|
-
expect(Card.new( :
|
15
|
-
expect(Card.new( :
|
14
|
+
expect(Card.new( type_code: 'phrase' ).type_id).to eq(Card::PhraseID)
|
15
|
+
expect(Card.new( type_code: :phrase ).type_id).to eq(Card::PhraseID)
|
16
16
|
end
|
17
17
|
|
18
18
|
it 'should accept type_id' do
|
19
|
-
expect(Card.new( :
|
19
|
+
expect(Card.new( type_id: Card::PhraseID ).type_code).to eq(:phrase)
|
20
20
|
end
|
21
21
|
end
|
22
22
|
|
23
23
|
describe 'card with wagneered type' do
|
24
24
|
before do
|
25
25
|
Card::Auth.as_bot do
|
26
|
-
@type = Card.create! :
|
26
|
+
@type = Card.create! name: 'Hat', type: 'Cardtype'
|
27
27
|
end
|
28
|
-
@hat = Card.new :
|
28
|
+
@hat = Card.new type: 'Hat'
|
29
29
|
end
|
30
30
|
|
31
31
|
it 'should have a type_name' do
|
@@ -50,20 +50,20 @@ describe Card::Set::All::Type do
|
|
50
50
|
describe 'card with structured type' do
|
51
51
|
before do
|
52
52
|
Card::Auth.as_bot do
|
53
|
-
Card.create! :
|
54
|
-
Card.create! :
|
55
|
-
Card.create! :
|
53
|
+
Card.create! name: 'Topic', type: 'Cardtype'
|
54
|
+
Card.create! name: 'Topic+*type+*structure', content: '{{+results}}'
|
55
|
+
Card.create! name: 'Topic+results+*type plus right+*structure', type: 'Search', content: '{}'
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
59
|
it "should clear cache of structured nested card after saving" do
|
60
60
|
Card::Auth.as_bot do
|
61
|
-
expect(Card.fetch('t1+results', :
|
61
|
+
expect(Card.fetch('t1+results', new: {}).type_name).to eq('Basic')
|
62
62
|
|
63
|
-
topic1 = Card.new :
|
63
|
+
topic1 = Card.new type: 'Topic', name: 't1'
|
64
64
|
topic1.format._render_new
|
65
65
|
topic1.save!
|
66
|
-
expect(Card.fetch('t1+results', :
|
66
|
+
expect(Card.fetch('t1+results', new: {}).type_name).to eq('Search')
|
67
67
|
end
|
68
68
|
end
|
69
69
|
end
|