card 1.99.4 → 1.99.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/card/content.rb +7 -1
- data/lib/card/content/chunk.rb +1 -0
- data/lib/card/format.rb +4 -0
- data/lib/card/format/content.rb +2 -1
- data/lib/card/query.rb +2 -2
- data/lib/card/query/abstract_query.rb +1 -1
- data/lib/card/query/sql_statement.rb +0 -4
- data/lib/card/view/cache.rb +3 -3
- data/lib/card/view/cache/cache_action.rb +2 -5
- data/mod/basic_formats/set/all/all_csv.rb +2 -6
- data/mod/basic_formats/set/all/json.rb +1 -1
- data/mod/core/chunk/{literal.rb → escaped_literal.rb} +1 -1
- data/mod/core/chunk/keep_escaped_literal.rb +26 -0
- data/mod/core/format/html_format.rb +4 -0
- data/mod/core/set/all/cache.rb +12 -16
- data/mod/core/set/all/chunk.rb +73 -78
- data/mod/core/spec/chunk/{literal_spec.rb → escaped_literal_spec.rb} +1 -1
- data/mod/core/spec/chunk/keep_escaped_literal_spec.rb +21 -0
- data/mod/core/spec/set/all/chunk_spec.rb +1 -0
- data/mod/core/spec/set/all/event_conditions_spec.rb +3 -1
- data/mod/edit/set/all/form.rb +3 -3
- data/mod/edit/set/all/form_buttons.rb +1 -1
- data/mod/edit/spec/set/all/form_spec.rb +1 -1
- data/mod/follow/set/all/notify.rb +2 -2
- data/mod/history/lib/card/act/act_renderer/relative_act_renderer.rb +3 -2
- data/mod/history/set/all/history.rb +27 -0
- data/mod/history/set/all/history/act_listing.rb +1 -1
- data/mod/history/set/all/history/events.rb +1 -0
- data/mod/machines/file/all_script_machine_output/file.js +4 -1
- data/mod/machines/lib/javascript/decko/bridge.js.coffee +3 -0
- data/mod/machines/lib/javascript/decko/slotter.js.coffee +15 -2
- data/mod/search/set/abstract/03_filter/form_helper.rb +4 -16
- data/mod/standard/set/all/rich_html/content.rb +1 -1
- data/mod/standard/set/type/cardtype.rb +1 -3
- data/mod/standard/spec/set/all/history_spec.rb +15 -0
- data/tmpsets/set/{mod002-admin → mod001-admin}/self/admin.rb +32 -54
- data/tmpsets/set/{mod002-admin → mod001-admin}/self/admin_info.rb +26 -24
- data/tmpsets/set/mod001-admin/self/version.rb +15 -0
- data/tmpsets/set/mod002-core/abstract/code_file.rb +79 -0
- data/tmpsets/set/{mod003-core/all/abort.rb → mod002-core/all/actify.rb} +48 -31
- data/tmpsets/set/{mod003-core → mod002-core}/all/active_card.rb +6 -7
- data/tmpsets/set/mod002-core/all/collection.rb +313 -0
- data/tmpsets/set/mod002-core/all/content.rb +69 -0
- data/tmpsets/set/{mod003-core → mod002-core}/all/debug.rb +5 -7
- data/tmpsets/set/mod002-core/all/erb.rb +18 -0
- data/tmpsets/set/mod002-core/all/event.rb +62 -0
- data/tmpsets/set/mod002-core/all/export.rb +49 -0
- data/tmpsets/set/mod002-core/all/fetch.rb +335 -0
- data/tmpsets/set/mod002-core/all/haml.rb +14 -0
- data/tmpsets/set/mod002-core/all/initialize.rb +42 -0
- data/tmpsets/set/mod002-core/all/location_history.rb +15 -0
- data/tmpsets/set/mod002-core/all/name.rb +282 -0
- data/tmpsets/set/mod002-core/all/name_validations.rb +65 -0
- data/tmpsets/set/{mod003-core → mod002-core}/all/pattern.rb +15 -12
- data/tmpsets/set/{mod003-core → mod002-core}/all/permissions.rb +101 -63
- data/tmpsets/set/mod002-core/all/phases.rb +23 -0
- data/tmpsets/set/{mod003-core → mod002-core}/all/references.rb +33 -42
- data/tmpsets/set/{mod003-core → mod002-core}/all/rules.rb +23 -17
- data/tmpsets/set/mod002-core/all/stages.rb +31 -0
- data/tmpsets/set/mod002-core/all/states.rb +31 -0
- data/tmpsets/set/{mod003-core → mod002-core}/all/subcards.rb +20 -45
- data/tmpsets/set/{mod003-core → mod002-core}/all/templating.rb +22 -24
- data/tmpsets/set/mod002-core/all/tracked_attributes.rb +78 -0
- data/tmpsets/set/mod002-core/all/trash.rb +113 -0
- data/tmpsets/set/{mod003-core → mod002-core}/all/type.rb +13 -23
- data/tmpsets/set/{mod015-settings/right/read.rb → mod002-core/all/update_read_rules.rb} +56 -43
- data/tmpsets/set/mod002-core/all/utils.rb +62 -0
- data/tmpsets/set/mod002-core/all/view_cache.rb +16 -0
- data/tmpsets/set/mod003-history/all/actions.rb +60 -0
- data/tmpsets/set/mod003-history/all/content_history.rb +168 -0
- data/tmpsets/set/mod003-history/all/history.rb +408 -0
- data/tmpsets/set/mod004-basic_formats/all/all_css.rb +45 -0
- data/tmpsets/set/mod004-basic_formats/all/all_csv.rb +56 -0
- data/tmpsets/set/mod004-basic_formats/all/all_js.rb +13 -0
- data/tmpsets/set/mod004-basic_formats/all/base.rb +155 -0
- data/tmpsets/set/mod004-basic_formats/all/file.rb +16 -0
- data/tmpsets/set/mod004-basic_formats/all/json.rb +76 -0
- data/tmpsets/set/mod004-basic_formats/all/rss.rb +77 -0
- data/tmpsets/set/mod004-basic_formats/all/text.rb +13 -0
- data/tmpsets/set/mod004-basic_formats/self/01_head/javascript.rb +79 -0
- data/tmpsets/set/mod004-basic_formats/self/head.rb +101 -0
- data/tmpsets/set/mod005-pointer/abstract/01_pointer.rb +193 -0
- data/tmpsets/set/mod005-pointer/abstract/01_pointer/edit.rb +224 -0
- data/tmpsets/set/mod005-pointer/abstract/code_pointer.rb +16 -0
- data/tmpsets/set/mod005-pointer/self/script_editors.rb +8 -0
- data/tmpsets/set/mod005-pointer/self/script_mods.rb +8 -0
- data/tmpsets/set/mod005-pointer/self/script_pointer_config.rb +10 -0
- data/tmpsets/set/mod005-pointer/type/pointer.rb +8 -0
- data/tmpsets/set/mod006-ace_editor/abstract/ace_editor.rb +18 -0
- data/tmpsets/set/mod006-ace_editor/self/script_ace.rb +10 -0
- data/tmpsets/set/mod006-ace_editor/self/script_ace_config.rb +12 -0
- data/tmpsets/set/mod007-prosemirror_editor/abstract/prosemirror_editor.rb +14 -0
- data/tmpsets/set/mod007-prosemirror_editor/self/script_prosemirror.rb +10 -0
- data/tmpsets/set/mod007-prosemirror_editor/self/script_prosemirror_config.rb +13 -0
- data/tmpsets/set/{mod012-solid_cache → mod009-solid_cache}/abstract/solid_cache.rb +38 -47
- data/tmpsets/set/mod009-solid_cache/all/solid_cache.rb +21 -0
- data/tmpsets/set/mod009-solid_cache/right/solid_cache.rb +39 -0
- data/tmpsets/set/mod010-basic_types/type/html.rb +26 -0
- data/tmpsets/set/mod010-basic_types/type/plain_text.rb +19 -0
- data/tmpsets/set/mod011-machines/abstract/machine.rb +277 -0
- data/tmpsets/set/{mod014-machines → mod011-machines}/abstract/machine_input.rb +13 -11
- data/tmpsets/set/mod011-machines/abstract/script.rb +49 -0
- data/tmpsets/set/mod011-machines/all/reset_machines.rb +19 -0
- data/tmpsets/set/mod011-machines/right/machine_cache.rb +18 -0
- data/tmpsets/set/mod011-machines/right/machine_input.rb +10 -0
- data/tmpsets/set/{mod014-machines → mod011-machines}/right/machine_output.rb +8 -14
- data/tmpsets/set/mod011-machines/self/script_card_menu.rb +8 -0
- data/tmpsets/set/mod011-machines/self/script_html5shiv_printshiv.rb +8 -0
- data/tmpsets/set/mod011-machines/self/script_jquery.rb +8 -0
- data/tmpsets/set/mod011-machines/self/script_jquery_helper.rb +16 -0
- data/tmpsets/set/mod011-machines/self/script_slot.rb +14 -0
- data/tmpsets/set/mod011-machines/self/style_bootstrap_compatible.rb +8 -0
- data/tmpsets/set/mod011-machines/self/style_cards.rb +8 -0
- data/tmpsets/set/mod011-machines/self/style_jquery_ui_smoothness.rb +8 -0
- data/tmpsets/set/mod011-machines/type/coffee_script.rb +43 -0
- data/tmpsets/set/mod011-machines/type/css.rb +67 -0
- data/tmpsets/set/mod011-machines/type/java_script.rb +36 -0
- data/tmpsets/set/mod011-machines/type/scss.rb +21 -0
- data/tmpsets/set/mod011-machines/type/skin.rb +13 -0
- data/tmpsets/set/mod012-settings/abstract/permission.rb +119 -0
- data/tmpsets/set/mod012-settings/right/add_help.rb +18 -0
- data/tmpsets/set/mod012-settings/right/comment.rb +8 -0
- data/tmpsets/set/mod012-settings/right/create.rb +8 -0
- data/tmpsets/set/mod012-settings/right/default.rb +14 -0
- data/tmpsets/set/mod012-settings/right/delete.rb +8 -0
- data/tmpsets/set/mod012-settings/right/help.rb +10 -0
- data/tmpsets/set/mod012-settings/right/read.rb +10 -0
- data/tmpsets/set/mod012-settings/right/script.rb +16 -0
- data/tmpsets/set/mod012-settings/right/structure.rb +68 -0
- data/tmpsets/set/mod012-settings/right/style.rb +17 -0
- data/tmpsets/set/mod012-settings/right/update.rb +8 -0
- data/tmpsets/set/mod012-settings/self/accountable.rb +10 -0
- data/tmpsets/set/mod012-settings/self/add_help.rb +9 -0
- data/tmpsets/set/mod012-settings/self/autoname.rb +9 -0
- data/tmpsets/set/mod012-settings/self/captcha.rb +9 -0
- data/tmpsets/set/mod012-settings/self/create.rb +9 -0
- data/tmpsets/set/mod012-settings/self/default.rb +9 -0
- data/tmpsets/set/mod012-settings/self/default_html_view.rb +9 -0
- data/tmpsets/set/mod012-settings/self/delete.rb +9 -0
- data/tmpsets/set/mod012-settings/self/follow_fields.rb +9 -0
- data/tmpsets/set/mod012-settings/self/help.rb +9 -0
- data/tmpsets/set/mod012-settings/self/input.rb +11 -0
- data/tmpsets/set/mod012-settings/self/layout.rb +9 -0
- data/tmpsets/set/mod012-settings/self/on_create.rb +9 -0
- data/tmpsets/set/mod012-settings/self/on_delete.rb +9 -0
- data/tmpsets/set/mod012-settings/self/on_update.rb +9 -0
- data/tmpsets/set/mod012-settings/self/options.rb +11 -0
- data/tmpsets/set/mod012-settings/self/options_label.rb +11 -0
- data/tmpsets/set/mod012-settings/self/read.rb +9 -0
- data/tmpsets/set/mod012-settings/self/recent_settings.rb +10 -0
- data/tmpsets/set/mod012-settings/self/script.rb +9 -0
- data/tmpsets/set/mod012-settings/self/structure.rb +9 -0
- data/tmpsets/set/mod012-settings/self/style.rb +9 -0
- data/tmpsets/set/mod012-settings/self/table_of_contents.rb +9 -0
- data/tmpsets/set/mod012-settings/self/thanks.rb +9 -0
- data/tmpsets/set/mod012-settings/self/update.rb +9 -0
- data/tmpsets/set/{mod015-settings → mod012-settings}/type/setting.rb +36 -33
- data/tmpsets/set/mod013-email/all/email_html.rb +11 -0
- data/tmpsets/set/mod013-email/all/email_text.rb +12 -0
- data/tmpsets/set/mod013-email/all/follow.rb +253 -0
- data/tmpsets/set/mod013-email/all/notify.rb +271 -0
- data/tmpsets/set/mod013-email/all/observer.rb +33 -0
- data/tmpsets/set/mod013-email/right/bcc.rb +47 -0
- data/tmpsets/set/mod013-email/right/cc.rb +10 -0
- data/tmpsets/set/mod013-email/right/follow.rb +106 -0
- data/tmpsets/set/mod013-email/right/follow_fields.rb +10 -0
- data/tmpsets/set/mod013-email/right/followers.rb +41 -0
- data/tmpsets/set/mod013-email/right/following.rb +65 -0
- data/tmpsets/set/mod013-email/right/from.rb +10 -0
- data/tmpsets/set/mod013-email/right/html_message.rb +10 -0
- data/tmpsets/set/mod013-email/right/to.rb +10 -0
- data/tmpsets/set/mod013-email/self/always.rb +20 -0
- data/tmpsets/set/mod013-email/self/created.rb +26 -0
- data/tmpsets/set/{mod017-follow → mod013-email}/self/edited.rb +6 -8
- data/tmpsets/set/mod013-email/self/follow.rb +9 -0
- data/tmpsets/set/mod013-email/self/follow_defaults.rb +75 -0
- data/tmpsets/set/mod013-email/self/never.rb +20 -0
- data/tmpsets/set/mod013-email/type/email_template.rb +133 -0
- data/tmpsets/set/mod013-email/type_plus_right/user/follow.rb +180 -0
- data/tmpsets/set/{mod018-developer → mod014-developer}/all/event_viz.rb +9 -10
- data/tmpsets/set/{mod018-developer → mod014-developer}/all/view_viz.rb +6 -8
- data/tmpsets/set/{mod018-developer → mod014-developer}/right/debug.rb +10 -12
- data/tmpsets/set/{mod019-carrierwave → mod015-carrierwave}/abstract/attachment.rb +21 -27
- data/tmpsets/set/mod015-carrierwave/abstract/attachment/paths.rb +57 -0
- data/tmpsets/set/{mod019-carrierwave → mod015-carrierwave}/abstract/attachment/storage_type.rb +40 -64
- data/tmpsets/set/{mod019-carrierwave → mod015-carrierwave}/abstract/attachment/upload_cache.rb +17 -28
- data/tmpsets/set/{mod019-carrierwave → mod015-carrierwave}/all/file_utils.rb +7 -18
- data/tmpsets/set/{mod019-carrierwave → mod015-carrierwave}/self/admin.rb +8 -10
- data/tmpsets/set/mod015-carrierwave/type/file.rb +158 -0
- data/tmpsets/set/mod015-carrierwave/type/image.rb +97 -0
- data/tmpsets/set/mod016-standard/all/comment.rb +67 -0
- data/tmpsets/set/mod016-standard/all/error.rb +229 -0
- data/tmpsets/set/mod016-standard/all/links.rb +165 -0
- data/tmpsets/set/{mod021-standard → mod016-standard}/all/list_changes.rb +9 -15
- data/tmpsets/set/mod016-standard/all/rich_html/content.rb +261 -0
- data/tmpsets/set/mod016-standard/all/rich_html/editing.rb +247 -0
- data/tmpsets/set/mod016-standard/all/rich_html/form.rb +298 -0
- data/tmpsets/set/mod016-standard/all/rich_html/header.rb +78 -0
- data/tmpsets/set/mod016-standard/all/rich_html/menu.rb +154 -0
- data/tmpsets/set/mod016-standard/all/rich_html/modal.rb +58 -0
- data/tmpsets/set/mod016-standard/all/rich_html/toolbar.rb +312 -0
- data/tmpsets/set/mod016-standard/all/rich_html/wrapper.rb +191 -0
- data/tmpsets/set/mod016-standard/right/discussion.rb +10 -0
- data/tmpsets/set/mod016-standard/right/when_created.rb +14 -0
- data/tmpsets/set/mod016-standard/right/when_last_edited.rb +14 -0
- data/tmpsets/set/mod016-standard/rstar/rules.rb +107 -0
- data/tmpsets/set/mod016-standard/rstar/rules_editor.rb +371 -0
- data/tmpsets/set/mod016-standard/self/alerts.rb +12 -0
- data/tmpsets/set/mod016-standard/self/codenames.rb +7 -0
- data/tmpsets/set/mod016-standard/self/foot.rb +15 -0
- data/tmpsets/set/mod016-standard/self/navbox.rb +36 -0
- data/tmpsets/set/mod016-standard/self/now.rb +14 -0
- data/tmpsets/set/mod016-standard/self/recent.rb +34 -0
- data/tmpsets/set/mod016-standard/self/search.rb +71 -0
- data/tmpsets/set/{mod021-standard → mod016-standard}/type/basic.rb +24 -37
- data/tmpsets/set/mod016-standard/type/cardtype.rb +81 -0
- data/tmpsets/set/mod016-standard/type/date.rb +15 -0
- data/tmpsets/set/mod016-standard/type/layout_type.rb +17 -0
- data/tmpsets/set/{mod021-standard → mod016-standard}/type/list.rb +26 -27
- data/tmpsets/set/mod016-standard/type/listed_by.rb +85 -0
- data/tmpsets/set/mod016-standard/type/number.rb +25 -0
- data/tmpsets/set/mod016-standard/type/phrase.rb +10 -0
- data/tmpsets/set/mod016-standard/type/search_type.rb +339 -0
- data/tmpsets/set/mod016-standard/type/session.rb +42 -0
- data/tmpsets/set/mod016-standard/type/set.rb +371 -0
- data/tmpsets/set/mod016-standard/type/toggle.rb +19 -0
- data/tmpsets/set/mod016-standard/type/uri.rb +18 -0
- data/tmpsets/set/{mod025-account → mod017-account}/all/account.rb +12 -18
- data/tmpsets/set/mod017-account/right/account.rb +196 -0
- data/tmpsets/set/mod017-account/right/email.rb +61 -0
- data/tmpsets/set/{mod025-account → mod017-account}/right/password.rb +20 -29
- data/tmpsets/set/mod017-account/right/salt.rb +12 -0
- data/tmpsets/set/mod017-account/right/status.rb +16 -0
- data/tmpsets/set/mod017-account/right/token.rb +57 -0
- data/tmpsets/set/mod017-account/self/account_links.rb +72 -0
- data/tmpsets/set/mod017-account/self/signin.rb +165 -0
- data/tmpsets/set/mod017-account/type/signup.rb +175 -0
- data/tmpsets/set/mod017-account/type/user.rb +88 -0
- data/tmpsets/set/{mod026-bootstrap → mod018-bootstrap}/all/bootstrap/form.rb +9 -11
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/helper.rb +236 -0
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/table.rb +68 -0
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/tabs.rb +88 -0
- data/tmpsets/set/mod018-bootstrap/all/bootstrap/wrapper.rb +18 -0
- data/tmpsets/set/mod018-bootstrap/all/rich_bootstrap.rb +13 -0
- data/tmpsets/set/mod018-bootstrap/self/bootstrap_cards.rb +8 -0
- data/tmpsets/set/mod018-bootstrap/self/bootstrap_js.rb +12 -0
- data/tmpsets/set/mod018-bootstrap/self/bootswatch_shared.rb +47 -0
- data/tmpsets/set/mod018-bootstrap/self/script_mods.rb +7 -0
- data/tmpsets/set/mod018-bootstrap/self/smartmenu_css.rb +12 -0
- data/tmpsets/set/mod018-bootstrap/self/smartmenu_js.rb +12 -0
- data/tmpsets/set_pattern/100-all.rb +13 -11
- data/tmpsets/set_pattern/101-all_plus.rb +13 -11
- data/tmpsets/set_pattern/102-type.rb +14 -12
- data/tmpsets/set_pattern/103-star.rb +15 -13
- data/tmpsets/set_pattern/104-rstar.rb +15 -13
- data/tmpsets/set_pattern/105-right.rb +33 -0
- data/tmpsets/set_pattern/106-type_plus_right.rb +39 -0
- data/tmpsets/set_pattern/107-self.rb +32 -0
- metadata +226 -382
- data/tmpsets/set/mod001-utility/abstract/bs_badge.rb +0 -30
- data/tmpsets/set/mod001-utility/abstract/filterable.rb +0 -25
- data/tmpsets/set/mod001-utility/abstract/media.rb +0 -42
- data/tmpsets/set/mod001-utility/abstract/utility.rb +0 -22
- data/tmpsets/set/mod002-admin/self/recaptcha_proxy.rb +0 -12
- data/tmpsets/set/mod002-admin/self/recaptcha_secret_key.rb +0 -18
- data/tmpsets/set/mod002-admin/self/recaptcha_site_key.rb +0 -18
- data/tmpsets/set/mod002-admin/self/trash.rb +0 -72
- data/tmpsets/set/mod002-admin/self/version.rb +0 -22
- data/tmpsets/set/mod003-core/abstract/code_file.rb +0 -91
- data/tmpsets/set/mod003-core/abstract/haml_file.rb +0 -29
- data/tmpsets/set/mod003-core/abstract/lock.rb +0 -35
- data/tmpsets/set/mod003-core/abstract/vendor_code_file.rb +0 -19
- data/tmpsets/set/mod003-core/all/actify.rb +0 -74
- data/tmpsets/set/mod003-core/all/assign_attributes.rb +0 -131
- data/tmpsets/set/mod003-core/all/cache.rb +0 -123
- data/tmpsets/set/mod003-core/all/chunk.rb +0 -156
- data/tmpsets/set/mod003-core/all/codename.rb +0 -36
- data/tmpsets/set/mod003-core/all/collection.rb +0 -64
- data/tmpsets/set/mod003-core/all/content.rb +0 -121
- data/tmpsets/set/mod003-core/all/contextual_content.rb +0 -37
- data/tmpsets/set/mod003-core/all/erb.rb +0 -20
- data/tmpsets/set/mod003-core/all/event_conditions.rb +0 -142
- data/tmpsets/set/mod003-core/all/export.rb +0 -77
- data/tmpsets/set/mod003-core/all/extended.rb +0 -58
- data/tmpsets/set/mod003-core/all/fetch.rb +0 -159
- data/tmpsets/set/mod003-core/all/fetch_helper.rb +0 -162
- data/tmpsets/set/mod003-core/all/haml.rb +0 -84
- data/tmpsets/set/mod003-core/all/i18n.rb +0 -19
- data/tmpsets/set/mod003-core/all/initialize.rb +0 -55
- data/tmpsets/set/mod003-core/all/item.rb +0 -123
- data/tmpsets/set/mod003-core/all/layouts.rb +0 -43
- data/tmpsets/set/mod003-core/all/location_history.rb +0 -28
- data/tmpsets/set/mod003-core/all/name.rb +0 -242
- data/tmpsets/set/mod003-core/all/name_events.rb +0 -118
- data/tmpsets/set/mod003-core/all/observer.rb +0 -31
- data/tmpsets/set/mod003-core/all/phases.rb +0 -25
- data/tmpsets/set/mod003-core/all/rename.rb +0 -47
- data/tmpsets/set/mod003-core/all/stages.rb +0 -26
- data/tmpsets/set/mod003-core/all/states.rb +0 -91
- data/tmpsets/set/mod003-core/all/tabs.rb +0 -59
- data/tmpsets/set/mod003-core/all/trash.rb +0 -135
- data/tmpsets/set/mod003-core/all/update_read_rules.rb +0 -39
- data/tmpsets/set/mod003-core/all/utils.rb +0 -93
- data/tmpsets/set/mod004-virtual/abstract/virtual_cache.rb +0 -52
- data/tmpsets/set/mod005-history/all/history.rb +0 -85
- data/tmpsets/set/mod005-history/all/history/act_listing.rb +0 -133
- data/tmpsets/set/mod005-history/all/history/actions.rb +0 -133
- data/tmpsets/set/mod005-history/all/history/acts.rb +0 -21
- data/tmpsets/set/mod005-history/all/history/events.rb +0 -108
- data/tmpsets/set/mod005-history/all/history/last.rb +0 -107
- data/tmpsets/set/mod005-history/all/history/revision.rb +0 -73
- data/tmpsets/set/mod005-history/all/history/selected.rb +0 -73
- data/tmpsets/set/mod005-history/all/history/views.rb +0 -44
- data/tmpsets/set/mod005-history/all/history_bridge.rb +0 -75
- data/tmpsets/set/mod006-basic_formats/all/all_css.rb +0 -46
- data/tmpsets/set/mod006-basic_formats/all/all_csv.rb +0 -106
- data/tmpsets/set/mod006-basic_formats/all/all_js.rb +0 -19
- data/tmpsets/set/mod006-basic_formats/all/base.rb +0 -189
- data/tmpsets/set/mod006-basic_formats/all/file.rb +0 -18
- data/tmpsets/set/mod006-basic_formats/all/head.rb +0 -155
- data/tmpsets/set/mod006-basic_formats/all/json.rb +0 -161
- data/tmpsets/set/mod006-basic_formats/all/rss.rb +0 -85
- data/tmpsets/set/mod006-basic_formats/all/text.rb +0 -16
- data/tmpsets/set/mod006-basic_formats/self/head.rb +0 -31
- data/tmpsets/set/mod007-item/all/bar.rb +0 -124
- data/tmpsets/set/mod007-item/all/box.rb +0 -25
- data/tmpsets/set/mod008-pointer/abstract/00_paging_params.rb +0 -35
- data/tmpsets/set/mod008-pointer/abstract/01_paging.rb +0 -157
- data/tmpsets/set/mod008-pointer/abstract/01_paging/paging_links.rb +0 -98
- data/tmpsets/set/mod008-pointer/abstract/02_pointer.rb +0 -18
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/events.rb +0 -59
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/html_views.rb +0 -117
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/html_views/filter.rb +0 -73
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/item_api.rb +0 -181
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/options_api.rb +0 -93
- data/tmpsets/set/mod008-pointer/abstract/02_pointer/other_views.rb +0 -111
- data/tmpsets/set/mod008-pointer/abstract/code_pointer.rb +0 -44
- data/tmpsets/set/mod008-pointer/right/options.rb +0 -13
- data/tmpsets/set/mod008-pointer/self/input_options.rb +0 -22
- data/tmpsets/set/mod008-pointer/self/script_editors.rb +0 -10
- data/tmpsets/set/mod008-pointer/self/script_libraries.rb +0 -10
- data/tmpsets/set/mod008-pointer/self/script_mods.rb +0 -10
- data/tmpsets/set/mod008-pointer/self/script_pointer_config.rb +0 -18
- data/tmpsets/set/mod008-pointer/self/style_libraries.rb +0 -10
- data/tmpsets/set/mod008-pointer/self/style_mods.rb +0 -10
- data/tmpsets/set/mod008-pointer/type/pointer.rb +0 -19
- data/tmpsets/set/mod009-ace_editor/abstract/ace_editor.rb +0 -20
- data/tmpsets/set/mod009-ace_editor/self/script_ace.rb +0 -13
- data/tmpsets/set/mod009-ace_editor/self/script_ace_config.rb +0 -13
- data/tmpsets/set/mod010-prosemirror_editor/abstract/prosemirror_editor.rb +0 -16
- data/tmpsets/set/mod010-prosemirror_editor/self/script_prosemirror.rb +0 -13
- data/tmpsets/set/mod010-prosemirror_editor/self/script_prosemirror_config.rb +0 -14
- data/tmpsets/set/mod010-prosemirror_editor/self/style_prosemirror.rb +0 -12
- data/tmpsets/set/mod011-tinymce_editor/abstract/tinymce_editor.rb +0 -15
- data/tmpsets/set/mod011-tinymce_editor/self/script_tinymce.rb +0 -13
- data/tmpsets/set/mod011-tinymce_editor/self/script_tinymce_config.rb +0 -13
- data/tmpsets/set/mod012-solid_cache/all/solid_cache.rb +0 -23
- data/tmpsets/set/mod012-solid_cache/right/solid_cache.rb +0 -57
- data/tmpsets/set/mod013-basic_types/type/html.rb +0 -32
- data/tmpsets/set/mod013-basic_types/type/json.rb +0 -40
- data/tmpsets/set/mod013-basic_types/type/plain_text.rb +0 -18
- data/tmpsets/set/mod014-machines/abstract/machine.rb +0 -202
- data/tmpsets/set/mod014-machines/abstract/machine/output_cache.rb +0 -25
- data/tmpsets/set/mod014-machines/abstract/machine/output_update.rb +0 -68
- data/tmpsets/set/mod014-machines/abstract/script.rb +0 -93
- data/tmpsets/set/mod014-machines/abstract/skin_box.rb +0 -42
- data/tmpsets/set/mod014-machines/all/reset_machines.rb +0 -31
- data/tmpsets/set/mod014-machines/right/machine_cache.rb +0 -14
- data/tmpsets/set/mod014-machines/right/machine_input.rb +0 -16
- data/tmpsets/set/mod014-machines/self/script_decko.rb +0 -20
- data/tmpsets/set/mod014-machines/self/script_html5shiv_printshiv.rb +0 -20
- data/tmpsets/set/mod014-machines/self/script_jquery.rb +0 -19
- data/tmpsets/set/mod014-machines/self/script_jquery_helper.rb +0 -23
- data/tmpsets/set/mod014-machines/self/style_bootstrap_compatible.rb +0 -10
- data/tmpsets/set/mod014-machines/self/style_cards.rb +0 -10
- data/tmpsets/set/mod014-machines/self/style_jquery_ui_smoothness.rb +0 -10
- data/tmpsets/set/mod014-machines/type/coffee_script.rb +0 -34
- data/tmpsets/set/mod014-machines/type/css.rb +0 -94
- data/tmpsets/set/mod014-machines/type/java_script.rb +0 -18
- data/tmpsets/set/mod014-machines/type/scss.rb +0 -30
- data/tmpsets/set/mod014-machines/type/skin.rb +0 -18
- data/tmpsets/set/mod015-settings/abstract/permission.rb +0 -127
- data/tmpsets/set/mod015-settings/abstract/templated_nests.rb +0 -16
- data/tmpsets/set/mod015-settings/right/add_help.rb +0 -10
- data/tmpsets/set/mod015-settings/right/autoname.rb +0 -12
- data/tmpsets/set/mod015-settings/right/comment.rb +0 -10
- data/tmpsets/set/mod015-settings/right/create.rb +0 -10
- data/tmpsets/set/mod015-settings/right/default.rb +0 -27
- data/tmpsets/set/mod015-settings/right/delete.rb +0 -10
- data/tmpsets/set/mod015-settings/right/help.rb +0 -23
- data/tmpsets/set/mod015-settings/right/script.rb +0 -22
- data/tmpsets/set/mod015-settings/right/structure.rb +0 -75
- data/tmpsets/set/mod015-settings/right/style.rb +0 -65
- data/tmpsets/set/mod015-settings/right/update.rb +0 -10
- data/tmpsets/set/mod015-settings/self/accountable.rb +0 -12
- data/tmpsets/set/mod015-settings/self/add_help.rb +0 -11
- data/tmpsets/set/mod015-settings/self/autoname.rb +0 -11
- data/tmpsets/set/mod015-settings/self/captcha.rb +0 -11
- data/tmpsets/set/mod015-settings/self/create.rb +0 -12
- data/tmpsets/set/mod015-settings/self/csv_structure.rb +0 -11
- data/tmpsets/set/mod015-settings/self/default.rb +0 -12
- data/tmpsets/set/mod015-settings/self/default_html_view.rb +0 -11
- data/tmpsets/set/mod015-settings/self/delete.rb +0 -12
- data/tmpsets/set/mod015-settings/self/follow_fields.rb +0 -11
- data/tmpsets/set/mod015-settings/self/head.rb +0 -11
- data/tmpsets/set/mod015-settings/self/help.rb +0 -12
- data/tmpsets/set/mod015-settings/self/input.rb +0 -12
- data/tmpsets/set/mod015-settings/self/layout.rb +0 -11
- data/tmpsets/set/mod015-settings/self/on_create.rb +0 -11
- data/tmpsets/set/mod015-settings/self/on_delete.rb +0 -11
- data/tmpsets/set/mod015-settings/self/on_update.rb +0 -11
- data/tmpsets/set/mod015-settings/self/options.rb +0 -13
- data/tmpsets/set/mod015-settings/self/options_label.rb +0 -13
- data/tmpsets/set/mod015-settings/self/read.rb +0 -12
- data/tmpsets/set/mod015-settings/self/recent_settings.rb +0 -16
- data/tmpsets/set/mod015-settings/self/script.rb +0 -11
- data/tmpsets/set/mod015-settings/self/structure.rb +0 -12
- data/tmpsets/set/mod015-settings/self/style.rb +0 -11
- data/tmpsets/set/mod015-settings/self/table_of_contents.rb +0 -11
- data/tmpsets/set/mod015-settings/self/thanks.rb +0 -12
- data/tmpsets/set/mod015-settings/self/update.rb +0 -12
- data/tmpsets/set/mod016-email/abstract/email_field.rb +0 -50
- data/tmpsets/set/mod016-email/abstract/test_context.rb +0 -35
- data/tmpsets/set/mod016-email/all/email_html.rb +0 -18
- data/tmpsets/set/mod016-email/all/email_text.rb +0 -23
- data/tmpsets/set/mod016-email/right/bcc.rb +0 -10
- data/tmpsets/set/mod016-email/right/cc.rb +0 -10
- data/tmpsets/set/mod016-email/right/from.rb +0 -10
- data/tmpsets/set/mod016-email/right/html_message.rb +0 -22
- data/tmpsets/set/mod016-email/right/subject.rb +0 -10
- data/tmpsets/set/mod016-email/right/text_message.rb +0 -10
- data/tmpsets/set/mod016-email/right/to.rb +0 -10
- data/tmpsets/set/mod016-email/type/email_template.rb +0 -100
- data/tmpsets/set/mod016-email/type/email_template/email_config.rb +0 -90
- data/tmpsets/set/mod017-follow/abstract/follow_option.rb +0 -65
- data/tmpsets/set/mod017-follow/all/follow.rb +0 -42
- data/tmpsets/set/mod017-follow/all/follow/follow_link.rb +0 -69
- data/tmpsets/set/mod017-follow/all/follow/follow_link_views.rb +0 -38
- data/tmpsets/set/mod017-follow/all/follow/followed_by.rb +0 -80
- data/tmpsets/set/mod017-follow/all/follow/follower_ids.rb +0 -118
- data/tmpsets/set/mod017-follow/all/follow/start_follow_link.rb +0 -19
- data/tmpsets/set/mod017-follow/all/follow/stop_follow_link.rb +0 -20
- data/tmpsets/set/mod017-follow/all/notify.rb +0 -93
- data/tmpsets/set/mod017-follow/all/notify/base_views.rb +0 -139
- data/tmpsets/set/mod017-follow/all/notify/html_views.rb +0 -26
- data/tmpsets/set/mod017-follow/right/account.rb +0 -22
- data/tmpsets/set/mod017-follow/right/follow.rb +0 -127
- data/tmpsets/set/mod017-follow/right/follow_fields.rb +0 -12
- data/tmpsets/set/mod017-follow/right/followers.rb +0 -35
- data/tmpsets/set/mod017-follow/right/following.rb +0 -59
- data/tmpsets/set/mod017-follow/self/always.rb +0 -22
- data/tmpsets/set/mod017-follow/self/created.rb +0 -28
- data/tmpsets/set/mod017-follow/self/follow.rb +0 -11
- data/tmpsets/set/mod017-follow/self/follow_defaults.rb +0 -97
- data/tmpsets/set/mod017-follow/self/never.rb +0 -22
- data/tmpsets/set/mod017-follow/type/cardtype.rb +0 -24
- data/tmpsets/set/mod017-follow/type/set.rb +0 -62
- data/tmpsets/set/mod017-follow/type/user.rb +0 -16
- data/tmpsets/set/mod017-follow/type_plus_right/user/follow.rb +0 -89
- data/tmpsets/set/mod017-follow/type_plus_right/user/follow/follow_editor_helper.rb +0 -130
- data/tmpsets/set/mod019-carrierwave/abstract/attachment/paths.rb +0 -67
- data/tmpsets/set/mod019-carrierwave/self/favicon.rb +0 -20
- data/tmpsets/set/mod019-carrierwave/self/new_file.rb +0 -22
- data/tmpsets/set/mod019-carrierwave/self/new_image.rb +0 -22
- data/tmpsets/set/mod019-carrierwave/type/file.rb +0 -123
- data/tmpsets/set/mod019-carrierwave/type/image.rb +0 -182
- data/tmpsets/set/mod020-search/abstract/00_filter_helper.rb +0 -66
- data/tmpsets/set/mod020-search/abstract/01_filter_form_helper.rb +0 -125
- data/tmpsets/set/mod020-search/abstract/02_search_params.rb +0 -67
- data/tmpsets/set/mod020-search/abstract/03_filter.rb +0 -140
- data/tmpsets/set/mod020-search/abstract/04_right_filter_form.rb +0 -31
- data/tmpsets/set/mod020-search/abstract/search.rb +0 -92
- data/tmpsets/set/mod020-search/abstract/search/views.rb +0 -168
- data/tmpsets/set/mod020-search/abstract/wql_search.rb +0 -120
- data/tmpsets/set/mod020-search/self/navbox.rb +0 -41
- data/tmpsets/set/mod020-search/self/recent.rb +0 -44
- data/tmpsets/set/mod020-search/self/search.rb +0 -103
- data/tmpsets/set/mod020-search/type/search_type.rb +0 -88
- data/tmpsets/set/mod021-standard/all/comment.rb +0 -88
- data/tmpsets/set/mod021-standard/all/error.rb +0 -85
- data/tmpsets/set/mod021-standard/all/links.rb +0 -158
- data/tmpsets/set/mod021-standard/all/path.rb +0 -185
- data/tmpsets/set/mod021-standard/all/rich_html.rb +0 -13
- data/tmpsets/set/mod021-standard/all/rich_html/alert.rb +0 -32
- data/tmpsets/set/mod021-standard/all/rich_html/content.rb +0 -144
- data/tmpsets/set/mod021-standard/all/rich_html/error.rb +0 -211
- data/tmpsets/set/mod021-standard/all/rich_html/frame.rb +0 -62
- data/tmpsets/set/mod021-standard/all/rich_html/header.rb +0 -78
- data/tmpsets/set/mod021-standard/all/rich_html/html_views/help.rb +0 -36
- data/tmpsets/set/mod021-standard/all/rich_html/html_views/info.rb +0 -93
- data/tmpsets/set/mod021-standard/all/rich_html/html_views/size.rb +0 -26
- data/tmpsets/set/mod021-standard/all/rich_html/menu.rb +0 -75
- data/tmpsets/set/mod021-standard/all/rich_html/modal.rb +0 -128
- data/tmpsets/set/mod021-standard/all/rich_html/overlay.rb +0 -91
- data/tmpsets/set/mod021-standard/all/rich_html/process_layout.rb +0 -80
- data/tmpsets/set/mod021-standard/all/rich_html/show.rb +0 -46
- data/tmpsets/set/mod021-standard/all/rich_html/title.rb +0 -56
- data/tmpsets/set/mod021-standard/all/rich_html/wrapper.rb +0 -156
- data/tmpsets/set/mod021-standard/right/discussion.rb +0 -12
- data/tmpsets/set/mod021-standard/right/head.rb +0 -22
- data/tmpsets/set/mod021-standard/right/when_created.rb +0 -15
- data/tmpsets/set/mod021-standard/right/when_last_edited.rb +0 -15
- data/tmpsets/set/mod021-standard/self/alerts.rb +0 -14
- data/tmpsets/set/mod021-standard/self/codenames.rb +0 -10
- data/tmpsets/set/mod021-standard/self/foot.rb +0 -15
- data/tmpsets/set/mod021-standard/self/home.rb +0 -18
- data/tmpsets/set/mod021-standard/self/now.rb +0 -15
- data/tmpsets/set/mod021-standard/type/cardtype.rb +0 -104
- data/tmpsets/set/mod021-standard/type/layout_type.rb +0 -25
- data/tmpsets/set/mod021-standard/type/listed_by.rb +0 -101
- data/tmpsets/set/mod021-standard/type/notification_template.rb +0 -42
- data/tmpsets/set/mod021-standard/type/number.rb +0 -31
- data/tmpsets/set/mod021-standard/type/phrase.rb +0 -14
- data/tmpsets/set/mod021-standard/type/session.rb +0 -42
- data/tmpsets/set/mod021-standard/type/toggle.rb +0 -39
- data/tmpsets/set/mod021-standard/type/uri.rb +0 -24
- data/tmpsets/set/mod022-rules/rstar/rule_user.rb +0 -17
- data/tmpsets/set/mod022-rules/rule/bridge_rules_editor.rb +0 -42
- data/tmpsets/set/mod022-rules/rule/editor.rb +0 -193
- data/tmpsets/set/mod022-rules/rule/rule_form.rb +0 -66
- data/tmpsets/set/mod022-rules/rule/rule_form/buttons.rb +0 -53
- data/tmpsets/set/mod022-rules/rule/rule_form/form_elements.rb +0 -61
- data/tmpsets/set/mod022-rules/rule/rule_form/rule_set_radio.rb +0 -94
- data/tmpsets/set/mod022-rules/rule/rule_form/set_selection.rb +0 -55
- data/tmpsets/set/mod022-rules/rule/rules.rb +0 -93
- data/tmpsets/set/mod022-rules/rule/table.rb +0 -36
- data/tmpsets/set/mod022-rules/rule/table_row.rb +0 -72
- data/tmpsets/set/mod022-rules/self/script_rules.rb +0 -12
- data/tmpsets/set/mod022-rules/type/set.rb +0 -91
- data/tmpsets/set/mod022-rules/type/set/html_views.rb +0 -78
- data/tmpsets/set/mod022-rules/type/set/html_views/nest_rules.rb +0 -23
- data/tmpsets/set/mod022-rules/type/set/html_views/rules_bridge.rb +0 -30
- data/tmpsets/set/mod022-rules/type/set/html_views/template.rb +0 -52
- data/tmpsets/set/mod022-rules/type/set/rules_filter.rb +0 -55
- data/tmpsets/set/mod022-rules/type/set/setting_lists.rb +0 -92
- data/tmpsets/set/mod023-edit/all/bridge.rb +0 -72
- data/tmpsets/set/mod023-edit/all/bridge/follow_section.rb +0 -46
- data/tmpsets/set/mod023-edit/all/bridge/tab_views.rb +0 -84
- data/tmpsets/set/mod023-edit/all/bridge/tab_visibility.rb +0 -60
- data/tmpsets/set/mod023-edit/all/edit_content.rb +0 -73
- data/tmpsets/set/mod023-edit/all/edit_inline.rb +0 -57
- data/tmpsets/set/mod023-edit/all/edit_name.rb +0 -101
- data/tmpsets/set/mod023-edit/all/edit_type.rb +0 -37
- data/tmpsets/set/mod023-edit/all/editing.rb +0 -96
- data/tmpsets/set/mod023-edit/all/editor.rb +0 -56
- data/tmpsets/set/mod023-edit/all/form.rb +0 -264
- data/tmpsets/set/mod023-edit/all/form_buttons.rb +0 -64
- data/tmpsets/set/mod023-edit/all/form_elements.rb +0 -79
- data/tmpsets/set/mod023-edit/all/formgroup.rb +0 -46
- data/tmpsets/set/mod023-edit/all/nest_editor.rb +0 -115
- data/tmpsets/set/mod023-edit/all/nest_editor/nest_parser.rb +0 -71
- data/tmpsets/set/mod023-edit/all/nest_image.rb +0 -46
- data/tmpsets/set/mod023-edit/all/new.rb +0 -135
- data/tmpsets/set/mod024-date/all/calendar.rb +0 -18
- data/tmpsets/set/mod024-date/self/script_datepicker.rb +0 -16
- data/tmpsets/set/mod024-date/self/script_datepicker_config.rb +0 -13
- data/tmpsets/set/mod024-date/self/style_datepicker.rb +0 -20
- data/tmpsets/set/mod024-date/type/date.rb +0 -14
- data/tmpsets/set/mod025-account/right/account.rb +0 -199
- data/tmpsets/set/mod025-account/right/email.rb +0 -50
- data/tmpsets/set/mod025-account/right/salt.rb +0 -18
- data/tmpsets/set/mod025-account/right/status.rb +0 -18
- data/tmpsets/set/mod025-account/right/token.rb +0 -63
- data/tmpsets/set/mod025-account/self/account_links.rb +0 -91
- data/tmpsets/set/mod025-account/self/signin.rb +0 -188
- data/tmpsets/set/mod025-account/type/signup.rb +0 -191
- data/tmpsets/set/mod025-account/type/user.rb +0 -88
- data/tmpsets/set/mod025-account/type_plus_right/user/email.rb +0 -22
- data/tmpsets/set/mod026-bootstrap/abstract/bootstrap_code_file.rb +0 -62
- data/tmpsets/set/mod026-bootstrap/abstract/bootswatch_theme.rb +0 -165
- data/tmpsets/set/mod026-bootstrap/abstract/bootswatch_theme/html_views.rb +0 -39
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/accordion.rb +0 -72
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/dropdown.rb +0 -96
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/helper.rb +0 -57
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/icon.rb +0 -118
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/navbar.rb +0 -75
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/table.rb +0 -100
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/tabs.rb +0 -140
- data/tmpsets/set/mod026-bootstrap/all/bootstrap/wrapper.rb +0 -28
- data/tmpsets/set/mod026-bootstrap/all/rich_bootstrap.rb +0 -17
- data/tmpsets/set/mod026-bootstrap/self/bootstrap_core.rb +0 -22
- data/tmpsets/set/mod026-bootstrap/self/bootstrap_functions.rb +0 -14
- data/tmpsets/set/mod026-bootstrap/self/font_awesome.rb +0 -11
- data/tmpsets/set/mod026-bootstrap/self/material_icons.rb +0 -11
- data/tmpsets/set/mod026-bootstrap/self/script_bootstrap.rb +0 -21
- data/tmpsets/set/mod026-bootstrap/self/script_load_select2.rb +0 -11
- data/tmpsets/set/mod026-bootstrap/self/script_select2.rb +0 -21
- data/tmpsets/set/mod026-bootstrap/self/smartmenu_css.rb +0 -14
- data/tmpsets/set/mod026-bootstrap/self/smartmenu_js.rb +0 -14
- data/tmpsets/set/mod026-bootstrap/self/style_bootstrap_cards.rb +0 -10
- data/tmpsets/set/mod026-bootstrap/self/style_bootstrap_colorpicker.rb +0 -15
- data/tmpsets/set/mod026-bootstrap/self/style_select2.rb +0 -19
- data/tmpsets/set/mod026-bootstrap/self/style_select2_bootstrap.rb +0 -10
- data/tmpsets/set/mod026-bootstrap/type/bootswatch_skin.rb +0 -24
- data/tmpsets/set/mod026-bootstrap/type/customized_bootswatch_skin.rb +0 -130
- data/tmpsets/set/mod026-bootstrap/type/customized_bootswatch_skin/html_views.rb +0 -46
- data/tmpsets/set/mod026-bootstrap/type_plus_right/customized_bootswatch_skin/colors.rb +0 -122
- data/tmpsets/set/mod027-google_analytics/all/google_analytics.rb +0 -48
- data/tmpsets/set/mod028-recaptcha/all/recaptcha.rb +0 -116
- data/tmpsets/set_pattern/105-rule.rb +0 -28
- data/tmpsets/set_pattern/106-right.rb +0 -31
- data/tmpsets/set_pattern/107-type_plus_right.rb +0 -40
- data/tmpsets/set_pattern/108-self.rb +0 -30
@@ -0,0 +1,16 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Abstract; module CodePointer; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/abstract/code_pointer.rb ~~
|
4
|
+
include_set Abstract::Pointer
|
5
|
+
|
6
|
+
abstract_basket :item_codenames
|
7
|
+
|
8
|
+
def raw_content
|
9
|
+
item_codenames.map do |codename|
|
10
|
+
Card[codename] && Card[codename].name
|
11
|
+
end.compact.to_pointer_content
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/abstract/code_pointer.rb ~~
|
16
|
+
end;end;end;end;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Self; module ScriptEditors; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/self/script_editors.rb ~~
|
4
|
+
include_set Abstract::CodePointer
|
5
|
+
|
6
|
+
|
7
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/self/script_editors.rb ~~
|
8
|
+
end;end;end;end;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Self; module ScriptMods; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/self/script_mods.rb ~~
|
4
|
+
include_set Abstract::CodePointer
|
5
|
+
|
6
|
+
|
7
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/self/script_mods.rb ~~
|
8
|
+
end;end;end;end;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Self; module ScriptPointerConfig; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/self/script_pointer_config.rb ~~
|
4
|
+
include_set Abstract::CodeFile
|
5
|
+
|
6
|
+
Self::ScriptEditors.add_to_basket :item_codenames, :script_pointer_config
|
7
|
+
|
8
|
+
|
9
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/self/script_pointer_config.rb ~~
|
10
|
+
end;end;end;end;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Type; module Pointer; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/type/pointer.rb ~~
|
4
|
+
include_set Abstract::Pointer
|
5
|
+
|
6
|
+
|
7
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/pointer/set/type/pointer.rb ~~
|
8
|
+
end;end;end;end;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Abstract; module AceEditor; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/ace_editor/set/abstract/ace_editor.rb ~~
|
4
|
+
format :html do
|
5
|
+
def default_editor_args args
|
6
|
+
args[:ace_mode] ||= "html"
|
7
|
+
end
|
8
|
+
|
9
|
+
view :editor do |args|
|
10
|
+
text_area :content, rows: 5,
|
11
|
+
class: "card-content ace-editor-textarea",
|
12
|
+
"data-ace-mode" => args[:ace_mode]
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
|
17
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/ace_editor/set/abstract/ace_editor.rb ~~
|
18
|
+
end;end;end;end;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Self; module ScriptAce; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/ace_editor/set/self/script_ace.rb ~~
|
4
|
+
include_set Abstract::CodeFile
|
5
|
+
|
6
|
+
Self::ScriptMods.add_to_basket :item_codenames, :script_ace
|
7
|
+
|
8
|
+
|
9
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/ace_editor/set/self/script_ace.rb ~~
|
10
|
+
end;end;end;end;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Self; module ScriptAceConfig; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/ace_editor/set/self/script_ace_config.rb ~~
|
4
|
+
include_set Abstract::CodeFile
|
5
|
+
|
6
|
+
Self::ScriptEditors.add_to_basket :item_codenames, :script_ace_config
|
7
|
+
Self::Head::Javascript::HtmlFormat.add_to_basket :mod_js_config,
|
8
|
+
[:ace, "setAceConfig"]
|
9
|
+
|
10
|
+
|
11
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/ace_editor/set/self/script_ace_config.rb ~~
|
12
|
+
end;end;end;end;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Abstract; module ProsemirrorEditor; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/prosemirror_editor/set/abstract/prosemirror_editor.rb ~~
|
4
|
+
format :html do
|
5
|
+
view :editor do |_args|
|
6
|
+
wrap_with(:div, id: unique_id, class: "prosemirror-editor") do
|
7
|
+
hidden_field(:content, class: "card-content", value: card.raw_content)
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
|
13
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/prosemirror_editor/set/abstract/prosemirror_editor.rb ~~
|
14
|
+
end;end;end;end;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Self; module ScriptProsemirror; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/prosemirror_editor/set/self/script_prosemirror.rb ~~
|
4
|
+
include_set Abstract::CodeFile
|
5
|
+
|
6
|
+
Self::ScriptMods.add_to_basket :item_codenames, :script_prosemirror
|
7
|
+
|
8
|
+
|
9
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/prosemirror_editor/set/self/script_prosemirror.rb ~~
|
10
|
+
end;end;end;end;
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Self; module ScriptProsemirrorConfig; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/prosemirror_editor/set/self/script_prosemirror_config.rb ~~
|
4
|
+
include_set Abstract::CodeFile
|
5
|
+
|
6
|
+
Self::ScriptEditors.add_to_basket :item_codenames, :script_prosemirror_config
|
7
|
+
Self::Head::Javascript::HtmlFormat.add_to_basket(
|
8
|
+
:mod_js_config, [:prose_mirror, "setProseMirrorConfig"]
|
9
|
+
)
|
10
|
+
|
11
|
+
|
12
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/prosemirror_editor/set/self/script_prosemirror_config.rb ~~
|
13
|
+
end;end;end;end;
|
@@ -1,15 +1,11 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
|
-
class Card; module Set; class Abstract
|
3
|
-
#
|
4
|
-
#
|
2
|
+
class Card; module Set; class Abstract; module SolidCache; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/solid_cache/set/abstract/solid_cache.rb ~~
|
5
4
|
# -*- encoding : utf-8 -*-
|
6
5
|
|
7
|
-
# A card that includes Abstract::SolidCache
|
8
|
-
#
|
6
|
+
# A card that includes Abstract::SolidCache caches its core view
|
7
|
+
# in a '+*solid cache' card.
|
9
8
|
# If that card exists the core view returns its content as rendered view.
|
10
|
-
module SolidCache;
|
11
|
-
extend Card::Set
|
12
|
-
def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/solid_cache/set/abstract/solid_cache.rb"; end
|
13
9
|
# If it doesn't exist the usual core view is rendered and saved in that card.
|
14
10
|
#
|
15
11
|
# The cache expiration can be controlled with the cache_update_trigger and
|
@@ -17,35 +13,31 @@ def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/solid_cache/set/a
|
|
17
13
|
|
18
14
|
card_accessor :solid_cache, type: :html
|
19
15
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
_render_solid_cache
|
25
|
-
end
|
16
|
+
format :html do
|
17
|
+
def default_core_args args
|
18
|
+
args[:solid_cache] = true unless args.key?(:solid_cache)
|
19
|
+
end
|
26
20
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
end
|
21
|
+
view :core do |args|
|
22
|
+
return super(args) unless args[:solid_cache]
|
23
|
+
|
24
|
+
subformat(card.solid_cache_card)._render_core args
|
32
25
|
end
|
33
26
|
end
|
34
27
|
|
35
28
|
module ClassMethods
|
36
|
-
# If a card of the set given by 'set_of_changed_card' is
|
29
|
+
# If a card of the set given by 'set_of_changed_card' is updated
|
37
30
|
# the given block is executed. It is supposed to return an array of
|
38
|
-
# cards whose solid caches are expired because of the
|
31
|
+
# cards whose solid caches are expired because of the update.
|
39
32
|
# @param set_of_changed_card [set constant] a set of cards that triggers
|
40
33
|
# a cache update
|
41
|
-
# @
|
42
|
-
# @option args [Symbol, Array
|
34
|
+
# @params args [Hash]
|
35
|
+
# @option args [Symbol, Array of symbols] :on the action(s)
|
43
36
|
# (:create, :update, or :delete) on which the cache update
|
44
37
|
# should be triggered. Default is all actions.
|
45
38
|
# @option args [Stage] :in_stage the stage when the update is executed.
|
46
39
|
# Default is :integrate
|
47
|
-
# @yield return
|
48
|
-
# updated
|
40
|
+
# @yield return an array of cards with solid cache that need to be updated
|
49
41
|
def cache_update_trigger set_of_changed_card, args={}, &block
|
50
42
|
define_event_to_update_expired_cached_cards(
|
51
43
|
set_of_changed_card, args, :update_solid_cache, &block
|
@@ -62,12 +54,12 @@ module ClassMethods
|
|
62
54
|
|
63
55
|
def define_event_to_update_expired_cached_cards set_of_changed_card, args,
|
64
56
|
method_name
|
65
|
-
args[:on] ||=
|
57
|
+
args[:on] ||= [:create, :update, :delete]
|
66
58
|
name = event_name set_of_changed_card, args
|
67
59
|
stage = args[:in_stage] || :integrate
|
68
60
|
Card::Set.register_set set_of_changed_card
|
69
61
|
set_of_changed_card.event name, stage, args do
|
70
|
-
Array
|
62
|
+
Array(yield(self)).compact.each do |expired_cache_card|
|
71
63
|
next unless expired_cache_card.solid_cache?
|
72
64
|
expired_cache_card.send method_name
|
73
65
|
end
|
@@ -75,22 +67,16 @@ module ClassMethods
|
|
75
67
|
end
|
76
68
|
|
77
69
|
def event_name set, args
|
78
|
-
changed_card_set = set.underscore
|
79
|
-
solid_cache_set =
|
70
|
+
changed_card_set = set.to_s.tr(":", "_").underscore
|
71
|
+
solid_cache_set = to_s.tr(":", "_").underscore
|
80
72
|
actions = Array.wrap(args[:on]).join("_")
|
81
|
-
|
82
|
-
|
83
|
-
"on", actions].join("___").to_sym
|
73
|
+
"update_#{solid_cache_set}_solid_cache_changed_by_" \
|
74
|
+
"#{changed_card_set}_on_#{actions}".to_sym
|
84
75
|
end
|
85
76
|
end
|
86
77
|
|
87
|
-
def
|
88
|
-
|
89
|
-
yield solid_cache_card
|
90
|
-
end
|
91
|
-
|
92
|
-
def expire_solid_cache _changed_card=nil
|
93
|
-
return unless solid_cache? && solid_cache_card.real?
|
78
|
+
def expire_solid_cache
|
79
|
+
return unless solid_cache?
|
94
80
|
Auth.as_bot do
|
95
81
|
solid_cache_card.delete!
|
96
82
|
end
|
@@ -98,18 +84,23 @@ end
|
|
98
84
|
|
99
85
|
def update_solid_cache
|
100
86
|
return unless solid_cache?
|
101
|
-
new_content =
|
87
|
+
new_content = format(:html)._render_core(solid_cache: false)
|
88
|
+
return unless new_content
|
102
89
|
write_to_solid_cache new_content
|
103
90
|
new_content
|
104
91
|
end
|
105
92
|
|
106
|
-
def generate_content_for_cache
|
107
|
-
format_type = try(:cached_format) || :base
|
108
|
-
format(format_type)._render_core hide: :solid_cache
|
109
|
-
end
|
110
|
-
|
111
93
|
def write_to_solid_cache new_content
|
112
|
-
|
94
|
+
Auth.as_bot do
|
95
|
+
if solid_cache_card.new_card?
|
96
|
+
solid_cache_card.update_attributes! content: new_content
|
97
|
+
elsif new_content != solid_cache_card.content
|
98
|
+
solid_cache_card.update_column :db_content, new_content
|
99
|
+
solid_cache_card.expire
|
100
|
+
end
|
101
|
+
end
|
113
102
|
end
|
103
|
+
|
104
|
+
|
105
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/solid_cache/set/abstract/solid_cache.rb ~~
|
114
106
|
end;end;end;end;
|
115
|
-
# ~~ generated from /Users/ethan/dev/decko/gem/card/mod/solid_cache/set/abstract/solid_cache.rb ~~
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class All; module SolidCache; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/solid_cache/set/all/solid_cache.rb ~~
|
4
|
+
def solid_cache?
|
5
|
+
respond_to?(:solid_cache_card)
|
6
|
+
end
|
7
|
+
|
8
|
+
module ClassMethods
|
9
|
+
def clear_solid_cache
|
10
|
+
Auth.as_bot do
|
11
|
+
Card.search(right: { codename: "solid_cache" }).each do |card|
|
12
|
+
card.update_columns trash: true
|
13
|
+
card.expire
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
|
20
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/solid_cache/set/all/solid_cache.rb ~~
|
21
|
+
end;end;end;end;
|
@@ -0,0 +1,39 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Right; module SolidCache; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/solid_cache/set/right/solid_cache.rb ~~
|
4
|
+
def followable?
|
5
|
+
false
|
6
|
+
end
|
7
|
+
|
8
|
+
def history?
|
9
|
+
false
|
10
|
+
end
|
11
|
+
|
12
|
+
def clean_html?
|
13
|
+
false
|
14
|
+
end
|
15
|
+
|
16
|
+
format :html do
|
17
|
+
view :core do |args|
|
18
|
+
return super(args) unless card.new_card?
|
19
|
+
_render_missing args.merge(denied_view: :core)
|
20
|
+
end
|
21
|
+
|
22
|
+
view :missing do |args|
|
23
|
+
if @card.new_card? &&
|
24
|
+
(l = @card.left) &&
|
25
|
+
l.solid_cache?
|
26
|
+
l.update_solid_cache
|
27
|
+
@card = Card.fetch(card.name)
|
28
|
+
render(args[:denied_view], args)
|
29
|
+
else
|
30
|
+
super(args)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
view :new, :missing
|
35
|
+
end
|
36
|
+
|
37
|
+
|
38
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/solid_cache/set/right/solid_cache.rb ~~
|
39
|
+
end;end;end;end;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Type; module Html; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/basic_types/set/type/html.rb ~~
|
4
|
+
include_set Abstract::AceEditor
|
5
|
+
|
6
|
+
def clean_html?
|
7
|
+
false
|
8
|
+
end
|
9
|
+
|
10
|
+
def diff_args
|
11
|
+
{ format: :raw }
|
12
|
+
end
|
13
|
+
|
14
|
+
format do
|
15
|
+
view :closed_content do |_args|
|
16
|
+
""
|
17
|
+
end
|
18
|
+
|
19
|
+
def chunk_list
|
20
|
+
:references
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
|
25
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/basic_types/set/type/html.rb ~~
|
26
|
+
end;end;end;end;
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Type; module PlainText; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/basic_types/set/type/plain_text.rb ~~
|
4
|
+
format :html do
|
5
|
+
view :editor do |_args|
|
6
|
+
text_area :content,
|
7
|
+
rows: 5,
|
8
|
+
class: "card-content",
|
9
|
+
"data-card-type-code" => card.type_code
|
10
|
+
end
|
11
|
+
|
12
|
+
view :core do |_args|
|
13
|
+
process_content CGI.escapeHTML(_render_raw)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/basic_types/set/type/plain_text.rb ~~
|
19
|
+
end;end;end;end;
|
@@ -0,0 +1,277 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class Abstract; module Machine; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/machines/set/abstract/machine.rb ~~
|
4
|
+
# ## What are Machines?
|
5
|
+
# {Machine} and {MachineInput} together implement a kind of observer pattern.
|
6
|
+
# {Machine} processes a collection of input cards to generate an output card
|
7
|
+
# (a {Set::Type::File} card by default). If one of the input cards is changed
|
8
|
+
# the output card will be updated.
|
9
|
+
#
|
10
|
+
# The classic example: A style card observes a collection of css and sccs card
|
11
|
+
# to generate a file card with a css file that contains the assembled
|
12
|
+
# compressed css.
|
13
|
+
#
|
14
|
+
# ## Using Machines
|
15
|
+
# Include the Machine module in the card set that is supposed to produce the
|
16
|
+
# output card. If the output card should be automatically updated when a input
|
17
|
+
# card is changed the input card has to be in a set that includes the
|
18
|
+
# MachineInput module.
|
19
|
+
#
|
20
|
+
# The default machine:
|
21
|
+
#
|
22
|
+
# - uses its item cards as input cards or the card itself if there are no
|
23
|
+
# item cards;
|
24
|
+
# - can be changed by passing a block to collect_input_cards
|
25
|
+
# - takes the raw view of the input cards to generate the output;
|
26
|
+
# - can be changed by passing a block to machine_input (in the input card
|
27
|
+
# set)
|
28
|
+
# - stores the output as a .txt file in the '+machine output' card;
|
29
|
+
# - can be changed by passing a filetype and/or a block to
|
30
|
+
# store_machine_output
|
31
|
+
#
|
32
|
+
#
|
33
|
+
# ## How does it work?
|
34
|
+
# Machine cards have a '+machine input' and a '+machine output' card. The
|
35
|
+
# '+machine input' card is a pointer to all input cards. Including the
|
36
|
+
# MachineInput module creates an 'on: save' event that runs the machines of
|
37
|
+
# all cards that are linked to that card via the +machine input pointer.
|
38
|
+
module MachineClassMethods
|
39
|
+
attr_accessor :output_config
|
40
|
+
|
41
|
+
def collect_input_cards &block
|
42
|
+
define_method :engine_input, &block
|
43
|
+
end
|
44
|
+
|
45
|
+
def prepare_machine_input &block
|
46
|
+
define_method :before_engine, &block
|
47
|
+
end
|
48
|
+
|
49
|
+
def machine_engine &block
|
50
|
+
define_method :engine, &block
|
51
|
+
end
|
52
|
+
|
53
|
+
def store_machine_output args={}, &block
|
54
|
+
output_config.merge!(args)
|
55
|
+
return unless block_given?
|
56
|
+
define_method :after_engine, &block
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
class << self
|
61
|
+
def included host_class
|
62
|
+
host_class.extend(MachineClassMethods)
|
63
|
+
host_class.output_config = { filetype: "txt" }
|
64
|
+
|
65
|
+
# for compatibility with old migrations
|
66
|
+
return unless Codename[:machine_output]
|
67
|
+
|
68
|
+
host_class.card_accessor :machine_output, type: :file
|
69
|
+
host_class.card_accessor :machine_input, type: :pointer
|
70
|
+
|
71
|
+
set_default_machine_behaviour host_class
|
72
|
+
define_machine_views host_class
|
73
|
+
define_machine_events host_class
|
74
|
+
end
|
75
|
+
|
76
|
+
def define_machine_events host_class
|
77
|
+
event_suffix = host_class.name.tr ":", "_"
|
78
|
+
event_name = "reset_machine_output_#{event_suffix}".to_sym
|
79
|
+
host_class.event event_name, after: :expire_related, on: :save do
|
80
|
+
reset_machine_output
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def define_machine_views host_class
|
85
|
+
host_class.format do
|
86
|
+
view :machine_output_url do |_args|
|
87
|
+
machine_output_url
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
def set_default_machine_behaviour host_class
|
93
|
+
set_default_input_collection_method host_class
|
94
|
+
set_default_input_preparation_method host_class
|
95
|
+
set_default_output_storage_method host_class
|
96
|
+
host_class.machine_engine { |input| input }
|
97
|
+
end
|
98
|
+
|
99
|
+
def set_default_input_preparation_method host_class
|
100
|
+
host_class.prepare_machine_input {}
|
101
|
+
end
|
102
|
+
|
103
|
+
def set_default_output_storage_method host_class
|
104
|
+
host_class.store_machine_output do |output|
|
105
|
+
filetype = host_class.output_config[:filetype]
|
106
|
+
file = Tempfile.new [id.to_s, ".#{filetype}"]
|
107
|
+
file.write output
|
108
|
+
file.rewind
|
109
|
+
Card::Auth.as_bot do
|
110
|
+
p = machine_output_card
|
111
|
+
p.file = file
|
112
|
+
p.save!
|
113
|
+
end
|
114
|
+
file.close
|
115
|
+
file.unlink
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def set_default_input_collection_method host_class
|
120
|
+
host_class.collect_input_cards do
|
121
|
+
# traverse through all levels of pointers and
|
122
|
+
# collect all item cards as input
|
123
|
+
items = [self]
|
124
|
+
new_input = []
|
125
|
+
already_extended = {} # avoid loops
|
126
|
+
loop_limit = 5
|
127
|
+
until items.empty?
|
128
|
+
item = items.shift
|
129
|
+
next if item.trash || already_extended[item.id].to_i > loop_limit
|
130
|
+
if item.item_cards == [item] # no pointer card
|
131
|
+
new_input << item
|
132
|
+
else
|
133
|
+
# item_cards instantiates non-existing cards
|
134
|
+
# we don't want those
|
135
|
+
items.insert(0, item.item_cards.reject(&:unknown?))
|
136
|
+
items.flatten!
|
137
|
+
|
138
|
+
new_input << item if item != self && item.known?
|
139
|
+
already_extended[item] = already_extended[item].to_i + 1
|
140
|
+
end
|
141
|
+
end
|
142
|
+
new_input
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
def run_machine joint="\n"
|
148
|
+
before_engine
|
149
|
+
output =
|
150
|
+
input_item_cards.map do |input_card|
|
151
|
+
run_engine input_card
|
152
|
+
end.select(&:present?).join(joint)
|
153
|
+
after_engine output
|
154
|
+
end
|
155
|
+
|
156
|
+
def run_engine input_card
|
157
|
+
return if input_card.is_a? Card::Set::Type::Pointer
|
158
|
+
if (cached = fetch_cache_card(input_card))
|
159
|
+
return cached.content
|
160
|
+
end
|
161
|
+
|
162
|
+
input = if input_card.respond_to? :machine_input
|
163
|
+
input_card.machine_input
|
164
|
+
else
|
165
|
+
input_card.format._render_raw
|
166
|
+
end
|
167
|
+
output = engine(input)
|
168
|
+
cache_output_part input_card, output
|
169
|
+
output
|
170
|
+
end
|
171
|
+
|
172
|
+
def fetch_cache_card input_card, new=nil
|
173
|
+
new &&= { type_id: PlainTextID }
|
174
|
+
Card.fetch input_card.name, name, :machine_cache, new: new
|
175
|
+
end
|
176
|
+
|
177
|
+
def cache_output_part input_card, output
|
178
|
+
Auth.as_bot do
|
179
|
+
cache_card = fetch_cache_card(input_card, true)
|
180
|
+
cache_card.update_attributes! content: output
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
def reset_machine_output
|
185
|
+
Auth.as_bot do
|
186
|
+
(moc = machine_output_card) && moc.real? && moc.delete!
|
187
|
+
update_input_card
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
def update_machine_output
|
192
|
+
lock do
|
193
|
+
update_input_card
|
194
|
+
run_machine
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
def make_machine_output_coded mod=:machines
|
199
|
+
update_machine_output
|
200
|
+
Auth.as_bot do
|
201
|
+
output_codename =
|
202
|
+
machine_output_card.cardname.parts.map do |part|
|
203
|
+
Card[part].codename || Card[part].cardname.safe_key
|
204
|
+
end.join '_'
|
205
|
+
machine_output_card.update_attributes! codename: output_codename,
|
206
|
+
storage_type: :coded,
|
207
|
+
mod: mod
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
def regenerate_machine_output
|
212
|
+
lock do
|
213
|
+
run_machine
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
217
|
+
def lock
|
218
|
+
if ok?(:read) && !(was_already_locked = locked?)
|
219
|
+
Auth.as_bot do
|
220
|
+
lock!
|
221
|
+
yield
|
222
|
+
end
|
223
|
+
end
|
224
|
+
ensure
|
225
|
+
unlock! unless was_already_locked
|
226
|
+
end
|
227
|
+
|
228
|
+
def lock_cache_key
|
229
|
+
"UPDATE-LOCK:#{key}"
|
230
|
+
end
|
231
|
+
|
232
|
+
def locked?
|
233
|
+
Card.cache.read lock_cache_key
|
234
|
+
end
|
235
|
+
|
236
|
+
def lock!
|
237
|
+
Card.cache.write lock_cache_key, true
|
238
|
+
end
|
239
|
+
|
240
|
+
def unlock!
|
241
|
+
Card.cache.write lock_cache_key, false
|
242
|
+
end
|
243
|
+
|
244
|
+
def update_input_card
|
245
|
+
if DirectorRegister.running_act?
|
246
|
+
input_card = attach_subcard! machine_input_card
|
247
|
+
input_card.content = ""
|
248
|
+
engine_input.each { |input| input_card << input }
|
249
|
+
else
|
250
|
+
machine_input_card.items = engine_input
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
254
|
+
def input_item_cards
|
255
|
+
machine_input_card.item_cards
|
256
|
+
end
|
257
|
+
|
258
|
+
def machine_output_url
|
259
|
+
ensure_machine_output
|
260
|
+
machine_output_card.file.url # (:default, timestamp: false)
|
261
|
+
# to get rid of additional number in url
|
262
|
+
end
|
263
|
+
|
264
|
+
def machine_output_path
|
265
|
+
ensure_machine_output
|
266
|
+
machine_output_card.file.path
|
267
|
+
end
|
268
|
+
|
269
|
+
def ensure_machine_output
|
270
|
+
output = fetch trait: :machine_output
|
271
|
+
return if output && output.selected_content_action_id
|
272
|
+
update_machine_output
|
273
|
+
end
|
274
|
+
|
275
|
+
|
276
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/machines/set/abstract/machine.rb ~~
|
277
|
+
end;end;end;end;
|