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
@@ -2,27 +2,27 @@
|
|
2
2
|
|
3
3
|
class BootswatchThemes < Card::CoreMigration
|
4
4
|
def up
|
5
|
-
themeless = Card.fetch 'themeless bootstrap skin', :
|
6
|
-
themeless.update_attributes! :
|
5
|
+
themeless = Card.fetch 'themeless bootstrap skin', new: {type_code: :skin}
|
6
|
+
themeless.update_attributes! content: "[[style: jquery-ui-smoothness]]\n[[style: cards]]\n[[style: right sidebar]]\n[[style: bootstrap cards]]"
|
7
7
|
bs = Card[:bootstrap_css]
|
8
|
-
bs.update_attributes! :
|
8
|
+
bs.update_attributes! codename: nil
|
9
9
|
bs.delete!
|
10
10
|
|
11
|
-
Card.create! :
|
12
|
-
Card.create! :
|
11
|
+
Card.create! name: 'bootswatch shared', type_code: :scss, codename: 'bootswatch_shared'
|
12
|
+
Card.create! name: 'bootswatch theme+*right+*structure', type_id: Card::ScssID, content: '{{_left+variables}}{{bootswatch shared}}{{_left+style}}'
|
13
13
|
%w{bootstrap_default cerulean cosmo cyborg darkly flatly journal lumen paper readable sandstone simplex slate spacelab superhero united yeti }.each do |theme_name|
|
14
14
|
path = data_path "themes/#{theme_name}"
|
15
15
|
theme = Card.fetch "#{theme_name} skin"
|
16
16
|
|
17
17
|
if theme
|
18
|
-
theme.update_attributes! :
|
19
|
-
"+variables" => {:
|
20
|
-
"+style" => {:
|
18
|
+
theme.update_attributes! type_id: Card::SkinID, content: "[[themeless bootstrap skin]]\n[[+bootswatch theme]]", subcards: {
|
19
|
+
"+variables" => {type_id: Card::ScssID, content: File.read(File.join path, '_variables.scss')},
|
20
|
+
"+style" => {type_id: Card::ScssID, content: File.read(File.join path, '_bootswatch.scss')}
|
21
21
|
}
|
22
22
|
else
|
23
|
-
Card.create! :
|
24
|
-
"+variables" => {:
|
25
|
-
"+style" => {:
|
23
|
+
Card.create! name: "#{theme_name.sub('_',' ')} skin", type_id: Card::SkinID, content: "[[themeless bootstrap skin]]\n[[+bootswatch theme]]", subcards: {
|
24
|
+
"+variables" => {type_id: Card::ScssID, content: File.read(File.join path, '_variables.scss')},
|
25
|
+
"+style" => {type_id: Card::ScssID, content: File.read(File.join path, '_bootswatch.scss')}
|
26
26
|
}
|
27
27
|
end
|
28
28
|
end
|
@@ -12,7 +12,7 @@ class SearchCardContext < Card::CoreMigration
|
|
12
12
|
['self', 'left'],
|
13
13
|
['', 'left'],
|
14
14
|
]
|
15
|
-
Card.search(:
|
15
|
+
Card.search(type_id: ['in', Card::SearchTypeID, Card::SetID]).each do |card|
|
16
16
|
if card.cardname.junction? && !card.virtual?
|
17
17
|
content = card.content
|
18
18
|
replace.each do |key, val|
|
@@ -5,7 +5,7 @@ class MenuCompatibility < Card::CoreMigration
|
|
5
5
|
|
6
6
|
# Add bootswatch shared to old skins so that menu works
|
7
7
|
bootswatch_shared = Card[:bootswatch_shared]
|
8
|
-
Card.search(:
|
8
|
+
Card.search(type_id: Card::SkinID) do |skin|
|
9
9
|
if skin.item_cards.find { |item_card| item_card.codename.to_s == 'style_bootstrap_compatible'}
|
10
10
|
skin.add_item! bootswatch_shared.name
|
11
11
|
end
|
@@ -15,8 +15,8 @@ class MenuCompatibility < Card::CoreMigration
|
|
15
15
|
# (this can be removed if/when later migrations update those things directly)
|
16
16
|
[:style, :script].each do |setting|
|
17
17
|
Card.search(
|
18
|
-
:
|
19
|
-
:
|
18
|
+
right_id: Card::MachineOutputID,
|
19
|
+
left: { right: {codename: setting.to_s } }
|
20
20
|
).each do |output_card|
|
21
21
|
output_card.delete!
|
22
22
|
end
|
@@ -7,7 +7,7 @@ class FixSkinImages < Card::CoreMigration
|
|
7
7
|
# They were no longer needed for style handling but are still needed for images
|
8
8
|
%w{bootstrap_default cerulean cosmo cyborg darkly flatly journal lumen paper readable sandstone simplex slate spacelab superhero united yeti }.each do |theme_name|
|
9
9
|
theme_name = "#{theme_name}_skin"
|
10
|
-
Card.fetch( theme_name ).update_attributes! :
|
10
|
+
Card.fetch( theme_name ).update_attributes! codename: theme_name
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
@@ -3,13 +3,13 @@
|
|
3
3
|
class AddSessionCardtype < Card::CoreMigration
|
4
4
|
def up
|
5
5
|
session_card_name = Card.exists?( 'Session' ) ? 'BrowserSession' : 'Session'
|
6
|
-
Card.create! :
|
7
|
-
:
|
6
|
+
Card.create! name: session_card_name, type_code: :cardtype, codename: 'session',
|
7
|
+
subcards: {'+description'=>{content: 'Session cards are for non-permanent content.
|
8
8
|
They are not stored in the database and can have different values for different users.
|
9
9
|
You can use a Session card to keep track of certain state of a particular user like the content
|
10
10
|
of shopping basket.'}}
|
11
11
|
Card::Cache.reset_global
|
12
|
-
Card.create! :
|
13
|
-
Card.create! :
|
12
|
+
Card.create! name: '*edit toolbar pinned', type_code: :session, codename: 'edit_toolbar_pinned'
|
13
|
+
Card.create! name: '*toolbar pinned', type_code: :session, codename: 'toolbar_pinned'
|
14
14
|
end
|
15
15
|
end
|
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
class AddRecentSettingSessionCard < Card::CoreMigration
|
4
4
|
def up
|
5
|
-
Card.create! :
|
6
|
-
'+*self+*options' => {:
|
7
|
-
'+*self+*update' => {:
|
8
|
-
'+*self**create' => {:
|
9
|
-
'+*self**read' => {:
|
5
|
+
Card.create! name: '*recent settings', codename: 'recent_settings', type_code: :pointer, subcards: {
|
6
|
+
'+*self+*options' => {type_code: :search_type, content: '{"type":"setting"}'},
|
7
|
+
'+*self+*update' => {content: '[[Anyone]]'},
|
8
|
+
'+*self**create' => {content: '[[Anyone]]'},
|
9
|
+
'+*self**read' => {content: '[[Anyone]]'}
|
10
10
|
}
|
11
11
|
end
|
12
12
|
end
|
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
class AddDebuggerSessionCard < Card::CoreMigration
|
4
4
|
def up
|
5
|
-
Card.create! :
|
6
|
-
:
|
5
|
+
Card.create! name: '*debugger', type_code: :session, codename: 'debugger',
|
6
|
+
subcards: {
|
7
7
|
'+*self+*options'=>'[[on]]',
|
8
8
|
'+*self+*input'=>'[[checkbox]]',
|
9
9
|
'+*self+*help'=>'show more useful error pages'}
|
@@ -17,7 +17,7 @@ class RailsInflectionUpdates < Card::CoreMigration
|
|
17
17
|
twin.destroy
|
18
18
|
yield
|
19
19
|
elsif !card.trash
|
20
|
-
raise Card::Oops.new
|
20
|
+
raise Card::Oops.new("Your deck has two different cards with names '#{card.name}' and '#{twin.name}'. After this update it's no longer possible to differentiate between those two names. Please rename or delete one of the two cards and run the update again." )
|
21
21
|
end
|
22
22
|
else
|
23
23
|
yield
|
@@ -47,7 +47,7 @@ class RailsInflectionUpdates < Card::CoreMigration
|
|
47
47
|
if name =~ plural
|
48
48
|
# can't use fetch, because it uses the wrong key
|
49
49
|
# find_by_name is case-insensitve and finds the wrong cards for camel case names
|
50
|
-
card = Card.where(:name
|
50
|
+
card = Card.where(name: name).select {|card| card.name == name}.first
|
51
51
|
|
52
52
|
unless_name_collision(card) do
|
53
53
|
apply_to_content << i
|
@@ -55,14 +55,14 @@ class RailsInflectionUpdates < Card::CoreMigration
|
|
55
55
|
if Card.find_by_key new_key
|
56
56
|
puts "Could not update #{name}. Key '#{new_key}' already exists."
|
57
57
|
else
|
58
|
-
card.update_attributes! :
|
58
|
+
card.update_attributes! key: new_key
|
59
59
|
end
|
60
60
|
end
|
61
61
|
end
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
cards_with_css = Card.search :
|
65
|
+
cards_with_css = Card.search type: ['in','html', 'css', 'scss']
|
66
66
|
cards_with_css.each do |card|
|
67
67
|
new_content = card.content
|
68
68
|
content_changed = false
|
@@ -75,7 +75,7 @@ class RailsInflectionUpdates < Card::CoreMigration
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
if content_changed
|
78
|
-
card.update_attributes! :
|
78
|
+
card.update_attributes! content: new_content
|
79
79
|
end
|
80
80
|
end
|
81
81
|
end
|
@@ -14,23 +14,23 @@ class UpdateFileAndImageCards < Card::CoreMigration
|
|
14
14
|
def up
|
15
15
|
# use codenames for the filecards not for the left parts
|
16
16
|
if (credit = Card[:credit]) && (card = Card.fetch "#{credit.name}+image")
|
17
|
-
card.update_attributes! :
|
17
|
+
card.update_attributes! codename: 'credit_image'
|
18
18
|
end
|
19
19
|
%w( cerulean_skin cosmo_skin cyborg_skin darkly_skin flatly_skin journal_skin lumen_skin paper_skin readable_skin sandstone_skin simplex_skin slate_skin spacelab_skin superhero_skin united_skin yeti_skin ).each do |name|
|
20
20
|
if (card=Card[name.to_sym])
|
21
|
-
card.update_attributes! :
|
21
|
+
card.update_attributes! codename: nil
|
22
22
|
if (card = Card.fetch "#{name}+image")
|
23
|
-
card.update_attributes! :
|
23
|
+
card.update_attributes! codename: "#{name}_image"
|
24
24
|
end
|
25
25
|
end
|
26
26
|
end
|
27
27
|
|
28
28
|
Card::Cache.reset_global
|
29
|
-
Card.search(:
|
29
|
+
Card.search(type: [:in, 'file', 'image']).each do |card|
|
30
30
|
card.actions.each do |action|
|
31
31
|
if (content_change = action.change_for(:db_content).first)
|
32
32
|
original_filename = content_change.value.split("\n").first
|
33
|
-
action.update_attributes! :
|
33
|
+
action.update_attributes! comment: original_filename
|
34
34
|
end
|
35
35
|
end
|
36
36
|
if card.content.present?
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
class CreateReferencesForSearchCards < Card::CoreMigration
|
4
4
|
def up
|
5
|
-
Card.where(:
|
5
|
+
Card.where(type_id: Card::SearchTypeID).find_each.with_index do |card, index|
|
6
6
|
card.update_references
|
7
7
|
puts "completed #{index} search cards" if index % 100 == 0
|
8
8
|
end
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
class UpdateFileHistory < Card::CoreMigration
|
4
4
|
def up
|
5
|
-
Card.search(:
|
5
|
+
Card.search(type: [:in, 'file', 'image']).each do |card|
|
6
6
|
card.actions.each do |action|
|
7
7
|
if (content_change = action.change_for(:db_content).first)
|
8
8
|
original_filename, file_type, action_id, mod = content_change.value.split("\n")
|
@@ -13,12 +13,12 @@ class UpdateFileHistory < Card::CoreMigration
|
|
13
13
|
else
|
14
14
|
"~#{card.id}/#{action_id}#{::File.extname(original_filename)}"
|
15
15
|
end
|
16
|
-
content_change.update_attributes! :value
|
16
|
+
content_change.update_attributes! value: value
|
17
17
|
end
|
18
18
|
end
|
19
19
|
end
|
20
20
|
end
|
21
|
-
Card.search( :
|
21
|
+
Card.search( right: { codename: 'machine_output' } ).each do |card|
|
22
22
|
card.delete!
|
23
23
|
end
|
24
24
|
end
|
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
class AttachmentUploadCards < Card::CoreMigration
|
4
4
|
def up
|
5
|
-
Card.create! :
|
6
|
-
Card.create! :
|
5
|
+
Card.create! name: '*new file', type: 'File', codename: 'new_file'
|
6
|
+
Card.create! name: '*new image', type: 'Image', codename: 'new_image'
|
7
7
|
|
8
8
|
if js_output = Card['*all+*script+*machine output']
|
9
9
|
#perhaps too narrow?
|
data/lib/card.rb
CHANGED
@@ -34,11 +34,11 @@ class Card < ActiveRecord::Base
|
|
34
34
|
require_dependency 'card/reference'
|
35
35
|
require_dependency 'card/view_cache'
|
36
36
|
|
37
|
-
has_many :references_from, :
|
38
|
-
has_many :references_to, :
|
37
|
+
has_many :references_from, class_name: :Reference, foreign_key: :referee_id
|
38
|
+
has_many :references_to, class_name: :Reference, foreign_key: :referer_id
|
39
39
|
has_many :acts, -> { order :id }
|
40
|
-
has_many :actions, -> { where( :
|
41
|
-
has_many :drafts, -> { where( :
|
40
|
+
has_many :actions, -> { where( draft: [nil,false]).order :id }
|
41
|
+
has_many :drafts, -> { where( draft: true ).order :id }, class_name: :Action
|
42
42
|
|
43
43
|
cattr_accessor :set_patterns, :error_codes, :serializable_attributes, :set_specific_attributes
|
44
44
|
@@set_patterns, @@error_codes = [], {}
|
@@ -28,11 +28,11 @@ module ActiveRecord
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def custom_cast_types
|
31
|
-
{ :
|
32
|
-
:
|
33
|
-
:
|
34
|
-
:
|
35
|
-
:
|
31
|
+
{ string: { name: 'char' },
|
32
|
+
integer: { name: 'signed' },
|
33
|
+
text: { name: 'char' },
|
34
|
+
float: { name: 'decimal' },
|
35
|
+
binary: { name: 'binary' } }
|
36
36
|
end
|
37
37
|
end
|
38
38
|
|
@@ -50,13 +50,13 @@ module ActiveRecord
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
end
|
53
|
-
|
53
|
+
|
54
54
|
module Transactions
|
55
55
|
#FIXME!!
|
56
56
|
# the following code is already in Rails 4 (see https://github.com/rails/rails/commit/c8792c7b2ea4f5fe7a5610225433ea8dd8d0f83e)
|
57
57
|
# it allows manual rollbacks in after_save (eg store events) to reset the object correctly
|
58
58
|
# hopefully we can soon get rid of this code!
|
59
|
-
|
59
|
+
|
60
60
|
def with_transaction_returning_status
|
61
61
|
status = nil
|
62
62
|
self.class.transaction do
|
@@ -73,5 +73,5 @@ module ActiveRecord
|
|
73
73
|
status
|
74
74
|
end
|
75
75
|
end
|
76
|
-
|
76
|
+
|
77
77
|
end
|
data/lib/card/auth.rb
CHANGED
@@ -34,9 +34,9 @@ class Card
|
|
34
34
|
# find accounted by email
|
35
35
|
def [] email
|
36
36
|
Auth.as_bot do
|
37
|
-
Card.search( :
|
38
|
-
{:
|
39
|
-
{:
|
37
|
+
Card.search( right_plus: [
|
38
|
+
{id: Card::AccountID},
|
39
|
+
{right_plus: [{id: Card::EmailID},{ content: email.strip.downcase }]}
|
40
40
|
]).first
|
41
41
|
end
|
42
42
|
end
|
@@ -163,17 +163,17 @@ class Card
|
|
163
163
|
|
164
164
|
def createable_types
|
165
165
|
type_names = Auth.as_bot do
|
166
|
-
Card.search :
|
166
|
+
Card.search type: Card::CardtypeID, return: :name, not: { codename: ['in'] + NON_CREATEABLE_TYPES }
|
167
167
|
end
|
168
168
|
type_names.reject do |name|
|
169
|
-
!Card.new( :
|
169
|
+
!Card.new( type: name ).ok? :create
|
170
170
|
end.sort
|
171
171
|
end
|
172
172
|
|
173
173
|
private
|
174
174
|
|
175
175
|
def account_count
|
176
|
-
as_bot { Card.count_by_wql :
|
176
|
+
as_bot { Card.count_by_wql right: Card[:account].name }
|
177
177
|
end
|
178
178
|
|
179
179
|
end
|
data/lib/card/cache.rb
CHANGED
@@ -25,7 +25,7 @@ class Card
|
|
25
25
|
class << self
|
26
26
|
def [] klass
|
27
27
|
raise "nil klass" if klass.nil?
|
28
|
-
cache_by_class[klass] ||= new :
|
28
|
+
cache_by_class[klass] ||= new class: klass, store: (@@no_rails_cache ? nil : Cardio.cache)
|
29
29
|
end
|
30
30
|
|
31
31
|
def renew
|
data/lib/card/chunk.rb
CHANGED
@@ -21,7 +21,7 @@ class Card
|
|
21
21
|
|
22
22
|
class << self
|
23
23
|
def register_class klass, hash
|
24
|
-
klass.config = hash.merge :
|
24
|
+
klass.config = hash.merge class: klass
|
25
25
|
prefix_index = hash[:idx_char] || :default # this is gross and needs to be moved out.
|
26
26
|
prefix_map[prefix_index] = klass.config
|
27
27
|
end
|
data/lib/card/content.rb
CHANGED
data/lib/card/diff.rb
CHANGED
@@ -38,7 +38,7 @@ module Card::Diff
|
|
38
38
|
# :pointer = remove all double square brackets
|
39
39
|
# :raw = escape html tags and compare everything
|
40
40
|
#
|
41
|
-
# :
|
41
|
+
# summary: {length: <number> , joint: <string> }
|
42
42
|
|
43
43
|
def initialize(old_version, new_version, opts={})
|
44
44
|
@new_version = new_version
|
@@ -141,12 +141,12 @@ module Card::Diff
|
|
141
141
|
new_words, new_ex = separate_comparables_from_excludees new_text
|
142
142
|
|
143
143
|
@words = {
|
144
|
-
:
|
145
|
-
:
|
144
|
+
old: old_words,
|
145
|
+
new: new_words
|
146
146
|
}
|
147
147
|
@excludees = {
|
148
|
-
:
|
149
|
-
:
|
148
|
+
old: ExcludeeIterator.new(old_ex),
|
149
|
+
new: ExcludeeIterator.new(new_ex)
|
150
150
|
}
|
151
151
|
end
|
152
152
|
|
@@ -283,9 +283,9 @@ module Card::Diff
|
|
283
283
|
list.each_with_index.inject([[],[]]) do |res, pair|
|
284
284
|
element, index = pair
|
285
285
|
if element.match @disjunction_pattern
|
286
|
-
res[1] << {:
|
286
|
+
res[1] << {chunk_index: index, element: element, type: :disjunction}
|
287
287
|
elsif element.match @exclude_pattern
|
288
|
-
res[1] << {:
|
288
|
+
res[1] << {chunk_index: index, element: element, type: :excludee}
|
289
289
|
else
|
290
290
|
res[0] << element
|
291
291
|
end
|
@@ -357,7 +357,7 @@ module Card::Diff
|
|
357
357
|
|
358
358
|
def add_chunk text, action
|
359
359
|
if @remaining_chars > 0
|
360
|
-
@chunks << {:
|
360
|
+
@chunks << {action: action, text: text}
|
361
361
|
@remaining_chars -= text.size
|
362
362
|
end
|
363
363
|
end
|
@@ -382,9 +382,9 @@ module Card::Diff
|
|
382
382
|
@chunks.pop
|
383
383
|
if index-1 >= 0
|
384
384
|
if @chunks[index-1][:action] == :added
|
385
|
-
@chunks << {:
|
385
|
+
@chunks << {action: :ellipsis, text: @joint}
|
386
386
|
elsif @chunks[index-1][:action] == :deleted
|
387
|
-
@chunks << {:
|
387
|
+
@chunks << {action: :added, text: @joint}
|
388
388
|
end
|
389
389
|
end
|
390
390
|
break
|