wagn 1.13.0 → 1.14.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (459) hide show
  1. checksums.yaml +4 -4
  2. data/Guardfile +3 -2
  3. data/VERSION +1 -1
  4. data/app/controllers/card_controller.rb +33 -38
  5. data/config/routes.rb +2 -2
  6. data/config/version.txt +1 -1
  7. data/db/bootstrap/card_actions.yml +3543 -0
  8. data/db/bootstrap/card_acts.yml +7 -0
  9. data/db/bootstrap/card_changes.yml +9150 -0
  10. data/db/bootstrap/card_references.yml +666 -344
  11. data/db/bootstrap/cards.yml +3256 -1702
  12. data/db/migrate/20140822073704_create_new_revision_tables.rb +43 -0
  13. data/db/migrate/20141001105348_move_revisions_to_actions.rb +62 -0
  14. data/db/migrate_cards/20130411191151_renaming_for_menu.rb +42 -45
  15. data/db/migrate_cards/20130411211600_delete_old_related_tab_cards.rb +13 -16
  16. data/db/migrate_cards/20130419215612_import_help_text.rb +7 -10
  17. data/db/migrate_cards/20130823192433_add_style_cards.rb +77 -81
  18. data/db/migrate_cards/20130910183318_move_styles_to_content.rb +4 -7
  19. data/db/migrate_cards/20130920214038_jsonize_tinymce.rb +9 -12
  20. data/db/migrate_cards/20130920291703_update_stylesheets.rb +10 -13
  21. data/db/migrate_cards/20130927191728_account_events.rb +15 -18
  22. data/db/migrate_cards/20131016172445_common_css_patch.rb +5 -8
  23. data/db/migrate_cards/20140110193325_reset_account_request_type.rb +4 -7
  24. data/db/migrate_cards/20140307231621_user_data_to_cards.rb +50 -53
  25. data/db/migrate_cards/20140317035504_account_requests_to_signups.rb +39 -42
  26. data/db/migrate_cards/20140512155840_add_script_cards.rb +56 -59
  27. data/db/migrate_cards/20140629222005_add_email_cards.rb +168 -0
  28. data/db/migrate_cards/20140725180118_config_card_updates.rb +4 -7
  29. data/db/migrate_cards/data/mailer/follower_notification_email.html +9 -0
  30. data/db/migrate_cards/data/mailer/follower_notification_email.txt +11 -0
  31. data/db/migrate_cards/data/mailer/mail_config.json +22 -0
  32. data/db/migrate_cards/data/mailer/password_reset_email.html +10 -0
  33. data/db/migrate_cards/data/mailer/password_reset_email.txt +11 -0
  34. data/db/migrate_cards/data/mailer/signup_alert_email.html +7 -0
  35. data/db/migrate_cards/data/mailer/signup_alert_email.txt +5 -0
  36. data/db/migrate_cards/data/mailer/verification_email.html +9 -0
  37. data/db/migrate_cards/data/mailer/verification_email.txt +8 -0
  38. data/db/schema.rb +31 -1
  39. data/features/conflict.feature +39 -0
  40. data/features/flexmail.feature +54 -54
  41. data/features/notifications.feature +4 -2
  42. data/features/reset_password.feature +1 -1
  43. data/features/step_definitions/wagn_steps.rb +20 -2
  44. data/features/step_definitions/window_steps.rb +23 -0
  45. data/features/support/env.rb +1 -0
  46. data/features/update_includers.feature +16 -10
  47. data/features/watch.feature +2 -2
  48. data/lib/card.rb +11 -10
  49. data/lib/card/act.rb +63 -0
  50. data/lib/card/action.rb +194 -0
  51. data/lib/card/change.rb +29 -0
  52. data/lib/card/content.rb +1 -1
  53. data/lib/card/diff.rb +229 -276
  54. data/lib/card/env.rb +4 -3
  55. data/lib/card/format.rb +2 -5
  56. data/lib/card/generators/card_migration/USAGE +15 -3
  57. data/lib/card/generators/card_migration/card_migration_generator.rb +22 -2
  58. data/lib/card/generators/card_migration/templates/card_migration.erb +4 -5
  59. data/lib/card/generators/format/USAGE +2 -2
  60. data/lib/card/generators/format/format_generator.rb +2 -2
  61. data/lib/card/generators/set/USAGE +2 -2
  62. data/lib/card/mailer.rb +21 -100
  63. data/lib/card/name.rb +4 -3
  64. data/lib/card/query.rb +2 -2
  65. data/lib/card/query/card_spec.rb +20 -30
  66. data/lib/card/query/value_spec.rb +2 -3
  67. data/lib/card/set.rb +3 -0
  68. data/lib/wagn/all.rb +6 -0
  69. data/lib/wagn/application.rb +16 -6
  70. data/lib/wagn/commands.rb +87 -27
  71. data/lib/wagn/config/environments/development.rb +17 -0
  72. data/lib/wagn/config/environments/test.rb +14 -1
  73. data/lib/wagn/config/initializers/airbrake.rb +1 -1
  74. data/lib/wagn/generators/wagn/templates/Gemfile +27 -9
  75. data/lib/wagn/generators/wagn/templates/config/application.rb +12 -3
  76. data/lib/wagn/generators/wagn/templates/simplecov +5 -0
  77. data/lib/wagn/generators/wagn/templates/spec/spec_helper.rb +1 -0
  78. data/lib/wagn/generators/wagn/wagn_generator.rb +75 -45
  79. data/lib/wagn/location.rb +9 -0
  80. data/lib/wagn/migration.rb +96 -0
  81. data/lib/wagn/mods_spec_helper.rb +16 -8
  82. data/lib/wagn/simplecov_helper.rb +61 -0
  83. data/lib/wagn/{wagn_spec_helper.rb → spec_helper.rb} +11 -3
  84. data/lib/wagn/tasks/test.rake +1 -1
  85. data/lib/wagn/tasks/wagn.rake +100 -34
  86. data/lib/wagn/version.rb +7 -2
  87. data/mod/{core → 01_core}/chunk/include.rb +0 -0
  88. data/mod/{core → 01_core}/chunk/link.rb +0 -0
  89. data/mod/{core → 01_core}/chunk/literal.rb +0 -0
  90. data/mod/{core → 01_core}/chunk/reference.rb +15 -3
  91. data/mod/{core → 01_core}/chunk/uri.rb +0 -0
  92. data/mod/{core → 01_core}/format/data_format.rb +0 -0
  93. data/mod/{core → 01_core}/format/html_format.rb +5 -2
  94. data/mod/{core → 01_core}/format/text_format.rb +0 -0
  95. data/mod/{core → 01_core}/layout/blank.html +0 -0
  96. data/mod/{core → 01_core}/layout/default.html +0 -0
  97. data/mod/{core → 01_core}/layout/noside.html +0 -0
  98. data/mod/{core → 01_core}/layout/pre.html +0 -0
  99. data/mod/{core → 01_core}/layout/simple.html +0 -0
  100. data/mod/{core → 01_core}/set/all/active_card.rb +0 -0
  101. data/mod/{core → 01_core}/set/all/collection.rb +33 -5
  102. data/mod/01_core/set/all/content.rb +144 -0
  103. data/mod/01_core/set/all/erb.rb +11 -0
  104. data/mod/{core → 01_core}/set/all/fetch.rb +8 -1
  105. data/mod/01_core/set/all/haml.rb +7 -0
  106. data/mod/{core → 01_core}/set/all/initialize.rb +4 -2
  107. data/mod/{core → 01_core}/set/all/name.rb +2 -3
  108. data/mod/01_core/set/all/notify.rb +215 -0
  109. data/mod/{core → 01_core}/set/all/pattern.rb +0 -0
  110. data/mod/{core → 01_core}/set/all/permissions.rb +1 -1
  111. data/mod/{core → 01_core}/set/all/phases.rb +24 -8
  112. data/mod/{core → 01_core}/set/all/references.rb +2 -2
  113. data/mod/{core → 01_core}/set/all/rules.rb +2 -2
  114. data/mod/{core → 01_core}/set/all/states.rb +1 -1
  115. data/mod/{core → 01_core}/set/all/templating.rb +4 -4
  116. data/mod/{core → 01_core}/set/all/tracked_attributes.rb +15 -64
  117. data/mod/{core → 01_core}/set/all/trash.rb +6 -5
  118. data/mod/{core → 01_core}/set/all/type.rb +0 -0
  119. data/mod/{core → 01_core}/set/all/utils.rb +1 -1
  120. data/mod/{core → 01_core}/set_pattern/01_all.rb +0 -0
  121. data/mod/{core → 01_core}/set_pattern/02_all_plus.rb +0 -0
  122. data/mod/{core → 01_core}/set_pattern/03_type.rb +0 -0
  123. data/mod/{core → 01_core}/set_pattern/04_star.rb +0 -0
  124. data/mod/{core → 01_core}/set_pattern/05_rstar.rb +0 -0
  125. data/mod/{core → 01_core}/set_pattern/06_right.rb +0 -0
  126. data/mod/{core → 01_core}/set_pattern/07_type_plus_right.rb +0 -0
  127. data/mod/{core → 01_core}/set_pattern/08_self.rb +0 -0
  128. data/mod/01_core/spec/chunk/literal_spec.rb +14 -0
  129. data/{spec/mod/core → mod/01_core/spec}/chunk/uri_spec.rb +3 -3
  130. data/{spec/mod/core → mod/01_core/spec}/format/data_format_spec.rb +0 -0
  131. data/{spec/mod/core → mod/01_core/spec}/format/html_format_spec.rb +9 -8
  132. data/{spec/mod/core → mod/01_core/spec}/format/text_format_spec.rb +0 -0
  133. data/{spec/mod/core → mod/01_core/spec}/set/all/active_card_spec.rb +0 -0
  134. data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +21 -0
  135. data/mod/01_core/spec/set/all/collection_spec.rb +65 -0
  136. data/mod/01_core/spec/set/all/content_spec.rb +15 -0
  137. data/{spec/mod/core → mod/01_core/spec}/set/all/fetch_spec.rb +70 -68
  138. data/{spec/mod/core → mod/01_core/spec}/set/all/initialize_spec.rb +12 -12
  139. data/{spec/mod/core → mod/01_core/spec}/set/all/name_spec.rb +7 -7
  140. data/mod/01_core/spec/set/all/notify_spec.rb +199 -0
  141. data/{spec/mod/core → mod/01_core/spec}/set/all/pattern_spec.rb +16 -16
  142. data/{spec/mod/core → mod/01_core/spec}/set/all/permissions_spec.rb +62 -62
  143. data/{spec/mod/core → mod/01_core/spec}/set/all/phases_spec.rb +0 -0
  144. data/{spec/mod/core → mod/01_core/spec}/set/all/references_spec.rb +1 -1
  145. data/{spec/mod/core → mod/01_core/spec}/set/all/rules2_spec.rb +57 -57
  146. data/mod/01_core/spec/set/all/rules_spec.rb +81 -0
  147. data/{spec/mod/core → mod/01_core/spec}/set/all/states_spec.rb +0 -0
  148. data/{spec/mod/core → mod/01_core/spec}/set/all/templating_spec.rb +16 -12
  149. data/{spec/mod/core → mod/01_core/spec}/set/all/tracked_attributes_spec.rb +24 -22
  150. data/{spec/mod/core → mod/01_core/spec}/set/all/trash_spec.rb +2 -2
  151. data/{spec/mod/core → mod/01_core/spec}/set/all/type_spec.rb +13 -13
  152. data/{spec/mod/core → mod/01_core/spec}/set/all/utils_spec.rb +0 -0
  153. data/mod/{core → 02_basic_types}/set/type/plain_text.rb +0 -0
  154. data/mod/{standard → 02_basic_types}/set/type/pointer.rb +21 -8
  155. data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/plain_text_spec.rb +0 -0
  156. data/{spec/mod/standard/set/type → mod/02_basic_types/spec/set}/pointer_spec.rb +22 -9
  157. data/mod/{standard → 03_machines}/lib/card/machine.rb +3 -2
  158. data/mod/{standard → 03_machines}/lib/card/machine_input.rb +1 -1
  159. data/mod/{standard → 03_machines}/lib/javascript/html5shiv-printshiv.js +0 -0
  160. data/mod/{standard → 03_machines}/lib/javascript/jquery-ui.js +0 -0
  161. data/mod/{standard → 03_machines}/lib/javascript/jquery.autosize.js +0 -0
  162. data/mod/{standard → 03_machines}/lib/javascript/jquery.fileupload.js +0 -0
  163. data/mod/{standard → 03_machines}/lib/javascript/jquery.iframe-transport.js +0 -0
  164. data/mod/{standard → 03_machines}/lib/javascript/jquery.js +0 -0
  165. data/mod/{standard → 03_machines}/lib/javascript/jquery.ui.autocomplete.html.js +0 -0
  166. data/mod/{standard → 03_machines}/lib/javascript/jquery_ujs.js +0 -0
  167. data/mod/{standard → 03_machines}/lib/javascript/jquerymobile.js +0 -0
  168. data/mod/{standard → 03_machines}/lib/javascript/tinymce.js +0 -0
  169. data/mod/{standard → 03_machines}/lib/javascript/wagn.js.coffee +17 -9
  170. data/mod/{standard → 03_machines}/lib/javascript/wagn_menu.js +0 -0
  171. data/mod/{standard → 03_machines}/lib/javascript/wagn_mod.js.coffee +1 -1
  172. data/mod/{standard → 03_machines}/lib/stylesheets/functional.scss +1 -1
  173. data/mod/{standard → 03_machines}/lib/stylesheets/jquery-ui-smoothness.css +0 -0
  174. data/mod/{standard → 03_machines}/lib/stylesheets/standard.scss +126 -21
  175. data/mod/{standard → 03_machines}/set/right/machine_output.rb +3 -2
  176. data/mod/{standard → 03_machines}/set/self/script_card_menu.rb +1 -1
  177. data/mod/{standard → 03_machines}/set/self/script_html5shiv_printshiv.rb +1 -1
  178. data/mod/{standard → 03_machines}/set/self/script_jquery.rb +1 -1
  179. data/mod/{standard → 03_machines}/set/self/script_jquery_helper.rb +1 -1
  180. data/mod/{standard → 03_machines}/set/self/script_slot.rb +1 -1
  181. data/mod/{standard → 03_machines}/set/self/script_tinymce.rb +1 -1
  182. data/mod/{standard → 03_machines}/set/self/style_functional.rb +1 -1
  183. data/mod/{standard → 03_machines}/set/self/style_jquery_ui_smoothness.rb +1 -1
  184. data/mod/{standard → 03_machines}/set/self/style_standard.rb +1 -1
  185. data/mod/{standard → 03_machines}/set/type/coffee_script.rb +0 -0
  186. data/mod/{standard → 03_machines}/set/type/css.rb +0 -0
  187. data/mod/{standard → 03_machines}/set/type/java_script.rb +0 -0
  188. data/mod/{standard → 03_machines}/set/type/scss.rb +0 -0
  189. data/mod/{standard → 03_machines}/set/type/skin.rb +0 -0
  190. data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_input_spec.rb +0 -0
  191. data/{spec/mod/standard → mod/03_machines/spec}/lib/machine_spec.rb +4 -4
  192. data/{spec/mod/standard → mod/03_machines/spec}/set/right/machine_output_spec.rb +0 -0
  193. data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_functional_spec.rb +0 -0
  194. data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_jquery_ui_smoothness_spec.rb +0 -0
  195. data/{spec/mod/standard → mod/03_machines/spec}/set/self/style_standard_spec.rb +0 -0
  196. data/{spec/mod/standard → mod/03_machines/spec}/set/type/coffeescript_spec.rb +0 -0
  197. data/{spec/mod/standard → mod/03_machines/spec}/set/type/css_spec.rb +0 -0
  198. data/{spec/mod/standard → mod/03_machines/spec}/set/type/javascript_spec.rb +0 -0
  199. data/{spec/mod/standard → mod/03_machines/spec}/set/type/scss_spec.rb +1 -1
  200. data/{spec/mod/standard → mod/03_machines/spec}/set/type/skin_spec.rb +22 -0
  201. data/mod/04_settings/lib/card/setting.rb +57 -0
  202. data/mod/{core/set/right/structure.rb → 04_settings/set/right/add_help.rb} +0 -2
  203. data/mod/{standard → 04_settings}/set/right/comment.rb +0 -1
  204. data/mod/{standard → 04_settings}/set/right/create.rb +0 -1
  205. data/mod/04_settings/set/right/default.rb +3 -0
  206. data/mod/{standard → 04_settings}/set/right/delete.rb +2 -0
  207. data/mod/04_settings/set/right/help.rb +3 -0
  208. data/mod/{standard → 04_settings}/set/right/read.rb +0 -0
  209. data/mod/{standard → 04_settings}/set/right/script.rb +0 -0
  210. data/mod/04_settings/set/right/structure.rb +4 -0
  211. data/mod/{standard → 04_settings}/set/right/style.rb +0 -0
  212. data/mod/{standard → 04_settings}/set/right/update.rb +0 -0
  213. data/mod/04_settings/set/self/accountable.rb +2 -0
  214. data/mod/04_settings/set/self/add_help.rb +2 -0
  215. data/mod/04_settings/set/self/autoname.rb +2 -0
  216. data/mod/04_settings/set/self/captcha.rb +2 -0
  217. data/mod/04_settings/set/self/comment.rb +2 -0
  218. data/mod/04_settings/set/self/create.rb +2 -0
  219. data/mod/04_settings/set/self/default.rb +2 -0
  220. data/mod/04_settings/set/self/delete.rb +2 -0
  221. data/mod/04_settings/set/self/help.rb +2 -0
  222. data/mod/04_settings/set/self/input.rb +2 -0
  223. data/mod/04_settings/set/self/layout.rb +2 -0
  224. data/mod/04_settings/set/self/on_create.rb +2 -0
  225. data/mod/04_settings/set/self/on_delete.rb +2 -0
  226. data/mod/04_settings/set/self/on_update.rb +2 -0
  227. data/mod/04_settings/set/self/options.rb +2 -0
  228. data/mod/04_settings/set/self/options_label.rb +2 -0
  229. data/mod/04_settings/set/self/read.rb +2 -0
  230. data/mod/04_settings/set/self/script.rb +2 -0
  231. data/mod/04_settings/set/self/structure.rb +2 -0
  232. data/mod/04_settings/set/self/style.rb +2 -0
  233. data/mod/04_settings/set/self/table_of_contents.rb +2 -0
  234. data/mod/04_settings/set/self/thanks.rb +2 -0
  235. data/mod/04_settings/set/self/update.rb +2 -0
  236. data/mod/{standard → 04_settings}/set/type/setting.rb +8 -14
  237. data/{spec/mod/standard → mod/04_settings/spec}/set/right/add_help_spec.rb +0 -0
  238. data/{spec/mod/standard → mod/04_settings/spec}/set/right/comment_spec.rb +5 -5
  239. data/{spec/mod/standard → mod/04_settings/spec}/set/right/create_spec.rb +0 -0
  240. data/{spec/mod/standard → mod/04_settings/spec}/set/right/default_spec.rb +0 -0
  241. data/{spec/mod/standard → mod/04_settings/spec}/set/right/delete_spec.rb +0 -0
  242. data/{spec/mod/standard → mod/04_settings/spec}/set/right/help_spec.rb +0 -0
  243. data/{spec/mod/standard → mod/04_settings/spec}/set/right/read_spec.rb +0 -0
  244. data/{spec/mod/standard → mod/04_settings/spec}/set/right/script_spec.rb +0 -0
  245. data/{spec/mod/standard → mod/04_settings/spec}/set/right/structure_spec.rb +4 -2
  246. data/{spec/mod/standard → mod/04_settings/spec}/set/right/style_spec.rb +1 -1
  247. data/{spec/mod/standard → mod/04_settings/spec}/set/right/update_spec.rb +0 -0
  248. data/{spec/mod/standard → mod/04_settings/spec}/set/type/setting_spec.rb +0 -0
  249. data/mod/{standard → 05_standard}/file/103/icon-6566.ico +0 -0
  250. data/mod/{standard → 05_standard}/file/103/large-6566.ico +0 -0
  251. data/mod/{standard → 05_standard}/file/103/medium-6566.ico +0 -0
  252. data/mod/{standard → 05_standard}/file/103/original-6566.ico +0 -0
  253. data/mod/{standard → 05_standard}/file/103/small-6566.ico +0 -0
  254. data/mod/{standard → 05_standard}/file/79/icon-6556.png +0 -0
  255. data/mod/{standard → 05_standard}/file/79/large-6556.png +0 -0
  256. data/mod/{standard → 05_standard}/file/79/medium-6556.png +0 -0
  257. data/mod/{standard → 05_standard}/file/79/original-6556.png +0 -0
  258. data/mod/{standard → 05_standard}/file/79/small-6556.png +0 -0
  259. data/mod/{standard → 05_standard}/file/790/icon-6419.png +0 -0
  260. data/mod/{standard → 05_standard}/file/790/large-6419.png +0 -0
  261. data/mod/{standard → 05_standard}/file/790/medium-6419.png +0 -0
  262. data/mod/{standard → 05_standard}/file/790/original-6419.png +0 -0
  263. data/mod/{standard → 05_standard}/file/790/small-6419.png +0 -0
  264. data/mod/{standard → 05_standard}/format/css_format.rb +0 -0
  265. data/mod/{standard → 05_standard}/format/csv_format.rb +0 -0
  266. data/mod/{standard → 05_standard}/format/file_format.rb +0 -0
  267. data/mod/{standard → 05_standard}/format/js_format.rb +0 -0
  268. data/mod/{standard → 05_standard}/format/json_format.rb +0 -0
  269. data/mod/{standard → 05_standard}/format/rss_format.rb +0 -0
  270. data/mod/{standard → 05_standard}/format/xml_format.rb +0 -0
  271. data/mod/{standard → 05_standard}/set/all/account.rb +0 -0
  272. data/mod/{standard → 05_standard}/set/all/all_css.rb +0 -0
  273. data/mod/{standard → 05_standard}/set/all/all_csv.rb +1 -1
  274. data/mod/05_standard/set/all/all_js.rb +7 -0
  275. data/mod/{standard → 05_standard}/set/all/attach.rb +33 -33
  276. data/mod/{standard → 05_standard}/set/all/base.rb +0 -0
  277. data/mod/{standard → 05_standard}/set/all/comment.rb +0 -0
  278. data/mod/{standard → 05_standard}/set/all/event_viz.rb +0 -0
  279. data/mod/{standard → 05_standard}/set/all/file.rb +0 -0
  280. data/mod/05_standard/set/all/follow.rb +51 -0
  281. data/mod/05_standard/set/all/history.rb +294 -0
  282. data/mod/{standard → 05_standard}/set/all/json.rb +2 -1
  283. data/mod/05_standard/set/all/observer.rb +27 -0
  284. data/mod/{standard → 05_standard}/set/all/rich_html.rb +21 -28
  285. data/mod/{standard → 05_standard}/set/all/rss.rb +0 -0
  286. data/mod/{standard → 05_standard}/set/all/text.rb +0 -0
  287. data/mod/{standard → 05_standard}/set/right/account.rb +53 -7
  288. data/mod/{standard → 05_standard}/set/right/email.rb +0 -1
  289. data/mod/{standard → 05_standard}/set/right/password.rb +1 -1
  290. data/mod/{standard → 05_standard}/set/right/salt.rb +0 -0
  291. data/mod/{standard → 05_standard}/set/right/stats.rb +1 -1
  292. data/mod/{standard → 05_standard}/set/right/status.rb +0 -0
  293. data/mod/{standard → 05_standard}/set/right/token.rb +0 -0
  294. data/mod/{standard → 05_standard}/set/right/when_created.rb +0 -0
  295. data/mod/{standard → 05_standard}/set/right/when_last_edited.rb +0 -0
  296. data/mod/{standard → 05_standard}/set/rstar/rules.rb +8 -7
  297. data/mod/{standard → 05_standard}/set/self/account_links.rb +0 -0
  298. data/mod/{standard → 05_standard}/set/self/alerts.rb +0 -0
  299. data/mod/{standard → 05_standard}/set/self/all.rb +1 -1
  300. data/mod/{standard → 05_standard}/set/self/foot.rb +0 -0
  301. data/mod/{standard → 05_standard}/set/self/head.rb +21 -6
  302. data/mod/{standard → 05_standard}/set/self/navbox.rb +0 -0
  303. data/mod/{standard → 05_standard}/set/self/now.rb +0 -0
  304. data/mod/{standard → 05_standard}/set/self/recent.rb +0 -0
  305. data/mod/{standard → 05_standard}/set/self/search.rb +0 -0
  306. data/mod/{standard → 05_standard}/set/self/signin.rb +1 -1
  307. data/mod/{standard → 05_standard}/set/self/stats.rb +2 -2
  308. data/mod/{standard → 05_standard}/set/self/version.rb +0 -0
  309. data/mod/{standard → 05_standard}/set/type/basic.rb +0 -0
  310. data/mod/{standard → 05_standard}/set/type/cardtype.rb +4 -6
  311. data/mod/{standard → 05_standard}/set/type/date.rb +0 -0
  312. data/mod/{standard → 05_standard}/set/type/file.rb +0 -0
  313. data/mod/{standard → 05_standard}/set/type/html.rb +0 -0
  314. data/mod/{standard → 05_standard}/set/type/image.rb +7 -6
  315. data/mod/{standard → 05_standard}/set/type/layout_type.rb +0 -0
  316. data/mod/{standard → 05_standard}/set/type/number.rb +0 -0
  317. data/mod/{standard → 05_standard}/set/type/phrase.rb +0 -0
  318. data/mod/{standard → 05_standard}/set/type/search_type.rb +6 -3
  319. data/mod/{standard → 05_standard}/set/type/set.rb +16 -9
  320. data/mod/{standard → 05_standard}/set/type/signup.rb +16 -17
  321. data/mod/{standard → 05_standard}/set/type/toggle.rb +0 -0
  322. data/mod/{standard → 05_standard}/set/type/user.rb +10 -11
  323. data/{spec/mod/standard → mod/05_standard/spec}/chunk/include_spec.rb +39 -39
  324. data/mod/05_standard/spec/chunk/link_spec.rb +61 -0
  325. data/{spec/mod/standard → mod/05_standard/spec}/format/css_format_spec.rb +0 -0
  326. data/{spec/mod/standard → mod/05_standard/spec}/format/csv_format_spec.rb +0 -0
  327. data/{spec/mod/standard → mod/05_standard/spec}/format/email_html_format_spec.rb +0 -0
  328. data/{spec/mod/standard → mod/05_standard/spec}/format/file_format_spec.rb +0 -0
  329. data/{spec/mod/standard → mod/05_standard/spec}/format/js_format_spec.rb +0 -0
  330. data/{spec/mod/standard → mod/05_standard/spec}/format/json_format_spec.rb +0 -0
  331. data/{spec/mod/standard → mod/05_standard/spec}/format/rss_format_spec.rb +0 -0
  332. data/{spec/mod/standard → mod/05_standard/spec}/format/xml_format_spec.rb +0 -0
  333. data/{spec/mod/standard → mod/05_standard/spec}/set/all/account_spec.rb +16 -16
  334. data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_css_spec.rb +1 -1
  335. data/{spec/mod/standard → mod/05_standard/spec}/set/all/all_csv_spec.rb +1 -1
  336. data/{spec/mod/standard → mod/05_standard/spec}/set/all/attach_spec.rb +1 -1
  337. data/{spec/mod/standard → mod/05_standard/spec}/set/all/base_spec.rb +10 -10
  338. data/{spec/mod/standard → mod/05_standard/spec}/set/all/comment_spec.rb +0 -0
  339. data/mod/05_standard/spec/set/all/email_html_spec.rb +15 -0
  340. data/{spec/mod/standard → mod/05_standard/spec}/set/all/event_viz_spec.rb +1 -1
  341. data/{spec/mod/standard → mod/05_standard/spec}/set/all/file_spec.rb +0 -0
  342. data/mod/05_standard/spec/set/all/follow_spec.rb +83 -0
  343. data/mod/05_standard/spec/set/all/history_spec.rb +161 -0
  344. data/{spec/mod/standard → mod/05_standard/spec}/set/all/json_spec.rb +4 -4
  345. data/mod/05_standard/spec/set/all/observer_spec.rb +74 -0
  346. data/{spec/mod/standard → mod/05_standard/spec}/set/all/rich_html_spec.rb +14 -14
  347. data/{spec/mod/standard → mod/05_standard/spec}/set/all/rss_spec.rb +1 -1
  348. data/{spec/mod/standard → mod/05_standard/spec}/set/all/text_spec.rb +0 -0
  349. data/mod/05_standard/spec/set/right/account_spec.rb +162 -0
  350. data/{spec/mod/standard → mod/05_standard/spec}/set/right/email_spec.rb +7 -7
  351. data/{spec/mod/standard → mod/05_standard/spec}/set/right/password_spec.rb +7 -7
  352. data/{spec/mod/standard → mod/05_standard/spec}/set/right/salt_spec.rb +0 -0
  353. data/{spec/mod/standard → mod/05_standard/spec}/set/right/stats_spec.rb +0 -0
  354. data/{spec/mod/standard → mod/05_standard/spec}/set/right/status_spec.rb +0 -0
  355. data/{spec/mod/standard → mod/05_standard/spec}/set/right/token_spec.rb +0 -0
  356. data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_created_spec.rb +1 -1
  357. data/{spec/mod/standard → mod/05_standard/spec}/set/right/when_last_edited_spec.rb +1 -1
  358. data/{spec/mod/standard → mod/05_standard/spec}/set/rstar/rules_spec.rb +4 -4
  359. data/{spec/mod/standard → mod/05_standard/spec}/set/self/account_links_spec.rb +0 -0
  360. data/{spec/mod/standard → mod/05_standard/spec}/set/self/alerts_spec.rb +0 -0
  361. data/{spec/mod/standard → mod/05_standard/spec}/set/self/all_spec.rb +7 -6
  362. data/{spec/mod/standard → mod/05_standard/spec}/set/self/foot_spec.rb +0 -0
  363. data/{spec/mod/standard → mod/05_standard/spec}/set/self/head_spec.rb +0 -0
  364. data/{spec/mod/standard → mod/05_standard/spec}/set/self/navbox_spec.rb +0 -0
  365. data/{spec/mod/standard → mod/05_standard/spec}/set/self/now_spec.rb +1 -1
  366. data/{spec/mod/standard → mod/05_standard/spec}/set/self/recent_spec.rb +0 -0
  367. data/{spec/mod/standard → mod/05_standard/spec}/set/self/search_spec.rb +0 -0
  368. data/{spec/mod/standard → mod/05_standard/spec}/set/self/signin_spec.rb +12 -12
  369. data/{spec/mod/standard → mod/05_standard/spec}/set/self/stats_spec.rb +0 -0
  370. data/{spec/mod/standard → mod/05_standard/spec}/set/self/version_spec.rb +1 -1
  371. data/{spec/mod/standard → mod/05_standard/spec}/set/type/basic_spec.rb +0 -0
  372. data/{spec/mod/standard → mod/05_standard/spec}/set/type/cardtype_spec.rb +0 -0
  373. data/{spec/mod/standard → mod/05_standard/spec}/set/type/date_spec.rb +0 -0
  374. data/mod/05_standard/spec/set/type/email_template_spec.rb +130 -0
  375. data/{spec/mod/standard → mod/05_standard/spec}/set/type/file_spec.rb +0 -0
  376. data/{spec/mod/standard → mod/05_standard/spec}/set/type/html_spec.rb +3 -3
  377. data/{spec/mod/standard → mod/05_standard/spec}/set/type/image_spec.rb +1 -1
  378. data/{spec/mod/standard → mod/05_standard/spec}/set/type/layout_type_spec.rb +1 -1
  379. data/{spec/mod/standard → mod/05_standard/spec}/set/type/number_spec.rb +0 -0
  380. data/{spec/mod/standard → mod/05_standard/spec}/set/type/phrase_spec.rb +0 -0
  381. data/mod/05_standard/spec/set/type/search_type_spec.rb +27 -0
  382. data/mod/05_standard/spec/set/type/set_spec.rb +26 -0
  383. data/mod/05_standard/spec/set/type/signup_spec.rb +209 -0
  384. data/{spec/mod/standard → mod/05_standard/spec}/set/type/toggle_spec.rb +2 -2
  385. data/{spec/mod/standard → mod/05_standard/spec}/set/type/user_spec.rb +0 -0
  386. data/mod/{standard → 06_email}/format/email_html_format.rb +0 -0
  387. data/mod/06_email/format/email_text_format.rb +7 -0
  388. data/mod/06_email/set/all/email_html.rb +9 -0
  389. data/mod/{standard/set/all/email_html.rb → 06_email/set/all/email_text.rb} +2 -1
  390. data/mod/06_email/set/right/bcc.rb +31 -0
  391. data/mod/06_email/set/right/cc.rb +2 -0
  392. data/mod/06_email/set/right/from.rb +2 -0
  393. data/mod/06_email/set/right/html_message.rb +3 -0
  394. data/mod/06_email/set/right/to.rb +2 -0
  395. data/mod/06_email/set/type/email_template.rb +99 -0
  396. data/spec/controllers/card_controller_spec.rb +34 -46
  397. data/spec/lib/card/action_spec.rb +14 -0
  398. data/spec/lib/card/chunk_spec.rb +3 -3
  399. data/spec/lib/card/codename_spec.rb +5 -5
  400. data/spec/lib/card/content_spec.rb +25 -25
  401. data/spec/lib/card/diff_spec.rb +107 -107
  402. data/spec/lib/card/format_spec.rb +11 -11
  403. data/spec/lib/card/loader_spec.rb +35 -29
  404. data/spec/lib/card/name_spec.rb +82 -82
  405. data/spec/lib/card/query_spec.rb +83 -82
  406. data/spec/lib/card/reference_spec.rb +30 -30
  407. data/spec/lib/card/set_pattern_spec.rb +1 -1
  408. data/spec/lib/card/set_spec.rb +86 -82
  409. data/spec/lib/wagn/cache_spec.rb +24 -24
  410. data/spec/mailers/mailer_spec.rb +41 -30
  411. data/spec/models/card/cardtype_spec.rb +19 -19
  412. data/spec/models/card/create_spec.rb +14 -14
  413. data/spec/models/card/trash_spec.rb +37 -36
  414. data/spec/models/card/type_transition_spec.rb +13 -13
  415. data/spec/models/card/validation_spec.rb +6 -6
  416. data/spec/models/card_spec.rb +40 -39
  417. data/spec/spec_helper.rb +37 -11
  418. data/test/fixtures/card_actions.yml +4726 -0
  419. data/test/fixtures/card_acts.yml +589 -0
  420. data/test/fixtures/card_changes.yml +12644 -0
  421. data/test/fixtures/card_references.yml +976 -591
  422. data/test/fixtures/cards.yml +4544 -2781
  423. data/test/seed.rb +14 -13
  424. data/wagn.gemspec +4 -0
  425. metadata +404 -403
  426. data/db/bootstrap/card_revisions.yml +0 -3379
  427. data/lib/card/flexmail.rb +0 -53
  428. data/lib/card/mailer/change_notice.html.erb +0 -32
  429. data/lib/card/mailer/confirmation_email.html.erb +0 -12
  430. data/lib/card/mailer/flexmail.html.erb +0 -6
  431. data/lib/card/mailer/password_reset.html.erb +0 -9
  432. data/lib/card/mailer/signup_alert.html.erb +0 -14
  433. data/lib/card/revision.rb +0 -47
  434. data/lib/wagn/migration_helper.rb +0 -34
  435. data/mod/core/set/all/attribute_tracking.rb +0 -85
  436. data/mod/core/set/all/content.rb +0 -94
  437. data/mod/standard/set/all/flexmail.rb +0 -3
  438. data/mod/standard/set/all/follow.rb +0 -119
  439. data/mod/standard/set/all/history.rb +0 -107
  440. data/mod/standard/set/right/add_help.rb +0 -3
  441. data/mod/standard/set/right/default.rb +0 -3
  442. data/mod/standard/set/right/help.rb +0 -3
  443. data/spec/lib/card/flexmail_spec.rb +0 -209
  444. data/spec/lib/card/revision_spec.rb +0 -30
  445. data/spec/mod/core/chunk/literal_spec.rb +0 -14
  446. data/spec/mod/core/set/all/attribute_tracking_spec.rb +0 -21
  447. data/spec/mod/core/set/all/collection_spec.rb +0 -45
  448. data/spec/mod/core/set/all/content_spec.rb +0 -14
  449. data/spec/mod/core/set/all/rules_spec.rb +0 -98
  450. data/spec/mod/standard/chunk/link_spec.rb +0 -59
  451. data/spec/mod/standard/set/all/email_html_spec.rb +0 -13
  452. data/spec/mod/standard/set/all/flexmail_spec.rb +0 -5
  453. data/spec/mod/standard/set/all/follow_spec.rb +0 -95
  454. data/spec/mod/standard/set/all/history_spec.rb +0 -10
  455. data/spec/mod/standard/set/right/account_spec.rb +0 -90
  456. data/spec/mod/standard/set/type/search_type_spec.rb +0 -27
  457. data/spec/mod/standard/set/type/set_spec.rb +0 -26
  458. data/spec/mod/standard/set/type/signup_spec.rb +0 -169
  459. data/test/fixtures/card_revisions.yml +0 -4560
