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
@@ -6,229 +6,222 @@ describe Card::Reference do
|
|
6
6
|
Card::Auth.current_id = Card::WagnBotID
|
7
7
|
end
|
8
8
|
|
9
|
-
describe
|
10
|
-
it
|
11
|
-
Card.create! :
|
12
|
-
Card[
|
13
|
-
assert_equal [
|
14
|
-
Card[
|
15
|
-
expect(Card[
|
9
|
+
describe 'references on hard templated cards should get updated' do
|
10
|
+
it 'on structuree creation' do
|
11
|
+
Card.create! name: 'JoeForm', type: 'UserForm'
|
12
|
+
Card['JoeForm'].format.render(:core)
|
13
|
+
assert_equal ['joe_form+age', 'joe_form+description', 'joe_form+name'],
|
14
|
+
Card['JoeForm'].includees.map(&:key).sort
|
15
|
+
expect(Card['JoeForm'].references_expired).not_to eq(true)
|
16
16
|
end
|
17
17
|
|
18
|
-
it
|
19
|
-
Card.create! :
|
20
|
-
Card.create! :
|
21
|
-
c = Card[
|
18
|
+
it 'on template creation' do
|
19
|
+
Card.create! name: 'SpecialForm', type: 'Cardtype'
|
20
|
+
Card.create! name: 'Form1', type: 'SpecialForm', content: 'foo'
|
21
|
+
c = Card['Form1']
|
22
22
|
expect(c.references_expired).to be_nil
|
23
|
-
Card.create! :
|
24
|
-
c = Card[
|
23
|
+
Card.create! name: 'SpecialForm+*type+*structure', content: '{{+bar}}'
|
24
|
+
c = Card['Form1']
|
25
25
|
expect(c.references_expired).to be_truthy
|
26
|
-
Card[
|
27
|
-
c = Card[
|
26
|
+
Card['Form1'].format.render(:core)
|
27
|
+
c = Card['Form1']
|
28
28
|
expect(c.references_expired).to be_nil
|
29
|
-
expect(Card[
|
29
|
+
expect(Card['Form1'].includees.map(&:key)).to eq(['form1+bar'])
|
30
30
|
end
|
31
31
|
|
32
|
-
it
|
33
|
-
Card.create! :
|
34
|
-
tmpl = Card[
|
35
|
-
tmpl.content =
|
32
|
+
it 'on template update' do
|
33
|
+
Card.create! name: 'JoeForm', type: 'UserForm'
|
34
|
+
tmpl = Card['UserForm+*type+*structure']
|
35
|
+
tmpl.content = '{{+monkey}} {{+banana}} {{+fruit}}';
|
36
36
|
tmpl.save!
|
37
|
-
expect(Card[
|
38
|
-
Card[
|
39
|
-
assert_equal [
|
40
|
-
Card[
|
41
|
-
expect(Card[
|
37
|
+
expect(Card['JoeForm'].references_expired).to be_truthy
|
38
|
+
Card['JoeForm'].format.render(:core)
|
39
|
+
assert_equal ['joe_form+banana', 'joe_form+fruit', 'joe_form+monkey'],
|
40
|
+
Card['JoeForm'].includees.map(&:key).sort
|
41
|
+
expect(Card['JoeForm'].references_expired).not_to eq(true)
|
42
42
|
end
|
43
43
|
end
|
44
44
|
|
45
|
-
it
|
46
|
-
newcard(
|
47
|
-
newcard(
|
48
|
-
newcard(
|
49
|
-
newcard(
|
50
|
-
|
51
|
-
|
52
|
-
|
45
|
+
it 'in references should survive cardtype change' do
|
46
|
+
newcard('Banana','[[Yellow]]')
|
47
|
+
newcard('Submarine','[[Yellow]]')
|
48
|
+
newcard('Sun','[[Yellow]]')
|
49
|
+
newcard('Yellow')
|
50
|
+
yellow_refs = Card['Yellow'].referencers.map(&:name).sort
|
51
|
+
expect(yellow_refs).to eq(%w{ Banana Submarine Sun })
|
52
|
+
|
53
|
+
y=Card['Yellow'];
|
54
|
+
y.type_id= Card.fetch_id 'UserForm';
|
53
55
|
y.save!
|
54
|
-
|
56
|
+
|
57
|
+
yellow_refs = Card['Yellow'].referencers.map(&:name).sort
|
58
|
+
expect(yellow_refs).to eq(%w{ Banana Submarine Sun })
|
55
59
|
end
|
56
60
|
|
57
|
-
it
|
58
|
-
Card.create :
|
59
|
-
Card.create :
|
60
|
-
Card.create :
|
61
|
-
expect(Card.fetch('bob+address').includees.map(&:name)).to eq([
|
62
|
-
expect(Card.fetch('bob+city').includers.map(&:name)).to eq([
|
61
|
+
it 'container inclusion' do
|
62
|
+
Card.create name: 'bob+city'
|
63
|
+
Card.create name: 'address+*right+*default', content: '{{_L+city}}'
|
64
|
+
Card.create name: 'bob+address'
|
65
|
+
expect(Card.fetch('bob+address').includees.map(&:name)).to eq(['bob+city'])
|
66
|
+
expect(Card.fetch('bob+city').includers.map(&:name)).to eq(['bob+address'])
|
63
67
|
end
|
64
68
|
|
65
|
-
it
|
66
|
-
@l = newcard(
|
67
|
-
@e = newcard(
|
68
|
-
@e.update_attributes! :
|
69
|
-
# @e.referencers.map(&:name).include("L") as the test was originally written, fails
|
69
|
+
it 'pickup new links on rename' do
|
70
|
+
@l = newcard('L', '[[Ethan]]') # no Ethan card yet...
|
71
|
+
@e = newcard('Earthman')
|
72
|
+
@e.update_attributes! name: 'Ethan' # NOW there is an Ethan card
|
70
73
|
# do we need the links to be caught before reloading the card?
|
71
|
-
expect(Card[
|
74
|
+
expect(Card['Ethan'].referencers.map(&:name).include?('L')).not_to eq(nil)
|
72
75
|
end
|
73
76
|
|
74
|
-
it
|
77
|
+
it 'should update references on rename when requested' do
|
75
78
|
watermelon = newcard('watermelon', 'mmmm')
|
76
79
|
watermelon_seeds = newcard('watermelon+seeds', 'black')
|
77
|
-
lew = newcard('Lew',
|
80
|
+
lew = newcard('Lew', 'likes [[watermelon]] and [[watermelon+seeds|seeds]]')
|
78
81
|
|
79
82
|
watermelon = Card['watermelon']
|
80
83
|
watermelon.update_referencers = true
|
81
|
-
watermelon.name=
|
84
|
+
watermelon.name='grapefruit'
|
82
85
|
watermelon.save!
|
83
|
-
|
86
|
+
result = 'likes [[grapefruit]] and [[grapefruit+seeds|seeds]]'
|
87
|
+
expect(lew.reload.content).to eq(result)
|
84
88
|
end
|
85
89
|
|
86
|
-
it
|
90
|
+
it 'should update referencers on rename when requested (case 2)' do
|
87
91
|
card = Card['Administrator Menu+*self+*read']
|
88
|
-
|
92
|
+
old_refs = Card::Reference.where(referee_id: Card::AdministratorID)
|
93
|
+
old_referers = old_refs.map(&:referer_id).sort
|
94
|
+
|
89
95
|
card.update_referencers = true
|
90
96
|
card.name='Administrator Menu+*type+*read'
|
91
97
|
card.save
|
92
|
-
|
98
|
+
|
99
|
+
new_refs = Card::Reference.where(referee_id: Card::AdministratorID)
|
100
|
+
new_referers = new_refs.map(&:referer_id).sort
|
101
|
+
expect(old_refs).to eq(new_refs)
|
93
102
|
end
|
94
103
|
|
95
|
-
it
|
104
|
+
it 'should not update references when not requested' do
|
96
105
|
|
97
106
|
watermelon = newcard('watermelon', 'mmmm')
|
98
107
|
watermelon_seeds = newcard('watermelon+seeds', 'black')
|
99
|
-
lew = newcard('Lew',
|
108
|
+
lew = newcard('Lew', 'likes [[watermelon]] and [[watermelon+seeds|seeds]]')
|
109
|
+
|
110
|
+
assert_equal [1, 1, 1, 1], lew.references_to.map(&:present),
|
111
|
+
'links should not be Wanted before'
|
100
112
|
|
101
|
-
assert_equal [1,1,1,1], lew.references_to.map(&:present), "links should not be Wanted before"
|
102
113
|
watermelon = Card['watermelon']
|
103
114
|
watermelon.update_referencers = false
|
104
|
-
watermelon.name=
|
115
|
+
watermelon.name = 'grapefruit'
|
105
116
|
watermelon.save!
|
106
|
-
|
107
|
-
|
108
|
-
|
117
|
+
correct_content = 'likes [[watermelon]] and [[watermelon+seeds|seeds]]'
|
118
|
+
expect(lew.reload.content).to eq(correct_content)
|
119
|
+
|
120
|
+
ref_types = lew.references_to.order(:id).map(&:ref_type)
|
121
|
+
assert_equal ref_types, ['L','P','P','L'], 'links should be a LINK'
|
122
|
+
refs_are_present = lew.references_to.order(:id).map(&:present)
|
123
|
+
assert_equal refs_are_present, [0, 0, 1, 0],
|
124
|
+
'only reference to +seeds should be present'
|
109
125
|
end
|
110
126
|
|
111
|
-
it
|
112
|
-
@ab = Card[
|
113
|
-
@ab.update_attributes! :
|
127
|
+
it 'update referencing content on rename junction card' do
|
128
|
+
@ab = Card['A+B'] #linked to from X, included by Y
|
129
|
+
@ab.update_attributes! name: 'Peanut+Butter', update_referencers: true
|
114
130
|
@x = Card['X']
|
115
|
-
expect(@x.content).to eq(
|
131
|
+
expect(@x.content).to eq('[[A]] [[Peanut+Butter]] [[T]]')
|
116
132
|
end
|
117
133
|
|
118
|
-
it
|
119
|
-
@ab = Card[
|
120
|
-
@ab.update_attributes! :
|
134
|
+
it 'update referencing content on rename junction card' do
|
135
|
+
@ab = Card['A+B'] #linked to from X, included by Y
|
136
|
+
@ab.update_attributes! name: 'Peanut+Butter', update_referencers: false
|
121
137
|
@x = Card['X']
|
122
|
-
expect(@x.content).to eq(
|
138
|
+
expect(@x.content).to eq('[[A]] [[A+B]] [[T]]')
|
123
139
|
end
|
124
140
|
|
125
|
-
it
|
126
|
-
|
127
|
-
Card.create! :
|
128
|
-
green = Card.create! :
|
141
|
+
it 'template inclusion' do
|
142
|
+
Card.create! name: 'ColorType', type: 'Cardtype', content: ''
|
143
|
+
Card.create! name: 'ColorType+*type+*structure', content: '{{+rgb}}'
|
144
|
+
green = Card.create! name: 'green', type: 'ColorType'
|
129
145
|
rgb = newcard 'rgb'
|
130
|
-
green_rgb = Card.create! :
|
146
|
+
green_rgb = Card.create! name: 'green+rgb', content: '#00ff00'
|
131
147
|
|
132
|
-
expect(green.reload.includees.map(&:name)).to eq([
|
148
|
+
expect(green.reload.includees.map(&:name)).to eq(['green+rgb'])
|
133
149
|
expect(green_rgb.reload.includers.map(&:name)).to eq(['green'])
|
134
150
|
end
|
135
151
|
|
136
|
-
it
|
137
|
-
|
138
|
-
|
152
|
+
it 'simple link' do
|
153
|
+
Card.create name: 'alpha'
|
154
|
+
Card.create name: 'beta', content: 'I link to [[alpha]]'
|
139
155
|
expect(Card['alpha'].referencers.map(&:name)).to eq(['beta'])
|
140
156
|
expect(Card['beta'].referees.map(&:name)).to eq(['alpha'])
|
141
157
|
end
|
142
158
|
|
143
|
-
it
|
144
|
-
|
145
|
-
|
159
|
+
it 'link with spaces' do
|
160
|
+
Card.create! name: 'alpha card'
|
161
|
+
Card.create! name: 'beta card', content: 'I link to [[alpha_card]]'
|
146
162
|
expect(Card['beta card'].referees.map(&:name)).to eq(['alpha card'])
|
147
163
|
expect(Card['alpha card'].referencers.map(&:name)).to eq(['beta card'])
|
148
164
|
end
|
149
165
|
|
150
166
|
|
151
|
-
it
|
152
|
-
|
153
|
-
|
167
|
+
it 'simple inclusion' do
|
168
|
+
Card.create name: 'alpha'
|
169
|
+
Card.create name: 'beta', content: 'I nest {{alpha}}'
|
154
170
|
expect(Card['beta'].includees.map(&:name)).to eq(['alpha'])
|
155
171
|
expect(Card['alpha'].includers.map(&:name)).to eq(['beta'])
|
156
172
|
end
|
157
173
|
|
158
|
-
it
|
159
|
-
|
160
|
-
|
174
|
+
it 'non simple link' do
|
175
|
+
Card.create name: 'alpha'
|
176
|
+
Card.create name: 'beta', content: 'I link to [[alpha|ALPHA]]'
|
161
177
|
expect(Card['beta'].referees.map(&:name)).to eq(['alpha'])
|
162
178
|
expect(Card['alpha'].referencers.map(&:name)).to eq(['beta'])
|
163
179
|
end
|
164
180
|
|
165
|
-
it
|
166
|
-
Card.create
|
167
|
-
:
|
168
|
-
|
169
|
-
|
181
|
+
it 'query' do
|
182
|
+
Card.create(
|
183
|
+
type: 'Search',
|
184
|
+
name: 'search with references',
|
185
|
+
content: '{"name":"X", "right_plus":["Y",{"content":["in","A","B"]}]}'
|
186
|
+
)
|
187
|
+
y_referencers = Card['Y'].referencers.map &:name
|
188
|
+
expect(y_referencers).to include('search with references')
|
189
|
+
|
190
|
+
search_referees = Card['search with references'].referees.map(&:name).sort
|
191
|
+
expect(search_referees).to eq ['A','B','X','Y']
|
170
192
|
end
|
171
193
|
|
172
|
-
it
|
173
|
-
|
174
|
-
|
175
|
-
Card['
|
176
|
-
expect(Card['basic with references'].content).to eq '{{_+AAA}}'
|
194
|
+
it 'handles contextual names in Basic cards' do
|
195
|
+
Card.create type: 'Basic', name: 'basic w refs', content: '{{_+A}}'
|
196
|
+
Card['A'].update_attributes! name: 'AAA', update_referencers: true
|
197
|
+
expect(Card['basic w refs'].content).to eq '{{_+AAA}}'
|
177
198
|
end
|
178
199
|
|
179
|
-
it
|
180
|
-
|
181
|
-
|
182
|
-
Card['
|
183
|
-
expect(Card['search with references'].content).to eq '{"name":"_+AAA"}'
|
200
|
+
it 'handles contextual names in Search cards' do
|
201
|
+
Card.create type: 'Search', name: 'search w refs', content: '{"name":"_+A"}'
|
202
|
+
Card['A'].update_attributes! name: 'AAA', update_referencers: true
|
203
|
+
expect(Card['search w refs'].content).to eq '{"name":"_+AAA"}'
|
184
204
|
end
|
185
205
|
|
186
|
-
it
|
187
|
-
c = Card.create :
|
206
|
+
it 'should handle commented inclusion' do
|
207
|
+
c = Card.create name: 'inclusion comment test', content: '{{## hi mom }}'
|
188
208
|
expect(c.errors.any?).to be_falsey
|
189
209
|
end
|
190
210
|
|
191
211
|
|
192
|
-
it
|
193
|
-
@l = newcard(
|
194
|
-
@e = newcard(
|
212
|
+
it 'pickup new links on create' do
|
213
|
+
@l = newcard('woof', '[[Lewdog]]') # no Lewdog card yet...
|
214
|
+
@e = newcard('Lewdog') # now there is
|
195
215
|
# NOTE @e.referencers does not work, you have to reload
|
196
|
-
expect(@e.reload.referencers.map(&:name).include?(
|
216
|
+
expect(@e.reload.referencers.map(&:name).include?('woof')).not_to eq(nil)
|
197
217
|
end
|
198
218
|
|
199
|
-
it
|
200
|
-
@l = Card.create! :
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
=begin
|
206
|
-
|
207
|
-
# This test doesn't make much sense to me... LWH
|
208
|
-
it "revise changes references from wanted to linked for new cards" do
|
209
|
-
new_card = Card.create(:name=>'NewCard')
|
210
|
-
new_card.revise('Reference to [[WantedCard]], and to [[WantedCard2]]', Time.now, Card['quentin'].account),
|
211
|
-
new_format)
|
212
|
-
|
213
|
-
references = new_card.card_references(true)
|
214
|
-
references.size.should == 2
|
215
|
-
references[0].referee_key.should == 'WantedCard'
|
216
|
-
references[0].ref_type.should == Card::Reference::WANTED_PAGE
|
217
|
-
references[1].referee_key.should == 'WantedCard2'
|
218
|
-
references[1].ref_type.should == Card::Reference::WANTED_PAGE
|
219
|
-
|
220
|
-
wanted_card = Card.create(:name=>'WantedCard')
|
221
|
-
wanted_card.revise('And here it is!', Time.now, Card['quentin'].account), new_format)
|
222
|
-
|
223
|
-
# link type stored for NewCard -> WantedCard reference should change from WANTED to LINKED
|
224
|
-
# reference NewCard -> WantedCard2 should remain the same
|
225
|
-
references = new_card.card_references(true)
|
226
|
-
references.size.should == 2
|
227
|
-
references[0].referee_key.should == 'WantedCard'
|
228
|
-
references[0].ref_type.should == Card::Reference::LINKED_PAGE
|
229
|
-
references[1].referee_key.should == 'WantedCard2'
|
230
|
-
references[1].ref_type.should == Card::Reference::WANTED_PAGE
|
219
|
+
it 'pickup new inclusions on create' do
|
220
|
+
@l = Card.create! name: 'woof', content: '{{Lewdog}}'
|
221
|
+
# no Lewdog card yet...
|
222
|
+
@e = Card.new name: 'Lewdog', content: 'grrr'
|
223
|
+
# now it's inititated
|
224
|
+
expect(@e.name_referencers.map(&:name).include?('woof')).not_to eq(nil)
|
231
225
|
end
|
232
|
-
=end
|
233
226
|
|
234
227
|
end
|
@@ -18,21 +18,21 @@ end
|
|
18
18
|
#FIXME - these should probably be in pattern-specific specs, though that may not leave much to test in the base class :)
|
19
19
|
|
20
20
|
describe Card::RightSet do
|
21
|
-
it_generates :
|
22
|
-
it_generates :
|
21
|
+
it_generates name: 'author+*right', from: Card.new(name: 'Iliad+author')
|
22
|
+
it_generates name: 'author+*right', from: Card.new(name: '+author')
|
23
23
|
end
|
24
24
|
|
25
25
|
describe Card::TypeSet do
|
26
|
-
it_generates :
|
26
|
+
it_generates name: 'Book+*type', from: Card.new(type: "Book")
|
27
27
|
end
|
28
28
|
|
29
29
|
describe Card::TypeSet do
|
30
30
|
before :each do
|
31
31
|
Card::Auth.as_bot do
|
32
|
-
@mylist = Card.create! :
|
33
|
-
Card.create :
|
32
|
+
@mylist = Card.create! name: 'MyList', type_id: Card::CardtypeID
|
33
|
+
Card.create name: 'MyList+*type+*default', type_id: Card::PointerID
|
34
34
|
end
|
35
|
-
@mylist_card = Card.create :
|
35
|
+
@mylist_card = Card.create name: 'ip', type_id: @mylist.id
|
36
36
|
end
|
37
37
|
# similar tests for an inherited type of Pointer
|
38
38
|
it 'has inherited set module' do
|
@@ -44,13 +44,14 @@ describe Card::TypeSet do
|
|
44
44
|
end
|
45
45
|
|
46
46
|
describe Card::AllPlusSet do
|
47
|
-
it_generates :
|
47
|
+
it_generates name: '*all plus', from: Card.new(name: 'Book+author')
|
48
48
|
end
|
49
49
|
|
50
50
|
describe Card::AllSet do
|
51
|
-
it_generates :
|
51
|
+
it_generates name: '*all', from: Card.new(type: 'Book')
|
52
52
|
end
|
53
53
|
|
54
54
|
describe Card::TypePlusRightSet do
|
55
|
-
|
55
|
+
author_card = Card.new(name: 'Iliad+author')
|
56
|
+
it_generates name: 'Book+author+*type plus right', from: author_card
|
56
57
|
end
|
data/spec/lib/card/set_spec.rb
CHANGED
@@ -3,14 +3,14 @@
|
|
3
3
|
# module Card::Set::Right::Account # won't this conflict with a real set (and fail to provide controlled test?)
|
4
4
|
# extend Card::Set
|
5
5
|
#
|
6
|
-
# card_accessor :role, :
|
7
|
-
# card_writer :write, :
|
8
|
-
# card_reader :read, :
|
6
|
+
# card_accessor :role, default: "request", type: :phrase
|
7
|
+
# card_writer :write, default: "request", type: :phrase
|
8
|
+
# card_reader :read, default: "request", type: :phrase
|
9
9
|
# end
|
10
10
|
#
|
11
11
|
# describe Card do
|
12
12
|
# before do
|
13
|
-
# @account_card = Card['sara'].fetch :
|
13
|
+
# @account_card = Card['sara'].fetch trait: :account
|
14
14
|
# end
|
15
15
|
#
|
16
16
|
# describe "Read and write card attribute" do
|
@@ -34,19 +34,19 @@
|
|
34
34
|
# # @account_card.status.should == 'pending'
|
35
35
|
# Card::Auth.as_bot { @account_card.save }
|
36
36
|
# # Card.cache.reset
|
37
|
-
# expect(tcard = Card['sara'].fetch(:
|
37
|
+
# expect(tcard = Card['sara'].fetch(trait: :account)).to be
|
38
38
|
# expect(tcard.status).to eq('pending')
|
39
|
-
# expect(tcard.fetch(:
|
39
|
+
# expect(tcard.fetch(trait: :write).content).to eq('test_value')
|
40
40
|
# end
|
41
41
|
#
|
42
42
|
# end
|
43
43
|
#
|
44
|
-
# let(:card) { Card.new(:
|
45
|
-
# let(:card_self) { Card.new(:
|
46
|
-
# let(:card_right) { Card.new(:
|
47
|
-
# let(:card_type_search) { Card.new(:
|
44
|
+
# let(:card) { Card.new(name: 'simple') }
|
45
|
+
# let(:card_self) { Card.new(name: '*navbox') }
|
46
|
+
# let(:card_right) { Card.new(name: 'card+*right') }
|
47
|
+
# let(:card_type_search) { Card.new(name: 'search_me', type: Card::SearchID) }
|
48
48
|
# let(:card_double) { Card }
|
49
|
-
# let(:format_double) { object_double(Card.new(:
|
49
|
+
# let(:format_double) { object_double(Card.new(name: 'card+*right').format) }
|
50
50
|
#
|
51
51
|
# #let(:html_format_double) { Card::HtmlFormat }
|
52
52
|
# let(:html_format_double) { double("Card::HtmlFormat") }
|