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
@@ -1,30 +1,49 @@
|
|
1
1
|
# -*- encoding : utf-8 -*-
|
2
|
-
class Card; module Set; class
|
3
|
-
#
|
4
|
-
#
|
5
|
-
module Read;
|
6
|
-
extend Card::Set
|
7
|
-
def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/settings/set/right/read.rb"; end
|
8
|
-
include Abstract::Permission
|
2
|
+
class Card; module Set; class All; module UpdateReadRules; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/core/set/all/update_read_rules.rb ~~
|
9
4
|
|
10
|
-
|
5
|
+
# FIXME: the following don't really belong here, but they have to come after
|
6
|
+
# the reference stuff. we need to organize a bit!
|
11
7
|
|
12
|
-
event :
|
13
|
-
|
14
|
-
|
8
|
+
event :update_ruled_cards, :finalize do
|
9
|
+
if is_rule?
|
10
|
+
# warn "updating ruled cards for #{name}"
|
11
|
+
self.class.clear_rule_cache
|
12
|
+
set = rule_set
|
15
13
|
|
16
|
-
|
14
|
+
if right_id == Card::ReadID && (name_changed? || trash_changed?)
|
15
|
+
update_read_ruled_cards set
|
16
|
+
end
|
17
|
+
end
|
17
18
|
end
|
18
19
|
|
19
|
-
def
|
20
|
-
|
21
|
-
|
20
|
+
def update_read_rules_not_overridden_by_narrower_rules cur_index,
|
21
|
+
rule_class_index, set
|
22
|
+
set.item_cards(limit: 0).each_with_object(::Set.new) do |item_card, in_set|
|
23
|
+
in_set << item_card.key
|
24
|
+
next if cur_index < rule_class_index
|
25
|
+
item_card.update_read_rule
|
26
|
+
end
|
22
27
|
end
|
23
28
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
29
|
+
def update_read_rules_of_set_members set
|
30
|
+
return ::Set.new if trash || !(class_id = id_of_set_class(set))
|
31
|
+
rule_class_ids = set_patterns.map(&:pattern_id)
|
32
|
+
Auth.as_bot do
|
33
|
+
if (rule_class_index = rule_class_ids.index(class_id))
|
34
|
+
cur_index = rule_class_ids.index Card[read_rule_class].id
|
35
|
+
update_read_rules_not_overridden_by_narrower_rules cur_index,
|
36
|
+
rule_class_index, set
|
37
|
+
else
|
38
|
+
warn "No current rule index #{class_id}, #{rule_class_ids.inspect}"
|
39
|
+
::Set.new
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def id_of_set_class set
|
45
|
+
set && (set_class = set.tag) && set_class.id
|
46
|
+
end
|
28
47
|
|
29
48
|
def update_read_ruled_cards set
|
30
49
|
self.class.clear_read_rule_cache
|
@@ -38,41 +57,35 @@ def update_read_ruled_cards set
|
|
38
57
|
# then find all cards with me as read_rule_id that were not just updated
|
39
58
|
# and regenerate their read_rules
|
40
59
|
return if new_card?
|
41
|
-
|
42
60
|
Card.search(read_rule_id: id) do |card|
|
43
61
|
card.update_read_rule unless updated.include?(card.key)
|
44
62
|
end
|
45
63
|
end
|
46
64
|
|
47
|
-
def update_read_rules_not_overridden_by_narrower_rules cur_index,
|
48
|
-
rule_class_index, set
|
49
|
-
set.item_cards(limit: 0).each_with_object(::Set.new) do |item_card, in_set|
|
50
|
-
in_set << item_card.key
|
51
|
-
next if cur_index < rule_class_index
|
52
|
-
|
53
|
-
item_card.update_read_rule
|
54
|
-
end
|
55
|
-
end
|
56
|
-
|
57
65
|
event :process_read_rule_update_queue, :finalize do
|
58
66
|
Array.wrap(@read_rule_update_queue).each(&:update_read_rule)
|
59
67
|
@read_rule_update_queue = []
|
60
68
|
end
|
61
69
|
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
else
|
72
|
-
warn "No current rule index #{class_id}, #{rule_class_ids.inspect}"
|
73
|
-
::Set.new
|
70
|
+
event :expire_related, :finalize do
|
71
|
+
subcards.keys.each do |key|
|
72
|
+
Card.cache.soft.delete key
|
73
|
+
end
|
74
|
+
expire # FIXME: where do we put this. Here it deletes @stage
|
75
|
+
reset_patterns
|
76
|
+
if is_structure?
|
77
|
+
structuree_names.each do |name|
|
78
|
+
Card.expire name
|
74
79
|
end
|
75
80
|
end
|
76
81
|
end
|
82
|
+
|
83
|
+
event :expire_related_names, before: :expire_related, changed: :name do
|
84
|
+
# FIXME: look for opportunities to avoid instantiating the following
|
85
|
+
descendants.each(&:expire)
|
86
|
+
name_referers.each(&:expire)
|
87
|
+
end
|
88
|
+
|
89
|
+
|
90
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/core/set/all/update_read_rules.rb ~~
|
77
91
|
end;end;end;end;
|
78
|
-
# ~~ generated from /Users/ethan/dev/decko/gem/card/mod/settings/set/right/read.rb ~~
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class All; module Utils; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/core/set/all/utils.rb ~~
|
4
|
+
module ClassMethods
|
5
|
+
def delete_tmp_files id=nil
|
6
|
+
dir = Cardio.paths["files"].existent.first + "/tmp"
|
7
|
+
dir += "/#{id}" if id
|
8
|
+
FileUtils.rm_rf dir, secure: true
|
9
|
+
rescue
|
10
|
+
Rails.logger.info "failed to remove tmp files"
|
11
|
+
end
|
12
|
+
|
13
|
+
def merge_list attribs, opts={}
|
14
|
+
unmerged = []
|
15
|
+
attribs.each do |row|
|
16
|
+
result = begin
|
17
|
+
merge row["name"], row, opts
|
18
|
+
end
|
19
|
+
unmerged.push row unless result == true
|
20
|
+
end
|
21
|
+
|
22
|
+
if unmerged.empty?
|
23
|
+
Rails.logger.info "successfully merged all!"
|
24
|
+
else
|
25
|
+
unmerged_json = JSON.pretty_generate unmerged
|
26
|
+
report_unmerged_json unmerged_json, opts[:output_file]
|
27
|
+
end
|
28
|
+
unmerged
|
29
|
+
end
|
30
|
+
|
31
|
+
def report_unmerged_json unmerged_json, output_file
|
32
|
+
if output_file
|
33
|
+
::File.open output_file, "w" do |f|
|
34
|
+
f.write unmerged_json
|
35
|
+
end
|
36
|
+
else
|
37
|
+
Rails.logger.info "failed to merge:\n\n#{unmerged_json}"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def merge name, attribs={}, opts={}
|
42
|
+
puts "merging #{name}"
|
43
|
+
card = fetch name, new: {}
|
44
|
+
[:image, :file].each do |attach|
|
45
|
+
next unless attribs[attach] && attribs[attach].is_a?(String)
|
46
|
+
attribs[attach] = ::File.open(attribs[attach])
|
47
|
+
end
|
48
|
+
if opts[:pristine] && !card.pristine?
|
49
|
+
false
|
50
|
+
else
|
51
|
+
card.update_attributes! attribs
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def seed_test_db
|
56
|
+
system "env RAILS_ENV=test bundle exec rake db:fixtures:load"
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
|
61
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/core/set/all/utils.rb ~~
|
62
|
+
end;end;end;end;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class All; module ViewCache; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/core/set/all/view_cache.rb ~~
|
4
|
+
event :clear_view_cache, :finalize do
|
5
|
+
Card::Cache::ViewCache.reset
|
6
|
+
end
|
7
|
+
|
8
|
+
format do
|
9
|
+
def view_caching?
|
10
|
+
false
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/core/set/all/view_cache.rb ~~
|
16
|
+
end;end;end;end;
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class All; module Actions; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/history/set/all/actions.rb ~~
|
4
|
+
# -*- encoding : utf-8 -*-
|
5
|
+
|
6
|
+
def select_action_by_params params
|
7
|
+
return unless (action = find_action_by_params(params))
|
8
|
+
run_callbacks :select_action do
|
9
|
+
self.selected_action_id = action.id
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def find_action_by_params args
|
14
|
+
if args[:rev]
|
15
|
+
nth_action args[:rev]
|
16
|
+
elsif args[:rev_id].is_a?(Integer) || args[:rev_id] =~ /^\d+$/
|
17
|
+
if (action = Action.fetch(args[:rev_id])) && action.card_id == id
|
18
|
+
action
|
19
|
+
end
|
20
|
+
# revision id is probalby a mod (e.g. if you request
|
21
|
+
# files/:logo/standard.png)
|
22
|
+
elsif args[:rev_id]
|
23
|
+
last_action
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def nth_action index
|
28
|
+
index = index.to_i
|
29
|
+
return unless id && index > 0
|
30
|
+
Action.where("draft is not true AND card_id = #{id}")
|
31
|
+
.order(:id).limit(1).offset(index - 1).first
|
32
|
+
end
|
33
|
+
|
34
|
+
def revision action
|
35
|
+
# a "revision" refers to the state of all tracked fields
|
36
|
+
# at the time of a given action
|
37
|
+
action = Card::Action.fetch(action) if action.is_a? Integer
|
38
|
+
return unless action
|
39
|
+
Card::Change::TRACKED_FIELDS.each_with_object({}) do |field, attr_changes|
|
40
|
+
last_change = action.change(field) ||
|
41
|
+
last_change_on(field, not_after: action)
|
42
|
+
attr_changes[field.to_sym] = (last_change ? last_change.value : self[field])
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def delete_old_actions
|
47
|
+
Card::Change::TRACKED_FIELDS.each do |field|
|
48
|
+
# assign previous changes on each tracked field to the last action
|
49
|
+
next unless (la = last_action) && !la.change(field).present? &&
|
50
|
+
(last_change = last_change_on field)
|
51
|
+
# last_change comes as readonly record
|
52
|
+
last_change = Card::Change.find(last_change.id)
|
53
|
+
last_change.update_attributes!(card_action_id: last_action_id)
|
54
|
+
end
|
55
|
+
actions.where("id != ?", last_action_id).delete_all
|
56
|
+
end
|
57
|
+
|
58
|
+
|
59
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/history/set/all/actions.rb ~~
|
60
|
+
end;end;end;end;
|
@@ -0,0 +1,168 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class All; module ContentHistory; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/history/set/all/content_history.rb ~~
|
4
|
+
|
5
|
+
# if these aren't in a nested module, the methods just overwrite the base
|
6
|
+
# methods, but we need a distict module so that super will be able to refer to
|
7
|
+
# the base methods.
|
8
|
+
def content
|
9
|
+
if @selected_action_id
|
10
|
+
@selected_content ||= begin
|
11
|
+
change = last_change_on :db_content, not_after: @selected_action_id,
|
12
|
+
including_drafts: true
|
13
|
+
(change && change.value) || db_content
|
14
|
+
end
|
15
|
+
else
|
16
|
+
super
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def content= value
|
21
|
+
@selected_content = nil
|
22
|
+
super
|
23
|
+
end
|
24
|
+
|
25
|
+
def save_content_draft content
|
26
|
+
super
|
27
|
+
acts.create do |act|
|
28
|
+
act.actions.build(draft: true, card_id: id)
|
29
|
+
.card_changes.build(field: :db_content, value: content)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def last_change_on field, opts={}
|
34
|
+
where_sql = "card_actions.card_id = :card_id AND field = :field"
|
35
|
+
where_sql += " AND (draft is not true)" unless opts[:including_drafts]
|
36
|
+
if opts[:before]
|
37
|
+
where_sql += " AND card_action_id < :action_id"
|
38
|
+
elsif opts[:not_after]
|
39
|
+
where_sql += " AND card_action_id <= :action_id"
|
40
|
+
end
|
41
|
+
|
42
|
+
action_arg = opts[:before] || opts[:not_after]
|
43
|
+
action_id = action_arg.is_a?(Card::Action) ? action_arg.id : action_arg
|
44
|
+
Change.joins(:action).where(
|
45
|
+
where_sql, card_id: id,
|
46
|
+
field: Card::Change.field_index(field),
|
47
|
+
action_id: action_id
|
48
|
+
).order(:id).last
|
49
|
+
end
|
50
|
+
|
51
|
+
def selected_action_id
|
52
|
+
@selected_action_id || (@current_action && @current_action.id) ||
|
53
|
+
last_action_id
|
54
|
+
end
|
55
|
+
|
56
|
+
def selected_action_id= action_id
|
57
|
+
@selected_content = nil
|
58
|
+
@selected_action_id = action_id
|
59
|
+
end
|
60
|
+
|
61
|
+
def selected_action
|
62
|
+
selected_action_id && Action.fetch(selected_action_id)
|
63
|
+
end
|
64
|
+
|
65
|
+
def with_selected_action_id action_id
|
66
|
+
current_action_id = @selected_action_id
|
67
|
+
run_callbacks :select_action do
|
68
|
+
self.selected_action_id = action_id
|
69
|
+
end
|
70
|
+
result = yield
|
71
|
+
run_callbacks :select_action do
|
72
|
+
self.selected_action_id = current_action_id
|
73
|
+
end
|
74
|
+
result
|
75
|
+
end
|
76
|
+
|
77
|
+
def selected_content_action_id
|
78
|
+
@selected_action_id || new_content_action_id || last_content_action_id
|
79
|
+
end
|
80
|
+
|
81
|
+
def new_content_action_id
|
82
|
+
if @current_action && (new_card? || @current_action.new_content? ||
|
83
|
+
db_content_changed?)
|
84
|
+
@current_action.id
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def last_action_id
|
89
|
+
(la = last_action) && la.id
|
90
|
+
end
|
91
|
+
|
92
|
+
def last_action
|
93
|
+
actions.where("id IS NOT NULL").last
|
94
|
+
end
|
95
|
+
|
96
|
+
def last_content_action
|
97
|
+
l_c = last_change_on :db_content
|
98
|
+
l_c && l_c.action
|
99
|
+
end
|
100
|
+
|
101
|
+
def last_content_action_id
|
102
|
+
l_c = last_change_on :db_content
|
103
|
+
l_c && l_c.card_action_id
|
104
|
+
end
|
105
|
+
|
106
|
+
def last_actor
|
107
|
+
last_act.actor
|
108
|
+
end
|
109
|
+
|
110
|
+
def last_act
|
111
|
+
@last_act ||=
|
112
|
+
if (action = last_action)
|
113
|
+
last_act_on_self = acts.last
|
114
|
+
if last_act_on_self &&
|
115
|
+
(action.act == last_act_on_self ||
|
116
|
+
last_act_on_self.acted_at > action.act.acted_at)
|
117
|
+
last_act_on_self
|
118
|
+
else
|
119
|
+
action.act
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
def acted_at
|
125
|
+
last_act.acted_at
|
126
|
+
end
|
127
|
+
|
128
|
+
def previous_action action_id
|
129
|
+
if action_id
|
130
|
+
action_index = actions.find_index do |a|
|
131
|
+
a.id == action_id
|
132
|
+
end
|
133
|
+
actions[action_index - 1] if action_index.to_i != 0
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
def revised_at
|
138
|
+
(last_action && (act = last_action.act) && act.acted_at) || Time.zone.now
|
139
|
+
end
|
140
|
+
|
141
|
+
def creator
|
142
|
+
Card[creator_id]
|
143
|
+
end
|
144
|
+
|
145
|
+
def updater
|
146
|
+
Card[updater_id]
|
147
|
+
end
|
148
|
+
|
149
|
+
def clean_html?
|
150
|
+
true
|
151
|
+
end
|
152
|
+
|
153
|
+
def draft_acts
|
154
|
+
drafts.created_by(Card::Auth.current_id).map(&:act)
|
155
|
+
end
|
156
|
+
|
157
|
+
event :detect_conflict, :validate,
|
158
|
+
on: :update, when: proc { |c| c.history? } do
|
159
|
+
if last_action_id_before_edit &&
|
160
|
+
last_action_id_before_edit.to_i != last_action_id &&
|
161
|
+
last_action.act.actor_id != Auth.current_id
|
162
|
+
errors.add :conflict, "changes not based on latest revision"
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
|
167
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/history/set/all/content_history.rb ~~
|
168
|
+
end;end;end;end;
|
@@ -0,0 +1,408 @@
|
|
1
|
+
# -*- encoding : utf-8 -*-
|
2
|
+
class Card; module Set; class All; module History; extend Card::Set
|
3
|
+
# ~~ above autogenerated; below pulled from /Users/ethan/dev/wagn/gem/card/mod/history/set/all/history.rb ~~
|
4
|
+
ACTS_PER_PAGE = Card.config.acts_per_page
|
5
|
+
|
6
|
+
def history?
|
7
|
+
true
|
8
|
+
end
|
9
|
+
|
10
|
+
# must be called on all actions and before :set_name, :process_subcards and
|
11
|
+
# :validate_delete_children
|
12
|
+
|
13
|
+
def actionable?
|
14
|
+
history? || respond_to?(:attachment)
|
15
|
+
end
|
16
|
+
|
17
|
+
event :assign_action, :initialize,
|
18
|
+
when: proc { |c| c.actionable? } do
|
19
|
+
@current_act = director.need_act
|
20
|
+
@current_action = Card::Action.create(
|
21
|
+
card_act_id: @current_act.id,
|
22
|
+
action_type: @action,
|
23
|
+
draft: (Env.params["draft"] == "true")
|
24
|
+
)
|
25
|
+
if @supercard && @supercard != self
|
26
|
+
@current_action.super_action = @supercard.current_action
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def finalize_action?
|
31
|
+
actionable? && current_action
|
32
|
+
end
|
33
|
+
|
34
|
+
# stores changes in the changes table and assigns them to the current action
|
35
|
+
# removes the action if there are no changes
|
36
|
+
event :finalize_action, :finalize,
|
37
|
+
when: proc { |c| c.finalize_action? } do
|
38
|
+
@changed_fields = Card::Change::TRACKED_FIELDS.select do |f|
|
39
|
+
changed_attributes.member? f
|
40
|
+
end
|
41
|
+
if @changed_fields.present?
|
42
|
+
# FIXME: should be one bulk insert
|
43
|
+
@changed_fields.each do |f|
|
44
|
+
Card::Change.create field: f,
|
45
|
+
value: self[f],
|
46
|
+
card_action_id: @current_action.id
|
47
|
+
end
|
48
|
+
@current_action.update_attributes! card_id: id
|
49
|
+
elsif @current_action.card_changes(true).empty?
|
50
|
+
@current_action.delete
|
51
|
+
@current_action = nil
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
event :finalize_act,
|
56
|
+
after: :finalize_action,
|
57
|
+
when: proc { |c| c.act_card? } do
|
58
|
+
# removed subcards can leave behind actions without card id
|
59
|
+
if @current_act.actions(true).empty?
|
60
|
+
@current_act.delete
|
61
|
+
@current_act = nil
|
62
|
+
else
|
63
|
+
@current_act.update_attributes! card_id: id
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
def act_card?
|
68
|
+
self == DirectorRegister.act_card
|
69
|
+
end
|
70
|
+
|
71
|
+
event :rollback_actions, :prepare_to_validate,
|
72
|
+
on: :update,
|
73
|
+
when: proc { |c| c.rollback_request? } do
|
74
|
+
revision = { subcards: {} }
|
75
|
+
rollback_actions = Env.params["action_ids"].map do |a_id|
|
76
|
+
Action.fetch(a_id) || nil
|
77
|
+
end
|
78
|
+
rollback_actions.each do |action|
|
79
|
+
if action.card_id == id
|
80
|
+
revision.merge!(revision(action))
|
81
|
+
else
|
82
|
+
revision[:subcards][action.card.name] = revision(action)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
Env.params["action_ids"] = nil
|
86
|
+
update_attributes! revision
|
87
|
+
rollback_actions.each do |action|
|
88
|
+
# rollback file and image cards
|
89
|
+
action.card.try :rollback_to, action
|
90
|
+
end
|
91
|
+
clear_drafts
|
92
|
+
abort :success
|
93
|
+
end
|
94
|
+
|
95
|
+
def rollback_request?
|
96
|
+
history? && Env && Env.params["action_ids"] &&
|
97
|
+
Env.params["action_ids"].class == Array
|
98
|
+
end
|
99
|
+
|
100
|
+
# all acts with actions on self and on cards that are descendants of self and
|
101
|
+
# included in self
|
102
|
+
def intrusive_family_acts args={}
|
103
|
+
@intrusive_family_acts ||= begin
|
104
|
+
Act.find_all_with_actions_on((included_descendant_card_ids << id), args)
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
# all acts with actions on self and on cards included in self
|
109
|
+
def intrusive_acts args={ with_drafts: true }
|
110
|
+
@intrusive_acts ||= begin
|
111
|
+
Act.find_all_with_actions_on((included_card_ids << id), args)
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
def current_rev_nr
|
116
|
+
@current_rev_nr ||= begin
|
117
|
+
if intrusive_acts.first.actions.last.draft
|
118
|
+
@intrusive_acts.size - 1
|
119
|
+
else
|
120
|
+
@intrusive_acts.size
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
def included_card_ids
|
126
|
+
@included_card_ids ||=
|
127
|
+
Card::Reference.select(:referee_id).where(
|
128
|
+
ref_type: "I", referer_id: id
|
129
|
+
).pluck("referee_id").compact.uniq
|
130
|
+
end
|
131
|
+
|
132
|
+
def descendant_card_ids parent_ids=[id]
|
133
|
+
more_ids = Card.where("left_id IN (?)", parent_ids).pluck("id")
|
134
|
+
more_ids += descendant_card_ids more_ids unless more_ids.empty?
|
135
|
+
more_ids
|
136
|
+
end
|
137
|
+
|
138
|
+
def included_descendant_card_ids
|
139
|
+
included_card_ids & descendant_card_ids
|
140
|
+
end
|
141
|
+
|
142
|
+
format :html do
|
143
|
+
view :history do |args|
|
144
|
+
frame args.merge(body_class: "history-slot list-group", content: true) do
|
145
|
+
[history_legend, _render_act_list]
|
146
|
+
end
|
147
|
+
end
|
148
|
+
|
149
|
+
def default_history_args args
|
150
|
+
args[:optional_toolbar] ||= :show
|
151
|
+
end
|
152
|
+
|
153
|
+
view :act_list do |args|
|
154
|
+
page = params["page"] || 1
|
155
|
+
count = card.intrusive_acts.size + 1 - (page.to_i - 1) * ACTS_PER_PAGE
|
156
|
+
card.intrusive_acts.page(page).per(ACTS_PER_PAGE).map do |act|
|
157
|
+
count -= 1
|
158
|
+
render_act args.merge(act: act, act_seq: count)
|
159
|
+
end.join
|
160
|
+
end
|
161
|
+
|
162
|
+
def history_legend
|
163
|
+
intr = card.intrusive_acts.page(params["page"]).per(ACTS_PER_PAGE)
|
164
|
+
render_haml intr: intr do
|
165
|
+
<<-HAML.strip_heredoc
|
166
|
+
.history-header
|
167
|
+
%span.slotter
|
168
|
+
= paginate intr, remote: true, theme: 'twitter-bootstrap-3'
|
169
|
+
%div.history-legend
|
170
|
+
%span.glyphicon.glyphicon-plus-sign.diff-green
|
171
|
+
%span
|
172
|
+
= Card::Content::Diff.render_added_chunk('Added')
|
173
|
+
|
|
174
|
+
%span.glyphicon.glyphicon-minus-sign.diff-red
|
175
|
+
%span
|
176
|
+
= Card::Content::Diff.render_deleted_chunk('Deleted')
|
177
|
+
HAML
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
def default_act_args args
|
182
|
+
act = (args[:act] ||= Act.find(params["act_id"]))
|
183
|
+
args[:act_seq] ||= params["act_seq"]
|
184
|
+
args[:hide_diff] ||= hide_diff?
|
185
|
+
args[:slot_class] ||= "revision-#{act.id} history-slot list-group-item"
|
186
|
+
args[:action_view] ||= action_view
|
187
|
+
args[:actions] ||= action_list args
|
188
|
+
end
|
189
|
+
|
190
|
+
def action_list args
|
191
|
+
act = args[:act]
|
192
|
+
actions =
|
193
|
+
if act_context(args) == :absolute
|
194
|
+
act.actions
|
195
|
+
else
|
196
|
+
act.actions_affecting(card)
|
197
|
+
end
|
198
|
+
actions.select { |a| a.card && a.card.ok?(:read) }
|
199
|
+
# FIXME: should not need to test for presence of card here.
|
200
|
+
end
|
201
|
+
|
202
|
+
def act_context args
|
203
|
+
args[:act_context] =
|
204
|
+
(args[:act_context] || params["act_context"] || :relative).to_sym
|
205
|
+
end
|
206
|
+
|
207
|
+
def hide_diff?
|
208
|
+
params["hide_diff"].to_s.strip == "true"
|
209
|
+
end
|
210
|
+
|
211
|
+
def action_view
|
212
|
+
(params["action_view"] || "summary").to_sym
|
213
|
+
end
|
214
|
+
|
215
|
+
view :act do |args|
|
216
|
+
wrap(args) do
|
217
|
+
render_haml args.merge(card: card, args: args) do
|
218
|
+
<<-HAML.strip_heredoc
|
219
|
+
.act{style: "clear:both;"}
|
220
|
+
- show_header = act_context == :absolute ? :show : :hide
|
221
|
+
= optional_render :act_header, args, show_header
|
222
|
+
.head
|
223
|
+
= render :act_metadata, args
|
224
|
+
.toggle
|
225
|
+
= fold_or_unfold_link args
|
226
|
+
.action-container
|
227
|
+
- actions.each do |action|
|
228
|
+
= render "action_#{args[:action_view]}", args.merge(action: action)
|
229
|
+
HAML
|
230
|
+
end
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
view :act_header do |_args|
|
235
|
+
%(<h5 "class=act-header">#{card_link card}</h5>)
|
236
|
+
end
|
237
|
+
|
238
|
+
view :act_metadata do |args|
|
239
|
+
render_haml args.merge(card: card, args: args) do
|
240
|
+
<<-HAML.strip_heredoc
|
241
|
+
- unless act_context == :absolute
|
242
|
+
.nr
|
243
|
+
= '#' + act_seq.to_s
|
244
|
+
.title
|
245
|
+
.actor
|
246
|
+
= link_to act.actor.name, card_url(act.actor.cardname.url_key)
|
247
|
+
.time.timeago
|
248
|
+
= time_ago_in_words(act.acted_at)
|
249
|
+
ago
|
250
|
+
- if act.id == card.last_act.id
|
251
|
+
%em.label.label-info Current
|
252
|
+
- if action_view == :expanded
|
253
|
+
- unless act.id == card.last_act.id
|
254
|
+
= rollback_link act.actions_affecting(card)
|
255
|
+
= show_or_hide_changes_link args
|
256
|
+
HAML
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
view :action_summary do |args|
|
261
|
+
view_action :summary, args
|
262
|
+
end
|
263
|
+
|
264
|
+
view :action_expanded do |args|
|
265
|
+
view_action :expanded, args
|
266
|
+
end
|
267
|
+
|
268
|
+
def view_action action_view, args
|
269
|
+
action = args[:action] || card.last_action
|
270
|
+
hide_diff = args[:hide_diff] || hide_diff?
|
271
|
+
|
272
|
+
render_haml action: action,
|
273
|
+
action_view: action_view,
|
274
|
+
name_diff: name_diff(action, hide_diff),
|
275
|
+
type_diff: type_diff(action, hide_diff),
|
276
|
+
content_diff: content_diff(action, action_view, hide_diff) do
|
277
|
+
<<-HAML.strip_heredoc
|
278
|
+
.action
|
279
|
+
.summary
|
280
|
+
%span.ampel
|
281
|
+
= glyphicon 'minus-sign', (action.red? ? 'diff-red' : 'diff-invisible')
|
282
|
+
= glyphicon 'plus-sign', (action.green? ? 'diff-green' : 'diff-invisible')
|
283
|
+
= wrap_diff :name, name_diff
|
284
|
+
= wrap_diff :type, type_diff
|
285
|
+
-if content_diff
|
286
|
+
= glyphicon 'arrow-right', 'arrow'
|
287
|
+
-if action_view == :summary
|
288
|
+
= wrap_diff :content, content_diff
|
289
|
+
-if content_diff and action_view == :expanded
|
290
|
+
.expanded
|
291
|
+
= wrap_diff :content, content_diff
|
292
|
+
HAML
|
293
|
+
end
|
294
|
+
end
|
295
|
+
|
296
|
+
def name_diff action, hide_diff
|
297
|
+
if action.card == card
|
298
|
+
name_changes(action, hide_diff)
|
299
|
+
else
|
300
|
+
link_path = path(
|
301
|
+
view: :related,
|
302
|
+
related: { view: "history", name: action.card.name }
|
303
|
+
)
|
304
|
+
link_to name_changes(action, hide_diff), link_path,
|
305
|
+
class: "slotter label label-default",
|
306
|
+
"data-slot-selector" => ".card-slot.history-view",
|
307
|
+
remote: true
|
308
|
+
end
|
309
|
+
end
|
310
|
+
|
311
|
+
def type_diff action, hide_diff
|
312
|
+
action.new_type? && type_changes(action, hide_diff)
|
313
|
+
end
|
314
|
+
|
315
|
+
def content_diff action, action_view, hide_diff
|
316
|
+
action.new_content? && action.card.format.render_content_changes(
|
317
|
+
action: action, diff_type: action_view, hide_diff: hide_diff
|
318
|
+
)
|
319
|
+
end
|
320
|
+
|
321
|
+
def wrap_diff field, content
|
322
|
+
return "" unless content.present?
|
323
|
+
%(
|
324
|
+
<span class="#{field}-diff">
|
325
|
+
#{content}
|
326
|
+
</span>
|
327
|
+
)
|
328
|
+
end
|
329
|
+
|
330
|
+
def name_changes action, hide_diff=false
|
331
|
+
old_name = (name = action.previous_value :name) && showname(name).to_s
|
332
|
+
if action.new_name?
|
333
|
+
new_name = showname(action.value(:name)).to_s
|
334
|
+
if hide_diff
|
335
|
+
new_name
|
336
|
+
else
|
337
|
+
Card::Content::Diff.complete(old_name, new_name)
|
338
|
+
end
|
339
|
+
else
|
340
|
+
old_name
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
def type_changes action, hide_diff=false
|
345
|
+
change = hide_diff ? action.value(:cardtype) : action.cardtype_diff
|
346
|
+
"(#{change})"
|
347
|
+
end
|
348
|
+
|
349
|
+
view :content_changes do |args|
|
350
|
+
if args[:hide_diff]
|
351
|
+
args[:action].value :db_content
|
352
|
+
else
|
353
|
+
args[:action].content_diff(args[:diff_type])
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
357
|
+
def fold_or_unfold_link args
|
358
|
+
path_opts = {
|
359
|
+
act_id: args[:act].id,
|
360
|
+
act_seq: args[:act_seq],
|
361
|
+
hide_diff: args[:hide_diff],
|
362
|
+
act_context: args[:act_context],
|
363
|
+
action_view: (args[:action_view] == :expanded ? :summary : :expanded)
|
364
|
+
}
|
365
|
+
arrow_dir = args[:action_view] == :expanded ? "arrow-down" : "arrow-right"
|
366
|
+
view_link "", :act, path_opts: path_opts,
|
367
|
+
class: "slotter revision-#{args[:act_id]} #{arrow_dir}"
|
368
|
+
end
|
369
|
+
|
370
|
+
def rollback_link actions
|
371
|
+
not_current =
|
372
|
+
actions.select { |action| action.card.last_action_id != action.id }
|
373
|
+
return unless card.ok?(:update) && not_current.present?
|
374
|
+
link_path = path action: :update, view: :open, action_ids: not_current
|
375
|
+
link = link_to(
|
376
|
+
"Save as current", link_path,
|
377
|
+
class: "slotter", "data-slot-selector" => ".card-slot.history-view",
|
378
|
+
remote: true, method: :post, rel: "nofollow"
|
379
|
+
)
|
380
|
+
%(<div class="act-link">#{link}</div>)
|
381
|
+
end
|
382
|
+
|
383
|
+
def show_or_hide_changes_link args
|
384
|
+
toggle = args[:hide_diff] ? "Show" : "Hide"
|
385
|
+
path_opts = {
|
386
|
+
act_id: args[:act].id,
|
387
|
+
act_seq: args[:act_seq],
|
388
|
+
hide_diff: !args[:hide_diff],
|
389
|
+
action_view: :expanded,
|
390
|
+
act_context: args[:act_context]
|
391
|
+
}
|
392
|
+
link = view_link("#{toggle} changes", :act,
|
393
|
+
path_opts: path_opts, class: "slotter", remote: true)
|
394
|
+
%(<div class="act-link">#{link}</div>)
|
395
|
+
end
|
396
|
+
end
|
397
|
+
|
398
|
+
def diff_args
|
399
|
+
{ format: :text }
|
400
|
+
end
|
401
|
+
|
402
|
+
def has_edits?
|
403
|
+
Card::Act.where(actor_id: id).where("card_id IS NOT NULL").present?
|
404
|
+
end
|
405
|
+
|
406
|
+
|
407
|
+
# ~~ below autogenerated; above pulled from /Users/ethan/dev/wagn/gem/card/mod/history/set/all/history.rb ~~
|
408
|
+
end;end;end;end;
|