@@ -9,18 +9,18 @@ describe Card::Set::Right::Comment do
9
9
  end
10
10
 
11
11
  it "should have appender immediately" do
12
- Card['a'].ok?(:comment).should_not be_true
12
+ expect(Card['a'].ok?(:comment)).not_to be_truthy
13
13
  Card::Auth.as_bot do
14
14
  @rule.save!
15
15
  end
16
- Card['a'].ok?(:comment).should be_true
16
+ expect(Card['a'].ok?(:comment)).to be_truthy
17
17
  end
18
18
 
19
19
  it "should have appender immediately" do
20
20
  Card::Auth.as_bot do
21
- Card['a'].ok?(:comment).should_not be_true
21
+ expect(Card['a'].ok?(:comment)).not_to be_truthy
22
22
  @rule.save!
23
- Card['a'].ok?(:comment).should be_true
23
+ expect(Card['a'].ok?(:comment)).to be_truthy
24
24
  end
25
25
  end
26
26
  end
@@ -34,7 +34,7 @@ describe Card::Set::Right::Comment do
34
34
  @c.comment = " and more\n \nsome lines\n\n"
35
35
  @c.save!
36
36
  end
37
- Card["basicname"].content.should =~ /\<p\>some lines\<\/p\>/
37
+ expect(Card["basicname"].content).to match(/\<p\>some lines\<\/p\>/)
38
38
  end
39
39
  end
40
40
 
@@ -3,13 +3,15 @@
3
3
  describe Card::Set::Right::Structure do
4
4
  it "closed_content is rendered as type + raw" do
5
5
  template = Card.new(:name=>'A+*right+*structure', :content=>'[[link]] {{inclusion}}')
6
- template.format._render(:closed_content).should ==
6
+ expect(template.format._render(:closed_content)).to eq(
7
7
  '<a href="/Basic" class="cardtype">Basic</a> : [[link]] {{inclusion}}'
8
+ )
8
9
  end
9
10
 
10
11
  it "closed_content is rendered as type + raw" do
11
12
  template = Card.new(:name=>'A+*right+*structure', :type=>'Html', :content=>'[[link]] {{inclusion}}')
12
- template.format._render(:closed_content).should ==
13
+ expect(template.format._render(:closed_content)).to eq(
13
14
  '<a href="/HTML" class="cardtype">HTML</a> : [[link]] {{inclusion}}'
15
+ )
14
16
  end
15
17
  end
@@ -1,6 +1,6 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
 
3
- require File.expand_path('../../../lib/machine_spec.rb', __FILE__)
3
+ require File.expand_path('../../../../../03_machines/spec/lib/machine_spec.rb', __FILE__)
4
4
 
5
5
  describe Card::Set::Right::Style do
6
6
  # describe "#delet"
@@ -28,7 +28,7 @@ format :csv do
28
28
  begin
29
29
  card1 = search_vars[:results].first
30
30
 
31
- parsed_content = Card::Content.new card1.content, self
31
+ parsed_content = Card::Content.new card1.raw_content, self
32
32
  unless String === parsed_content.__getobj__
33
33
  titles = parsed_content.map do |chunk|
34
34
  next if chunk.class != Card::Chunk::Include
@@ -0,0 +1,7 @@
1
+
2
+ format :js do
3
+ view :include_tag do |args|
4
+ %{\n#{javascript_include_tag page_path(card.name) }\n }
5
+ end
6
+
7
+ end
@@ -1,23 +1,18 @@
1
-
2
- def attach_array(rev_id=nil)
3
- c=if rev_id || self.new_card? || selected_revision_id==current_revision_id
4
- self.content
5
- else
6
- Card::Revision.find_by_id(selected_revision_id).content
7
- end
1
+ def attach_array
2
+
3
+ c= self.content
8
4
  !c || c =~ /^\s*<img / ? ['','',''] : c.split(/\n/)
9
5
  end
10
6
 
7
+ #ask ethan
11
8
  def attach_array_set i, v
12
- rev_id = ( cr = current_revision and cr.id )
13
- c = attach_array rev_id
14
- c = c[0..2] # make sure there is no mod set for uploaded files
15
-
9
+ c = attach_array[0..2] # make sure there is no mod set for uploaded files
16
10
  if c[i] != v
17
11
  c[i] = v
18
12
  self.content = c*"\n"
19
13
  end
20
14
  end
15
+
21
16
  def attach_file_name() attach_array[0] end
22
17
  def attach_content_type() attach_array[1] end
23
18
  def attach_file_size() attach_array[2] end
@@ -40,13 +35,17 @@ STYLES = %w{ icon small medium large original }
40
35
 
41
36
 
42
37
  def attachment_format(ext)
43
- return nil unless ext.present? && attach
44
- return nil unless original_ext = attach_extension
45
- return original_ext if ['file', original_ext].member? ext
46
- exts = MIME::Types[attach.content_type]
47
- return nil unless exts
48
- return ext if exts.find {|mt| mt.extensions.member? ext }
49
- return exts[0].extensions[0]
38
+ if ext.present? and attach and original_ext=attach_extension
39
+ if['file', original_ext].member? ext
40
+ original_ext
41
+ elsif exts = MIME::Types[attach.content_type]
42
+ if exts.find {|mt| mt.extensions.member? ext }
43
+ ext
44
+ else
45
+ exts[0].extensions[0]
46
+ end
47
+ end
48
+ end
50
49
  rescue => e
51
50
  Rails.logger.info "attachment_format issue: #{e.message}"
52
51
  nil
@@ -55,31 +54,30 @@ end
55
54
  # FIXME: test extension matches content type
56
55
 
57
56
 
58
-
59
- def attachment_link(rev_id) # create filesystem links to previous revision
57
+ def attachment_symlink_to(previous_action_id) # create filesystem links to files from previous action
60
58
  if styles = case type_code
61
- when 'File'; ['']
62
- when 'Image'; STYLES
59
+ when :file; ['']
60
+ when :image; STYLES
63
61
  end
64
- save_rev_id = selected_revision_id
62
+ save_action_id = selected_action_id
65
63
  links = {}
66
64
 
67
- self.selected_revision_id = rev_id
65
+ self.selected_action_id = previous_action_id
68
66
  styles.each { |style| links[style] = attach.path(style) }
69
67
 
70
- self.selected_revision_id = current_revision_id
71
- styles.each { |style| File.link links[style], attach.path(style) }
68
+ self.selected_action_id = last_action_id
69
+ styles.each { |style| ::File.symlink links[style], attach.path(style) }
72
70
 
73
- self.selected_revision_id = save_rev_id
71
+ self.selected_action_id = save_action_id
74
72
  end
75
73
  end
76
74
 
77
75
  def before_post_attach
78
76
  # Rails.logger.info "bpa called for #{name}"
77
+
79
78
  at=self.attach
80
79
  at.instance_write :file_name, at.original_filename
81
-
82
- Card::ImageID == (type_id || Card.fetch_id( @type_args[:type] ) )
80
+ Card::ImageID == (type_id || Card.fetch_id( @type_args[:type] || @type_args[:type_code]) )
83
81
  # returning true enables thumnail creation
84
82
  end
85
83
 
@@ -88,8 +86,8 @@ def self.included(base)
88
86
  base.class_eval do
89
87
  has_attached_file :attach, :preserve_files=>true,
90
88
  :default_url => "missing",
91
- :url => ":file_path/:basename-:size:revision_id.:extension",
92
- :path => ":local/:card_id/:size:revision_id.:extension",
89
+ :url => ":file_path/:basename-:size:action_id.:extension",
90
+ :path => ":local/:card_id/:size:action_id.:extension",
93
91
  :styles => { :icon => '16x16#', :small => '75x75',
94
92
  :medium => '200x200>', :large => '500x500>' }
95
93
 
@@ -97,7 +95,7 @@ def self.included(base)
97
95
 
98
96
  validates_each :attach do |rec, attr, value|
99
97
  if [Card::FileID, Card::ImageID].member? rec.type_id
100
- max_size = (max = Card['*upload max']) ? max.content.to_i : 5
98
+ max_size = (max = Card['*upload max']) ? max.db_content.to_i : 5
101
99
  if value.size.to_i > max_size.megabytes
102
100
  rec.errors.add :file_size, "File cannot be larger than #{max_size} megabytes"
103
101
  end
@@ -137,6 +135,8 @@ module Paperclip::Interpolations
137
135
  at.instance.type_id==Card::FileID || style_name.blank? ? '' : "#{style_name}-"
138
136
  end
139
137
 
140
- def revision_id(at, style_name) at.instance.selected_revision_id end
138
+ def action_id(at, style_name)
139
+ at.instance.selected_content_action_id
140
+ end
141
141
  end
142
142
 
@@ -0,0 +1,51 @@
1
+ def toggle_subscription_for watcher
2
+ following = watcher.fetch :trait=>:following, :new=>{:type=>:pointer}
3
+ if following.items.include? card
4
+ following.drop_item card.name
5
+ else
6
+ following.add_item card.name
7
+ end
8
+ following.save
9
+ end
10
+
11
+
12
+ format :html do
13
+ watch_perms = lambda { |r| Auth.signed_in? && !r.card.new_card? }
14
+
15
+ view :watch, :tags=>[:unknown_ok, :no_wrap_comments], :denial=>:blank, :perms=>:none do |args|
16
+ wrap args do
17
+ link_args = if card.watched?
18
+ [card,"following", :off, "stop sending emails about changes to #{card.name}", { :hover_content=> 'unfollow' } ]
19
+ elsif card.type_watched?
20
+ [card.type_card, "(following)", :off, "stop sending emails about changes to #{card.type_name} cards", { :hover_content=> 'unfollow' } ]
21
+ else
22
+ [card,"follow", :on, "send emails about changes to #{card.name}" ]
23
+ end
24
+ watch_link *link_args
25
+ end
26
+ end
27
+
28
+ def watch_link watched_card, text, toggle, title, extra={}
29
+ return '' unless watched_card
30
+
31
+ following = Auth.current.fetch :trait=>:following, :new=>{:type=>:pointer}
32
+ path_hash = {:card=>following, :action=>:update, :toggle=>toggle,
33
+ :success=>{:id=>card.name, :view=>:watch} }
34
+ case toggle
35
+ when :off then path_hash[:drop_item] = watched_card.cardname.url_key
36
+ when :on then path_hash[:add_item] = watched_card.cardname.url_key
37
+ end
38
+
39
+ link_to "#{text}", path(path_hash),
40
+ {:class=>"watch-toggle watch-toggle-#{toggle} slotter", :title=>title, :remote=>true, :method=>'post'}.merge(extra)
41
+ end
42
+
43
+ end
44
+
45
+
46
+
47
+ def type_watched?; Auth.current.fetch(:trait=>:following, :new=>{}).include_item? type_card.cardname.url_key end
48
+ def watched?; Auth.current.fetch(:trait=>:following, :new=>{}).include_item? cardname.url_key end
49
+
50
+
51
+
@@ -0,0 +1,294 @@
1
+ REVISIONS_PER_PAGE = Wagn.config.revisions_per_page
2
+
3
+ # must be called on all actions and before :set_name, :process_subcards and :validate_delete_children
4
+ def create_act_and_action
5
+ @current_act = if @supercard
6
+ @supercard.current_act || @supercard.acts.build(:ip_address=>Env.ip)
7
+ else
8
+ acts.build(:ip_address=>Env.ip)
9
+ end
10
+
11
+ @current_action = actions.build(:action_type=>@action, :draft=>(Env.params['draft'] == 'true') )
12
+ @current_action.act = @current_act
13
+
14
+ # @current_act = (@supercard ? @supercard.current_act : Card::Act.new(:ip_address=>Env.ip))
15
+ # if !@supercard
16
+ # @current_act.card = self
17
+ # end
18
+ # @current_action = @current_act.actions.build(:action_type=>@action, :draft=>(Env.params['draft'] == 'true') )
19
+ # @current_action.card = self
20
+
21
+ if (@supercard and @supercard !=self)
22
+ @current_action.super_action = @supercard.current_action
23
+ end
24
+ end
25
+
26
+
27
+
28
+ event(:create_act_and_action_for_save, :before=>:process_subcards, :on=>:save) { create_act_and_action }
29
+ event(:create_act_and_action_for_delete, :before =>:validate_delete_children, :on=>:delete) { create_act_and_action }
30
+
31
+
32
+ event :remove_empty_act, :after=>:extend do
33
+ # if not @supercard and not @current_act.actions.empty?
34
+ # @current_act.save
35
+ # end
36
+ @current_act.reload
37
+ if not @supercard and @current_act.actions.empty?
38
+ @current_act.delete
39
+ @current_act = nil
40
+ end
41
+ end
42
+
43
+
44
+
45
+ event :rollback_actions, :before=>:approve, :on=>:update, :when=>proc{ |c| Env and Env.params['action_ids'] and Env.params['action_ids'].class == Array} do
46
+ revision = { :subcards => {}}
47
+ rollback_actions = Env.params['action_ids'].map do |a_id|
48
+ Action.fetch(a_id) || nil
49
+ end
50
+ rollback_actions.each do |action|
51
+ if action.card_id == id
52
+ revision.merge!(revision(action))
53
+ else
54
+ revision[:subcards].merge!(revision(action))
55
+ end
56
+ end
57
+
58
+ Env.params['action_ids'] = nil
59
+ update_attributes! revision
60
+ rollback_actions.each do |action|
61
+ action.card.attachment_symlink_to action.id
62
+ end
63
+ clear_drafts
64
+ abort :success
65
+ end
66
+
67
+
68
+
69
+
70
+
71
+ def intrusive_family_acts args={} # all acts with actions on self and on cards that are descendants of self and included in self
72
+ @intrusive_family_acts ||= begin
73
+ Act.find_all_with_actions_on( (included_descendant_card_ids << id), args)
74
+ end
75
+ end
76
+
77
+ def intrusive_acts args={:with_drafts=>true} # all acts with actions on self and on cards included in self
78
+ @intrusive_acts ||= begin
79
+ Act.find_all_with_actions_on( (included_card_ids << id), args)
80
+ end
81
+ end
82
+
83
+ def current_rev_nr
84
+ @current_rev_nr ||= begin
85
+ @intrusive_acts.first.actions.last.draft ? @intrusive_acts.size - 1 : @intrusive_acts.size
86
+ end
87
+ end
88
+
89
+ def included_card_ids
90
+ Card::Reference.select(:referee_id).where( :ref_type => 'I', :referer_id=>id ).pluck('referee_id').compact.uniq
91
+ end
92
+
93
+ def descendant_card_ids parent_ids=[id]
94
+ more_ids = Card.where('left_id IN (?)', parent_ids).pluck('id')
95
+
96
+ if !more_ids.empty?
97
+ more_ids += descendant_card_ids more_ids
98
+ end
99
+ more_ids
100
+ end
101
+
102
+ def included_descendant_card_ids
103
+ included_card_ids & descendant_card_ids
104
+ end
105
+
106
+ format :html do
107
+ view :history do |args|
108
+ frame args.merge(:body_class=>"history-slot", :content=>true, :subheader=>_render_revision_subheader ) do
109
+ _render_revisions
110
+ end
111
+ end
112
+
113
+ view :revisions do |args|
114
+ page = params['page'] || 1
115
+ count = card.intrusive_acts.size+1-(page.to_i-1)*REVISIONS_PER_PAGE
116
+ card.intrusive_acts.page(page).per(REVISIONS_PER_PAGE).map do |act|
117
+ count -= 1
118
+ render_act_summary args.merge(:act=>act,:rev_nr=>count)
119
+ end.join
120
+ end
121
+
122
+ view :revision_subheader do |args|
123
+ intr = card.intrusive_acts.page(params['page']).per(REVISIONS_PER_PAGE)
124
+ render_haml :intr=>intr do
125
+ %{
126
+ .history-header
127
+ %span.slotter
128
+ = paginate intr, :remote=>true
129
+ %span.history-legend{:style=>"text-align:right;"}
130
+ %i.fa.fa-circle.diff-green
131
+ %span
132
+ = Card::Diff.render_added_chunk("Added")
133
+ |
134
+ %i.fa.fa-circle.diff-red
135
+ %span
136
+ = Card::Diff.render_deleted_chunk("Deleted")
137
+ }
138
+ end
139
+ end
140
+
141
+ view :act_summary do |args|
142
+ render_act :summary, args
143
+ end
144
+
145
+ view :act_expanded do |args|
146
+ render_act :expanded, args
147
+ end
148
+
149
+ def render_act act_view, args
150
+ act = (params['act_id'] and Card::Act.find(params['act_id'])) || args[:act]
151
+ rev_nr = params['rev_nr'] || args[:rev_nr]
152
+ current_rev_nr = params['current_rev_nr'] || args[:current_rev_nr] || card.current_rev_nr
153
+ hide_diff = (params["hide_diff"]=="true") || args[:hide_diff]
154
+ wrap( args.merge(:slot_class=>"revision-#{act.id} history-slot") ) do
155
+ render_haml :card=>card, :act=>act, :act_view=>act_view,
156
+ :current_rev_nr=>current_rev_nr, :rev_nr=>rev_nr,
157
+ :hide_diff=> hide_diff do
158
+ %{
159
+ .act{:style=>"clear:both;"}
160
+ .head
161
+ .nr
162
+ = "##{rev_nr}"
163
+ .title
164
+ .actor
165
+ = link_to act.actor.name, wagn_url( act.actor )
166
+ .time.timeago
167
+ = time_ago_in_words(act.acted_at)
168
+ ago
169
+ - if act.actions.last.draft
170
+ |
171
+ %em.info
172
+ Autosave
173
+ - if current_rev_nr == rev_nr
174
+ |
175
+ %em.info
176
+ Current
177
+ - elsif act_view == :expanded
178
+ = rollback_link act.relevant_actions_for(card, act.actions.last.draft)
179
+ = show_or_hide_changes_link hide_diff, :act_id=>act.id, :act_view=>act_view, :rev_nr=>rev_nr, :current_rev_nr=>current_rev_nr
180
+ .toggle
181
+ = fold_or_unfold_link :act_id=>act.id, :act_view=>act_view, :rev_nr=>rev_nr, :current_rev_nr=>current_rev_nr
182
+
183
+ .action-container{:style=>("clear: left;" if act_view == :expanded)}
184
+ - act.relevant_actions_for(card).each do |action|
185
+ = send("_render_action_#{ act_view }", :action=>action )
186
+ }
187
+ end
188
+ end
189
+ end
190
+
191
+ view :action_summary do |args|
192
+ render_action :summary, args
193
+ end
194
+
195
+ view :action_expanded do |args|
196
+ render_action :expanded, args
197
+ end
198
+
199
+ def render_action action_view, args
200
+ action = args[:action] || card.last_action
201
+ render_haml :action => action,
202
+ :action_view=>action_view,
203
+ :hide_diff=>Env.params["hide_diff"]=="true" || args[:hide_diff] do
204
+ %{
205
+ .action
206
+ .summary
207
+ %span.ampel
208
+ %i.fa.fa-circle{:class=>(action.red? ? 'diff-red' : 'diff-invisible')}
209
+ %i.fa.fa-circle{:class=>(action.green? ? 'diff-green' : 'diff-invisible')}
210
+ -if action.card == card
211
+ = wrap_diff :name do
212
+ - name_changes(action, hide_diff)
213
+ -else
214
+ = link_to path(:view=>:related, :related=>{:view=>"history",:name=>action.card.name}), :class=>'slotter name-diff',
215
+ :slotSelector=>".card-slot.card-frame", :remote=>true do
216
+ - name_changes(action, hide_diff)
217
+ -if action.new_type?
218
+ = wrap_diff :type do
219
+ - type_changes action, hide_diff
220
+ -if action.new_content?
221
+ %i.fa.fa-arrow-right.arrow
222
+ -if action_view == :summary
223
+ = wrap_diff :content do
224
+ - action.card.format.render_content_changes :action=>action, :diff_type=>action_view, :hide_diff=>hide_diff
225
+ -if action.new_content? and action_view == :expanded
226
+ .expanded
227
+ = wrap_diff :content do
228
+ - action.card.format.render_content_changes :action=>action, :diff_type=>action_view, :hide_diff=>hide_diff
229
+ }
230
+ end
231
+ end
232
+
233
+ def wrap_diff field, &block
234
+ content = block.call
235
+ if content.present?
236
+ %{
237
+ <span class="#{field}-diff">
238
+ #{content}
239
+ </span>
240
+ }
241
+ end
242
+ end
243
+
244
+ def name_changes action, hide_diff=false
245
+ old_name = (name = action.old_values[:name] and showname(name).to_s)
246
+ if action.new_name?
247
+ new_name = showname(action.new_values[:name]).to_s
248
+ if hide_diff
249
+ new_name
250
+ else
251
+ Card::Diff::DiffBuilder.new(old_name,new_name).complete
252
+ end
253
+ else
254
+ old_name
255
+ end
256
+ end
257
+
258
+ def type_changes action, hide_diff=false
259
+ change = hide_diff ? action.new_values[:cardtype] : action.cardtype_diff
260
+ "(#{change})"
261
+ end
262
+
263
+ view :content_changes do |args|
264
+ if args[:hide_diff]
265
+ args[:action].new_values[:content]
266
+ else
267
+ args[:action].content_diff(args[:diff_type])
268
+ end
269
+ end
270
+
271
+ def rollback_link action_ids
272
+ if card.ok?(:update)
273
+ "| " + link_to('Save as current', path(:action=>:update, :view=>:open, :action_ids=>action_ids,),
274
+ :class=>'slotter',:slotSelector=>'.card-slot.card-frame', :remote=>true, :method=>:post, :rel=>'nofollow')
275
+ end
276
+ end
277
+
278
+ def fold_or_unfold_link args
279
+ if (args[:act_view] == :expanded)
280
+ toggled_view = :act_summary
281
+ else
282
+ toggled_view = :act_expanded
283
+ end
284
+ link_to '', path(args.merge(:view=>toggled_view)),
285
+ :class=>"slotter revision-#{args[:act_id]} #{ args[:act_view]==:expanded ? "arrow-down" : "arrow-right"}",
286
+ :remote=>true
287
+ end
288
+
289
+ def show_or_hide_changes_link hide_diff, args
290
+ "| " + link_to_view( (hide_diff ? "Show" : "Hide") + " changes", :act_expanded,
291
+ :path_opts=>args.merge(:hide_diff=>!hide_diff),
292
+ :class=>'slotter', :remote=>true )
293
+ end
294
+ end