spontaneous 0.1.0.alpha1 → 0.2.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (413) hide show
  1. data/Gemfile +40 -35
  2. data/LICENSE +20 -0
  3. data/Rakefile +39 -42
  4. data/Readme.markdown +155 -0
  5. data/application/css/definitions.scss +3 -0
  6. data/application/css/editing.scss +9 -4
  7. data/application/css/min/565d4c25e82148acb01c45c8d675b37a08676d77.css +1 -0
  8. data/application/css/min/84dbe894ea96eafd321c30823d630817bfc4b03b.css +1 -0
  9. data/application/css/min/d1b54ff4847c613618267ca1c15658e2aee0a4e5.css +1 -0
  10. data/application/css/v2.scss +144 -50
  11. data/application/js/add_alias_dialogue.js +18 -8
  12. data/application/js/ajax.js +1 -1
  13. data/application/js/authentication.js +8 -1
  14. data/application/js/box.js +37 -7
  15. data/application/js/box_container.js +1 -1
  16. data/application/js/compatibility.js +7 -0
  17. data/application/js/content.js +7 -0
  18. data/application/js/content_area.js +4 -0
  19. data/application/js/edit_panel.js +44 -18
  20. data/application/js/editing.js +12 -0
  21. data/application/js/event_source.js +17 -0
  22. data/application/js/extensions.js +2 -0
  23. data/application/js/field_types/file_field.js +2 -1
  24. data/application/js/field_types/image_field.js +35 -48
  25. data/application/js/field_types/long_string_field.js +12 -0
  26. data/application/js/field_types/markdown_field.js +2 -5
  27. data/application/js/field_types/string_field.js +5 -1
  28. data/application/js/field_types/webvideo_field.js +15 -0
  29. data/application/js/init.js +1 -0
  30. data/application/js/location.js +30 -19
  31. data/application/js/login.js +1 -2
  32. data/application/js/min/2a0c2962537a3181fedfff5c92596ba6d3122dc9.js +3 -0
  33. data/application/js/min/4cf1c493d3379ecba5287758c61238034c0893f9.js +2 -0
  34. data/application/js/min/78ac6b99d96750bb6b9f9aad4cb9cd91cd03f391.js +3 -0
  35. data/application/js/min/c8efb9b9f7c3f6613fcebc6be60f605b6570a382.js +90 -0
  36. data/application/js/page.js +1 -0
  37. data/application/js/page_entry.js +6 -40
  38. data/application/js/preview.js +2 -3
  39. data/application/js/top_bar.js +76 -31
  40. data/application/js/upload.js +5 -2
  41. data/application/js/upload_manager.js +2 -81
  42. data/application/js/vendor/jquery-1.7.1.min.js +4 -0
  43. data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +791 -0
  44. data/application/js/views.js +3 -3
  45. data/application/js/views/box_view.js +164 -83
  46. data/application/js/views/page_piece_view.js +2 -2
  47. data/application/js/views/page_view.js +46 -15
  48. data/application/js/views/piece_view.js +29 -8
  49. data/application/static/diagonal-texture.png +0 -0
  50. data/application/static/item-buttons-highlight.png +0 -0
  51. data/application/static/plus-box.png +0 -0
  52. data/application/static/plus_alt.svg +8 -0
  53. data/application/static/slot-up-arrow.png +0 -0
  54. data/application/views/{index.erubis → index.erb} +9 -5
  55. data/application/views/{login.erubis → login.erb} +14 -10
  56. data/application/views/schema_modification_error.html.erb +18 -6
  57. data/application/views/{unsupported.erubis → unsupported.erb} +0 -0
  58. data/bin/spot +15 -2
  59. data/db/migrations/20100610142136_init.rb +2 -2
  60. data/db/migrations/20101130104334_timestamps.rb +2 -2
  61. data/db/migrations/20110209152710_users_and_groups.rb +11 -11
  62. data/db/migrations/20120106171423_visibility_path.rb +19 -0
  63. data/db/migrations/20120107124541_owner_id.rb +19 -0
  64. data/docs/recipe-interface-screenshot.png +0 -0
  65. data/lib/cutaneous.rb +11 -10
  66. data/lib/cutaneous/context_helper.rb +119 -14
  67. data/lib/cutaneous/preview_context.rb +4 -3
  68. data/lib/cutaneous/preview_renderer.rb +1 -6
  69. data/lib/cutaneous/publish_context.rb +1 -0
  70. data/lib/cutaneous/{first_pass_renderer.rb → publish_renderer.rb} +2 -6
  71. data/lib/cutaneous/publish_template.rb +62 -0
  72. data/lib/cutaneous/publish_token_parser.rb +8 -0
  73. data/lib/cutaneous/renderer.rb +4 -2
  74. data/lib/cutaneous/request_context.rb +1 -0
  75. data/lib/cutaneous/{second_pass_renderer.rb → request_renderer.rb} +2 -5
  76. data/lib/cutaneous/request_template.rb +11 -0
  77. data/lib/cutaneous/request_token_parser.rb +9 -0
  78. data/lib/cutaneous/token_parser.rb +125 -0
  79. data/lib/sequel/plugins/content_table_inheritance.rb +19 -12
  80. data/lib/sequel/plugins/scoped_table_name.rb +45 -0
  81. data/lib/spontaneous.rb +123 -126
  82. data/lib/spontaneous/box.rb +127 -47
  83. data/lib/spontaneous/box_style.rb +39 -22
  84. data/lib/spontaneous/change.rb +2 -2
  85. data/lib/spontaneous/cli.rb +1 -0
  86. data/lib/spontaneous/cli/base.rb +12 -4
  87. data/lib/spontaneous/cli/console.rb +72 -0
  88. data/lib/spontaneous/cli/server.rb +36 -12
  89. data/lib/spontaneous/cli/site.rb +175 -1
  90. data/lib/spontaneous/collections/box_set.rb +19 -1
  91. data/lib/spontaneous/collections/entry_set.rb +70 -22
  92. data/lib/spontaneous/collections/field_set.rb +3 -3
  93. data/lib/spontaneous/collections/prototype_set.rb +28 -0
  94. data/lib/spontaneous/config.rb +14 -5
  95. data/lib/spontaneous/content.rb +23 -24
  96. data/lib/spontaneous/errors.rb +20 -4
  97. data/lib/spontaneous/extensions/array.rb +2 -2
  98. data/lib/spontaneous/extensions/json.rb +1 -1
  99. data/lib/spontaneous/extensions/nil.rb +13 -0
  100. data/lib/spontaneous/facet.rb +61 -7
  101. data/lib/spontaneous/field_types.rb +1 -3
  102. data/lib/spontaneous/field_types/date_field.rb +1 -0
  103. data/lib/spontaneous/field_types/field.rb +32 -15
  104. data/lib/spontaneous/field_types/image_field.rb +138 -69
  105. data/lib/spontaneous/field_types/location_field.rb +59 -0
  106. data/lib/spontaneous/field_types/long_string_field.rb +13 -0
  107. data/lib/spontaneous/field_types/markdown_field.rb +2 -1
  108. data/lib/spontaneous/field_types/string_field.rb +2 -2
  109. data/lib/spontaneous/field_types/webvideo_field.rb +255 -0
  110. data/lib/spontaneous/generators/page/inline.html.cut +1 -1
  111. data/lib/spontaneous/generators/page/page.html.cut.tt +5 -4
  112. data/lib/spontaneous/generators/page/page.rb.tt +1 -5
  113. data/lib/spontaneous/generators/site.rb +1 -0
  114. data/lib/spontaneous/generators/site/.gitignore +2 -0
  115. data/lib/spontaneous/generators/site/Gemfile.tt +3 -5
  116. data/lib/spontaneous/generators/site/config/environment.rb.tt +1 -0
  117. data/lib/spontaneous/generators/site/config/environments/development.rb.tt +3 -1
  118. data/lib/spontaneous/generators/site/config/environments/production.rb.tt +3 -1
  119. data/lib/spontaneous/generators/site/config/indexes.rb.tt +23 -0
  120. data/lib/spontaneous/generators/site/public/css/{site.css → site.scss} +0 -0
  121. data/lib/spontaneous/generators/site/schema/box.rb.tt +5 -0
  122. data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +11 -5
  123. data/lib/spontaneous/image_size.rb +0 -1
  124. data/lib/spontaneous/loader.rb +335 -218
  125. data/lib/spontaneous/logger.rb +7 -2
  126. data/lib/spontaneous/media.rb +64 -59
  127. data/lib/spontaneous/media/file.rb +74 -0
  128. data/lib/spontaneous/page.rb +47 -18
  129. data/lib/spontaneous/page_piece.rb +29 -27
  130. data/lib/spontaneous/paths.rb +0 -1
  131. data/lib/spontaneous/permissions.rb +3 -21
  132. data/lib/spontaneous/permissions/user.rb +5 -1
  133. data/lib/spontaneous/permissions/user_level.rb +6 -7
  134. data/lib/spontaneous/piece.rb +12 -7
  135. data/lib/spontaneous/plugins/aliases.rb +76 -31
  136. data/lib/spontaneous/plugins/allowed_types.rb +36 -37
  137. data/lib/spontaneous/plugins/application/facets.rb +7 -10
  138. data/lib/spontaneous/plugins/application/features.rb +17 -0
  139. data/lib/spontaneous/plugins/application/paths.rb +25 -31
  140. data/lib/spontaneous/plugins/application/render.rb +1 -5
  141. data/lib/spontaneous/plugins/application/serialisation.rb +2 -0
  142. data/lib/spontaneous/plugins/application/state.rb +6 -9
  143. data/lib/spontaneous/plugins/boxes.rb +65 -40
  144. data/lib/spontaneous/plugins/controllers.rb +22 -22
  145. data/lib/spontaneous/plugins/entries.rb +149 -150
  146. data/lib/spontaneous/plugins/entry.rb +50 -35
  147. data/lib/spontaneous/plugins/field/editor_class.rb +13 -0
  148. data/lib/spontaneous/plugins/fields.rb +41 -33
  149. data/lib/spontaneous/plugins/instance_code.rb +9 -9
  150. data/lib/spontaneous/plugins/layouts.rb +31 -35
  151. data/lib/spontaneous/plugins/media.rb +31 -32
  152. data/lib/spontaneous/plugins/page/formats.rb +56 -31
  153. data/lib/spontaneous/plugins/page/request.rb +15 -9
  154. data/lib/spontaneous/plugins/page_search.rb +30 -31
  155. data/lib/spontaneous/plugins/page_tree.rb +59 -12
  156. data/lib/spontaneous/plugins/paths.rb +84 -79
  157. data/lib/spontaneous/plugins/permissions.rb +26 -28
  158. data/lib/spontaneous/plugins/prototypes.rb +42 -37
  159. data/lib/spontaneous/plugins/publishing.rb +50 -94
  160. data/lib/spontaneous/plugins/render.rb +8 -16
  161. data/lib/spontaneous/plugins/schema_hierarchy.rb +20 -21
  162. data/lib/spontaneous/plugins/schema_id.rb +33 -25
  163. data/lib/spontaneous/plugins/schema_title.rb +3 -4
  164. data/lib/spontaneous/plugins/serialisation.rb +32 -35
  165. data/lib/spontaneous/plugins/site/features.rb +32 -0
  166. data/lib/spontaneous/plugins/site/instance.rb +3 -2
  167. data/lib/spontaneous/plugins/site/level.rb +18 -0
  168. data/lib/spontaneous/plugins/site/map.rb +2 -1
  169. data/lib/spontaneous/plugins/site/publishing.rb +56 -59
  170. data/lib/spontaneous/plugins/site/revisions.rb +24 -19
  171. data/lib/spontaneous/plugins/site/schema.rb +33 -0
  172. data/lib/spontaneous/plugins/site/search.rb +43 -0
  173. data/lib/spontaneous/plugins/site/selectors.rb +35 -30
  174. data/lib/spontaneous/plugins/site/storage.rb +63 -0
  175. data/lib/spontaneous/plugins/site_map.rb +23 -25
  176. data/lib/spontaneous/plugins/styles.rb +35 -43
  177. data/lib/spontaneous/plugins/supertype.rb +3 -1
  178. data/lib/spontaneous/plugins/visibility.rb +90 -83
  179. data/lib/spontaneous/prototypes/box_prototype.rb +55 -25
  180. data/lib/spontaneous/prototypes/field_prototype.rb +66 -19
  181. data/lib/spontaneous/prototypes/style_prototype.rb +2 -2
  182. data/lib/spontaneous/publishing.rb +1 -1
  183. data/lib/spontaneous/publishing/immediate.rb +128 -49
  184. data/lib/spontaneous/publishing/simultaneous.rb +70 -0
  185. data/lib/spontaneous/rack.rb +38 -26
  186. data/lib/spontaneous/rack/around_back.rb +3 -23
  187. data/lib/spontaneous/rack/around_preview.rb +3 -8
  188. data/lib/spontaneous/rack/assets.rb +7 -6
  189. data/lib/spontaneous/rack/authentication.rb +21 -0
  190. data/lib/spontaneous/rack/back.rb +310 -331
  191. data/lib/spontaneous/rack/cacheable_file.rb +27 -0
  192. data/lib/spontaneous/rack/cookie_authentication.rb +38 -0
  193. data/lib/spontaneous/rack/css.rb +43 -0
  194. data/lib/spontaneous/rack/event_source.rb +31 -0
  195. data/lib/spontaneous/rack/front.rb +30 -8
  196. data/lib/spontaneous/rack/helpers.rb +31 -0
  197. data/lib/spontaneous/rack/media.rb +22 -21
  198. data/lib/spontaneous/rack/public.rb +2 -1
  199. data/lib/spontaneous/rack/query_authentication.rb +35 -0
  200. data/lib/spontaneous/rack/reloader.rb +6 -3
  201. data/lib/spontaneous/rack/user_helpers.rb +28 -0
  202. data/lib/spontaneous/render.rb +64 -23
  203. data/lib/spontaneous/render/context_base.rb +143 -0
  204. data/lib/spontaneous/render/format.rb +24 -19
  205. data/lib/spontaneous/render/helpers.rb +14 -0
  206. data/lib/spontaneous/render/helpers/html_helper.rb +69 -0
  207. data/lib/spontaneous/render/helpers/script_helper.rb +17 -0
  208. data/lib/spontaneous/render/helpers/stylesheet_helper.rb +16 -0
  209. data/lib/spontaneous/render/preview_context.rb +8 -0
  210. data/lib/spontaneous/render/preview_renderer.rb +6 -0
  211. data/lib/spontaneous/render/publish_context.rb +22 -0
  212. data/lib/spontaneous/render/published_renderer.rb +12 -13
  213. data/lib/spontaneous/render/publishing_renderer.rb +3 -0
  214. data/lib/spontaneous/render/render_cache.rb +26 -0
  215. data/lib/spontaneous/render/renderer.rb +5 -1
  216. data/lib/spontaneous/render/request_context.rb +8 -0
  217. data/lib/spontaneous/schema.rb +56 -24
  218. data/lib/spontaneous/schema/schema_modification.rb +2 -2
  219. data/lib/spontaneous/schema/uid.rb +22 -106
  220. data/lib/spontaneous/schema/uid_map.rb +120 -0
  221. data/lib/spontaneous/search.rb +11 -0
  222. data/lib/spontaneous/search/compound_indexer.rb +26 -0
  223. data/lib/spontaneous/search/database.rb +72 -0
  224. data/lib/spontaneous/search/field.rb +95 -0
  225. data/lib/spontaneous/search/index.rb +184 -0
  226. data/lib/spontaneous/search/results.rb +34 -0
  227. data/lib/spontaneous/server.rb +5 -1
  228. data/lib/spontaneous/site.rb +56 -16
  229. data/lib/spontaneous/storage.rb +22 -0
  230. data/lib/spontaneous/storage/backend.rb +10 -0
  231. data/lib/spontaneous/storage/cloud.rb +104 -0
  232. data/lib/spontaneous/storage/local.rb +52 -0
  233. data/lib/spontaneous/style.rb +27 -9
  234. data/lib/spontaneous/version.rb +1 -1
  235. data/spontaneous.gemspec +719 -0
  236. data/test/disabled/test_slots.rb +1 -1
  237. data/test/experimental/test_cutaneous.rb +309 -0
  238. data/test/experimental/test_features.rb +129 -0
  239. data/test/fixtures/application/views/{index.erubis → index.erb} +0 -0
  240. data/test/fixtures/back/public/css/sass_include.scss +5 -0
  241. data/test/fixtures/back/public/css/sass_template.scss +4 -0
  242. data/test/fixtures/example_application/templates/client_project.html.cut +4 -4
  243. data/test/fixtures/example_application/templates/client_project/images.html.cut +1 -1
  244. data/test/fixtures/example_application/templates/client_projects.html.cut +2 -2
  245. data/test/fixtures/example_application/templates/inline_image.html.cut +1 -1
  246. data/test/fixtures/example_application/templates/layouts/home.html.cut +7 -7
  247. data/test/fixtures/example_application/templates/layouts/info.html.cut +1 -1
  248. data/test/fixtures/example_application/templates/layouts/project.html.cut +4 -4
  249. data/test/fixtures/example_application/templates/layouts/projects.html.cut +2 -2
  250. data/test/fixtures/example_application/templates/project.html.cut +2 -2
  251. data/test/fixtures/example_application/templates/project/inline.html.cut +3 -3
  252. data/test/fixtures/example_application/templates/project_image.html.cut +1 -1
  253. data/test/fixtures/example_application/templates/text.html.cut +1 -1
  254. data/test/fixtures/fields/youtube_api_response.xml +102 -0
  255. data/test/fixtures/layouts/layouts/custom4.html.cut +0 -0
  256. data/test/fixtures/plugins/schema_plugin/public/css/plugin.css +1 -0
  257. data/test/fixtures/plugins/schema_plugin/public/js/plugin.js +1 -0
  258. data/test/fixtures/plugins/schema_plugin/public/static.html +1 -0
  259. data/test/fixtures/plugins/schema_plugin/public/subdir/image.gif +1 -0
  260. data/test/fixtures/plugins/schema_plugin/public/subdir/include1.scss +3 -0
  261. data/test/fixtures/plugins/schema_plugin/public/subdir/sass.scss +4 -0
  262. data/test/fixtures/plugins/schema_plugin/public/subdir/sass/include2.scss +4 -0
  263. data/test/fixtures/public/templates/layouts/default.html.cut +1 -1
  264. data/test/fixtures/public/templates/layouts/default.pdf.cut +1 -1
  265. data/test/fixtures/public/templates/layouts/default.rss.cut +1 -1
  266. data/test/fixtures/public/templates/layouts/dynamic.html.cut +1 -1
  267. data/test/fixtures/schema_modification/config/database.yml +0 -0
  268. data/test/fixtures/schema_modification/config/environment.rb +2 -0
  269. data/test/fixtures/schema_modification/schema/box.rb +1 -0
  270. data/test/fixtures/schema_modification/schema/custom_box.rb +1 -0
  271. data/test/fixtures/schema_modification/schema/page.rb +6 -0
  272. data/test/fixtures/schema_modification/schema/piece.rb +1 -0
  273. data/test/fixtures/search/config/database.yml +1 -0
  274. data/test/fixtures/search/config/indexes.rb +4 -0
  275. data/test/fixtures/serialisation/root_hash.yaml.erb +16 -20
  276. data/test/fixtures/storage/cloud/environment.rb +12 -0
  277. data/test/fixtures/storage/default/environment.rb +1 -0
  278. data/test/fixtures/templates/aliases/layouts/c_alias.html.cut +1 -1
  279. data/test/fixtures/templates/content/include.html.cut +1 -1
  280. data/test/fixtures/templates/content/include_dir.html.cut +1 -1
  281. data/test/fixtures/templates/content/included.epub.cut +1 -1
  282. data/test/fixtures/templates/content/included.html.cut +1 -1
  283. data/test/fixtures/templates/content/partial/included.html.cut +1 -1
  284. data/test/fixtures/templates/content/preprocess.html.cut +1 -1
  285. data/test/fixtures/templates/content/second.html.cut +1 -1
  286. data/test/fixtures/templates/content/template.epub.cut +1 -1
  287. data/test/fixtures/templates/content/template.html.cut +1 -1
  288. data/test/fixtures/templates/default_style_class.html.cut +1 -1
  289. data/test/fixtures/templates/engine/braces.html.cut +6 -0
  290. data/test/fixtures/templates/engine/multiline.html.cut +5 -0
  291. data/test/fixtures/templates/extended/grandparent.html.cut +7 -7
  292. data/test/fixtures/templates/extended/main.html.cut +5 -5
  293. data/test/fixtures/templates/extended/parent.html.cut +10 -8
  294. data/test/fixtures/templates/extended/partial.html.cut +1 -0
  295. data/test/fixtures/templates/extended/partial_with_locals.html.cut +1 -0
  296. data/test/fixtures/templates/extended/with_includes.html.cut +9 -0
  297. data/test/fixtures/templates/extended/with_includes_and_locals.html.cut +9 -0
  298. data/test/fixtures/templates/layouts/entries.html.cut +7 -7
  299. data/test/fixtures/templates/layouts/page_style.html.cut +1 -1
  300. data/test/fixtures/templates/layouts/params.html.cut +1 -1
  301. data/test/fixtures/templates/layouts/preview_render.html.cut +2 -2
  302. data/test/fixtures/templates/layouts/standard_page.html.cut +1 -1
  303. data/test/fixtures/templates/layouts/subdir_style.html.cut +1 -1
  304. data/test/fixtures/templates/layouts/template_params.html.cut +1 -1
  305. data/test/fixtures/templates/layouts/variables.html.cut +7 -0
  306. data/test/fixtures/templates/page_class/inline_style.html.cut +1 -1
  307. data/test/fixtures/templates/preview_render/variables.html.cut +1 -0
  308. data/test/fixtures/templates/publishing/templates/layouts/dynamic.html.cut +1 -0
  309. data/test/fixtures/templates/publishing/templates/layouts/dynamic.rtf.cut +1 -0
  310. data/test/fixtures/templates/publishing/templates/layouts/static.html.cut +1 -0
  311. data/test/fixtures/templates/template_class/anonymous_style.html.cut +2 -2
  312. data/test/fixtures/templates/template_class/complex_template.html.cut +4 -4
  313. data/test/fixtures/templates/template_class/complex_template.pdf.cut +4 -4
  314. data/test/fixtures/templates/template_class/default_template_style.html.cut +2 -2
  315. data/test/fixtures/templates/template_class/images_with_template.html.cut +3 -3
  316. data/test/fixtures/templates/template_class/slots_template.html.cut +3 -3
  317. data/test/fixtures/templates/template_class/slots_template.pdf.cut +3 -3
  318. data/test/fixtures/templates/template_class/this_template.epub.cut +1 -1
  319. data/test/fixtures/templates/template_class/this_template.html.cut +1 -1
  320. data/test/fixtures/templates/template_class/this_template.pdf.cut +1 -1
  321. data/test/fixtures/templates/with_default_style_class.html.cut +1 -1
  322. data/test/functional/test_application.rb +19 -15
  323. data/test/functional/test_back.rb +130 -98
  324. data/test/functional/test_front.rb +72 -28
  325. data/test/javascript/test_dom.rb +1 -1
  326. data/test/javascript/test_markdown.rb +1 -1
  327. data/test/slow/test_publishing.rb +94 -75
  328. data/test/slow/test_visibility.rb +47 -14
  329. data/test/test_helper.rb +30 -3
  330. data/test/ui/test_page_editing.rb +1 -1
  331. data/test/unit/test_alias.rb +200 -16
  332. data/test/unit/test_authentication.rb +26 -28
  333. data/test/unit/test_boxes.rb +146 -75
  334. data/test/unit/test_config.rb +42 -20
  335. data/test/unit/test_content.rb +156 -37
  336. data/test/unit/test_content_inheritance.rb +4 -2
  337. data/test/unit/test_extensions.rb +7 -1
  338. data/test/unit/test_fields.rb +558 -290
  339. data/test/{experimental → unit}/test_formats.rb +42 -3
  340. data/test/unit/test_generators.rb +3 -2
  341. data/test/unit/test_helpers.rb +54 -0
  342. data/test/unit/test_image_size.rb +1 -1
  343. data/test/unit/test_images.rb +51 -40
  344. data/test/unit/test_layouts.rb +21 -4
  345. data/test/unit/test_logger.rb +1 -1
  346. data/test/unit/test_media.rb +165 -7
  347. data/test/unit/test_page.rb +158 -27
  348. data/test/unit/test_permissions.rb +170 -187
  349. data/test/unit/test_piece.rb +27 -9
  350. data/test/unit/test_plugins.rb +153 -0
  351. data/test/unit/test_prototype_set.rb +60 -2
  352. data/test/unit/test_prototypes.rb +81 -20
  353. data/test/unit/test_render.rb +97 -9
  354. data/test/unit/test_schema.rb +167 -120
  355. data/test/unit/test_search.rb +588 -0
  356. data/test/unit/test_serialisation.rb +26 -10
  357. data/test/unit/test_site.rb +42 -25
  358. data/test/unit/test_storage.rb +88 -0
  359. data/test/unit/test_structure.rb +11 -5
  360. data/test/unit/test_styles.rb +64 -3
  361. data/test/unit/test_table_scoping.rb +76 -0
  362. data/test/unit/test_templates.rb +69 -31
  363. data/test/unit/test_type_hierarchy.rb +9 -1
  364. metadata +274 -208
  365. data/Gemfile.lock +0 -146
  366. data/application/css/min/54ee0ed3c7fac7632bd5c020d69e9a2503e0c88c.css +0 -1
  367. data/application/css/min/c256adc144e2bdd0b0539356b04eb62db01e1dc3.css +0 -1
  368. data/application/js/edit_dialogue.js +0 -137
  369. data/application/js/min/492a209de8ee955fa9c729a765377495001e11b1.js +0 -17
  370. data/application/js/min/80f684d77c940887a1d4a63e3a96102e993baa98.js +0 -88
  371. data/application/js/min/c7140ec9475e5bf868b901e0621338d7d162358b.js +0 -3
  372. data/application/js/min/f07f2bd6630ee31e1c2288ec223383d8f0658ba6.js +0 -2
  373. data/application/js/vendor/.DS_Store +0 -0
  374. data/application/js/vendor/JS.Class-2.1.5/src/command.js +0 -93
  375. data/application/js/vendor/JS.Class-2.1.5/src/comparable.js +0 -37
  376. data/application/js/vendor/JS.Class-2.1.5/src/constant_scope.js +0 -48
  377. data/application/js/vendor/JS.Class-2.1.5/src/core.js +0 -1060
  378. data/application/js/vendor/JS.Class-2.1.5/src/decorator.js +0 -50
  379. data/application/js/vendor/JS.Class-2.1.5/src/enumerable.js +0 -505
  380. data/application/js/vendor/JS.Class-2.1.5/src/forwardable.js +0 -22
  381. data/application/js/vendor/JS.Class-2.1.5/src/hash.js +0 -334
  382. data/application/js/vendor/JS.Class-2.1.5/src/linked_list.js +0 -114
  383. data/application/js/vendor/JS.Class-2.1.5/src/loader.js +0 -553
  384. data/application/js/vendor/JS.Class-2.1.5/src/method_chain.js +0 -172
  385. data/application/js/vendor/JS.Class-2.1.5/src/observable.js +0 -55
  386. data/application/js/vendor/JS.Class-2.1.5/src/package.js +0 -472
  387. data/application/js/vendor/JS.Class-2.1.5/src/proxy.js +0 -58
  388. data/application/js/vendor/JS.Class-2.1.5/src/ruby.js +0 -44
  389. data/application/js/vendor/JS.Class-2.1.5/src/set.js +0 -332
  390. data/application/js/vendor/JS.Class-2.1.5/src/stack_trace.js +0 -151
  391. data/application/js/vendor/JS.Class-2.1.5/src/state.js +0 -95
  392. data/application/js/vendor/JS.Class-2.1.5/src/stdlib.js +0 -2612
  393. data/application/js/vendor/jquery-1.4.2.min.js +0 -154
  394. data/application/js/vendor/jquery-1.4.3.min.js +0 -166
  395. data/application/js/vendor/jquery-1.5.1.min.js +0 -16
  396. data/application/js/vendor/jquery-1.5.1rc1.min.js +0 -24
  397. data/application/js/vendor/jquery-ui-1.8.6.custom.min.js +0 -265
  398. data/application/js/vendor/jquery-ui-1.8.custom.min.js +0 -106
  399. data/application/js/vendor/jquery.hotkeys-0.7.9.js +0 -248
  400. data/application/js/vendor/jquery.hotkeys-0.7.9.min.js +0 -19
  401. data/application/js/vendor/jsdiff.js +0 -169
  402. data/lib/cutaneous/first_pass_parser.rb +0 -23
  403. data/lib/cutaneous/parser_core.rb +0 -18
  404. data/lib/cutaneous/second_pass_parser.rb +0 -23
  405. data/lib/sequel/plugins/yajl_serialization.rb +0 -154
  406. data/lib/spontaneous/plugins.rb +0 -20
  407. data/lib/spontaneous/proxy_object.rb +0 -12
  408. data/lib/spontaneous/publishing/fire_and_forget.rb +0 -57
  409. data/lib/spontaneous/render/context.rb +0 -100
  410. data/spontaneous.gemspec.tmpl +0 -66
  411. data/test/experimental/test_plugins.rb +0 -64
  412. data/test/fixtures/templates/publishing/layouts/dynamic.html.cut +0 -1
  413. data/test/fixtures/templates/publishing/layouts/static.html.cut +0 -1
@@ -3,10 +3,11 @@ Spontaneous.AddAliasDialogue = (function($, S) {
3
3
  var dom = S.Dom, Dialogue = Spontaneous.Dialogue;
4
4
 
5
5
  var AddAliasDialogue = new JS.Class(Dialogue, {
6
- initialize: function(box_view, type) {
6
+ initialize: function(box_view, type, position) {
7
7
  this.box_view = box_view;
8
8
  this.box_view.bind('entry_added', this.alias_added.bind(this))
9
9
  this.type = type;
10
+ this.insert_position = position;
10
11
  },
11
12
  title: function() {
12
13
  return 'Add alias to “' + this.box_view.name() + '”';
@@ -22,7 +23,7 @@ Spontaneous.AddAliasDialogue = (function($, S) {
22
23
  },
23
24
  add_alias: function() {
24
25
  if (this.target) {
25
- this.box_view.add_alias(this.target.id, this.type)
26
+ this.box_view.add_alias(this.target.id, this.type, this.insert_position);
26
27
  }
27
28
  },
28
29
  alias_added: function() {
@@ -31,20 +32,29 @@ Spontaneous.AddAliasDialogue = (function($, S) {
31
32
  select_target: function(target) {
32
33
  this.target = target;
33
34
  },
35
+ box_owner: function() {
36
+ return this.box_view.box.container;
37
+ },
38
+ box: function() {
39
+ return this.box_view.box;
40
+ },
34
41
  body: function() {
35
- var editing = dom.div('#add-alias-dialogue'), outer = dom.div(), instructions = dom.p('.instructions'),
36
- targets = this.targets, __dialogue = this;
37
- instructions.html("Choose a target:")
38
- editing.append(instructions, outer)
39
- Spontaneous.Ajax.get(['/targets', this.type.schema_id].join('/'), this.targets_loaded.bind(this));
42
+ var editing = dom.div('#add-alias-dialogue')
43
+ , outer = dom.div()
44
+ , instructions = dom.p('.instructions')
45
+ , __dialogue = this;
46
+ instructions.html("Choose a target:");
47
+ editing.append(instructions, outer);
48
+ Spontaneous.Ajax.get(['/targets', this.type.schema_id, this.box().id()].join('/'), this.targets_loaded.bind(this));
40
49
  this._outer = outer;
41
50
  return editing;
42
51
  },
52
+
43
53
  targets_loaded: function(targets) {
44
54
  var outer = this._outer, __dialogue = this;
45
55
  this.targets = targets;
46
56
  $.each(targets, function(i, target) {
47
- var d = dom.div('.type').text(target.title).click(function() {
57
+ var d = dom.div('.type').html(target.title).click(function() {
48
58
  $('.type', outer).removeClass('selected');
49
59
  __dialogue.select_target(target);
50
60
  $(this).addClass('selected');;
@@ -37,7 +37,7 @@ Spontaneous.Ajax = (function($, S) {
37
37
  };
38
38
  post_data = $.extend(post_data, this.api_access_key());
39
39
  $.ajax({
40
- 'url': this.request_url(url),
40
+ 'url': this.request_url(url, true),
41
41
  'type': 'post',
42
42
  'data': post_data,
43
43
  'success': success,
@@ -10,7 +10,14 @@ Spontaneous.Auth = (function($, S) {
10
10
  localStorage.setItem(this.key(site), key);
11
11
  },
12
12
  load: function(site) {
13
- return localStorage.getItem(this.key(site));
13
+ return localStorage.getItem(this.key(site)) || this.loadAutoLogin();
14
+ },
15
+ loadAutoLogin: function() {
16
+ if (!this._autoLoginKey) {
17
+ console.warn("Using auto login key for user", "'"+S.auto_login+"'");
18
+ this._autoLoginKey = S.user_key;
19
+ }
20
+ return this._autoLoginKey;
14
21
  },
15
22
  remove: function(site) {
16
23
  localStorage.removeItem(this.key(site));
@@ -8,6 +8,12 @@ Spontaneous.Box = (function($, S) {
8
8
  initialize: function(content, container) {
9
9
  this.callSuper(content);
10
10
  this.container = container;
11
+ var box = this;
12
+ $.each(this.entries(), function(index, entry) {
13
+ entry.bind('destroyed', function(entry) {
14
+ box.entry_removed(entry);
15
+ });
16
+ });
11
17
  },
12
18
 
13
19
  name: function() {
@@ -36,7 +42,7 @@ Spontaneous.Box = (function($, S) {
36
42
  mouseover: function() {
37
43
  if (this.fields_preview) {
38
44
  this.fields_preview.addClass('hover');
39
- }
45
+ };
40
46
  },
41
47
  mouseout: function() {
42
48
  if (this.fields_preview) {
@@ -75,22 +81,46 @@ Spontaneous.Box = (function($, S) {
75
81
  },
76
82
 
77
83
  add_entry: function(type, position) {
78
- Spontaneous.Ajax.post(['/add', this.id(), type.schema_id].join('/'), {}, this.entry_added.bind(this));
84
+ Spontaneous.Ajax.post(['/add', this.id(), type.schema_id].join('/'), {position: position}, this.entry_added.bind(this));
79
85
  },
80
86
 
81
- add_alias: function(alias_target_id, type) {
82
- S.Ajax.post(["/alias", this.id()].join("/"), {'alias_id':type.schema_id, 'target_id':alias_target_id}, this.entry_added.bind(this));
87
+ add_alias: function(alias_target_id, type, position) {
88
+ S.Ajax.post(["/alias", this.id()].join("/"), {'alias_id':type.schema_id, 'target_id':alias_target_id, 'position':position}, this.entry_added.bind(this));
83
89
  },
84
90
 
85
91
  entry_added: function(result) {
86
- var position = result.position, e = result.entry, entry = this.wrap_entry(e);
87
- this.content.entries.splice(position, 0, e);
88
- this.entries().splice(position, 0, entry);
92
+ var box = this
93
+ ,position = result.position
94
+ , e = result.entry
95
+ , entry = this.wrap_entry(e);
96
+
97
+ entry.bind('destroyed', function(entry) {
98
+ box.entry_removed(entry);
99
+ });
100
+ if (position === -1) {
101
+ this.content.entries.push(e);
102
+ this.entries().push(entry);
103
+ } else {
104
+ this.content.entries.splice(position, 0, e);
105
+ this.entries().splice(position, 0, entry);
106
+ }
89
107
  var page = S.Editing.get('page');
90
108
  page.trigger('entry_added', entry, position);
91
109
  this.trigger('entry_added', entry, position);
92
110
  },
93
111
 
112
+ entry_removed: function(entry) {
113
+ var entries = this.entries(), position = 0;
114
+ for (var i = 0, ii = entries.length; i < ii; i++) {
115
+ if (entries[i].id() == entry.id()) {
116
+ position = i;
117
+ break;
118
+ }
119
+ }
120
+ entries.splice(position, 1);
121
+ this.trigger('entry_removed', entry);
122
+ },
123
+
94
124
  save_path: function() {
95
125
  return ['/savebox', this.id()].join('/');
96
126
  },
@@ -8,7 +8,7 @@ Spontaneous.BoxContainer = (function($, S) {
8
8
  initialize: function(content, wrap_id) {
9
9
  this.callSuper(content);
10
10
  this.wrap_id = wrap_id;
11
- this.box_content_container = dom.div();
11
+ this.box_content_container = dom.div('.slot-content-wrapper');
12
12
  },
13
13
 
14
14
  panel: function() {
@@ -7,6 +7,10 @@
7
7
 
8
8
  // many thanks to modernizer for working a lot of this out
9
9
  // should probably just use it instead...
10
+ // this does two things:
11
+ // 1. Check that the current browser supports the core HTML5 feature set,
12
+ // 2. Regularise access to the various APIs, removing vendor prefixes and providing the spec defined methods
13
+ // 3. Add some useful CSS-visible attributes to the HTML element
10
14
  (function() {
11
15
  var _window = window, _document = document;
12
16
  var prefixes = ' -webkit- -moz- -o- -ms- -khtml- '.split(' ');
@@ -126,6 +130,9 @@
126
130
  throw "Local Storage not supported"
127
131
  }
128
132
 
133
+ var b = _document.documentElement;
134
+ b.setAttribute('data-useragent', navigator.userAgent);
135
+ b.setAttribute('data-platform', navigator.platform );
129
136
  } catch (e) {
130
137
  _window.location.href = "/@spontaneous/unsupported?msg=" + _window.encodeURI(e);
131
138
  }
@@ -33,6 +33,10 @@ Spontaneous.Content = (function($, S) {
33
33
  return S.Types.type(this.content.type);
34
34
  }.cache(),
35
35
 
36
+ slug: function() {
37
+ return this.content.slug;
38
+ },
39
+
36
40
  constantize: function(type) {
37
41
  var parts = type.split(/\./), obj = window;
38
42
  for (var i = 0, ii = parts.length; i < ii; i++) {
@@ -46,6 +50,9 @@ Spontaneous.Content = (function($, S) {
46
50
  $.each(this.entries(), function(i, e) { e.unload(); });
47
51
  },
48
52
 
53
+ has_fields: function() {
54
+ return this.field_list().length > 0;
55
+ },
49
56
  field_list: function() {
50
57
  var type = this.type(), prototypes = type.field_prototypes, names = type.field_names;
51
58
  var fields = this.fields(), list = [];
@@ -37,6 +37,10 @@ Spontaneous.ContentArea = (function($, S) {
37
37
  },
38
38
  goto_page: function(page) {
39
39
  this.current().goto_page(page);
40
+ },
41
+ scroll_to_bottom: function(duration, delay) {
42
+
43
+ this.wrap.delay(delay || 0).animate({ scrollTop:this.wrap[0].scrollHeight }, (duration || 1000));
40
44
  }
41
45
  });
42
46
  return ContentArea;
@@ -27,9 +27,7 @@ Spontaneous.EditPanel = (function($, S) {
27
27
 
28
28
  save: function() {
29
29
  var fields = this.parent_view.field_list();
30
- console.log('save', fields)
31
30
  S.Ajax.test_field_versions(this.parent_view, fields, this.upload_values.bind(this), this.upload_conflict.bind(this));
32
-
33
31
  return false;
34
32
  },
35
33
 
@@ -129,13 +127,14 @@ Spontaneous.EditPanel = (function($, S) {
129
127
  if (class_name) { toolbar.addClass(class_name); }
130
128
  return toolbar;
131
129
  };
132
- var editing = dom.form(['.editing-panel', this.parent_view.depth_class()], {'enctype':'multipart/form-data', 'method':'post'})
130
+ var editing = dom.form(['.editing-panel', this.parent_view.depth_class()], {'enctype':'multipart/form-data', 'accept-charset':'UTF-8', 'method':'post'})
133
131
  var toolbar = get_toolbar();
134
132
  var outer = dom.div('.editing-fields');
135
133
  var text_field_wrap = dom.div('.field-group.text');
136
134
  var image_field_wrap = dom.div('.field-group.image');
137
135
  var text_fields = this.parent_view.text_fields();
138
136
  var submit = dom.input({'type':'submit'});
137
+ var __dialogue = this;
139
138
  editing.append(toolbar);
140
139
  for (var i = 0, ii = text_fields.length; i < ii; i++) {
141
140
  var field = text_fields[i];
@@ -148,7 +147,7 @@ Spontaneous.EditPanel = (function($, S) {
148
147
 
149
148
  for (var i = 0, ii = image_fields.length; i < ii; i++) {
150
149
  var field = image_fields[i];
151
- image_field_wrap.append(this.field_edit(field));
150
+ image_field_wrap.append(this.field_edit(field).click(function() { __dialogue.field_focus(this); }));
152
151
  }
153
152
  if (image_fields.length > 0) {
154
153
  outer.append(image_field_wrap);
@@ -157,16 +156,20 @@ Spontaneous.EditPanel = (function($, S) {
157
156
  editing.append(outer);
158
157
  editing.append(dom.div('.clear'));
159
158
  editing.append(get_toolbar('bottom'));
160
- __dialogue = this;
161
159
  // activate the highlighting
162
160
  $('input, textarea', editing).focus(function() {
163
161
  __dialogue.field_focus(this);
164
162
  }).blur(function() {
165
- // $(this).parents('.field').first().removeClass('focus');
163
+ __dialogue.field_blur(this);
166
164
  });
167
165
  editing.submit(this.save.bind(this));
168
166
  this.form = editing;
169
- $(':input', this.form).add(document).bind('keydown.savedialog', function(event) {
167
+ $(':input', this.form).keydown(function(event) {
168
+ if (event.keyCode === 9) { // TAB
169
+ __dialogue.tab_to_next(this, event.shiftKey);
170
+ return false;
171
+ }
172
+ }).add(document).bind('keydown.savedialog', function(event) {
170
173
  var s_key = 83, esc_key = 27;
171
174
  if ((event.ctrlKey || event.metaKey) && event.keyCode === s_key) {
172
175
  this.save();
@@ -179,6 +182,21 @@ Spontaneous.EditPanel = (function($, S) {
179
182
  }.bind(this));
180
183
  return this.form;
181
184
  },
185
+ tab_to_next: function(input, upwards) {
186
+ var active_field = $(input).data('field')
187
+ , text_fields = this.parent_view.text_fields(), position = 0, next_position, next_field
188
+ , direction = upwards ? -1 : 1;
189
+ for (var i = 0, ii = text_fields.length; i < ii; i++) {
190
+ if (text_fields[i] === active_field) {
191
+ position = i;
192
+ break;
193
+ }
194
+ }
195
+ next_position = (position + direction) % text_fields.length;
196
+ if (next_position === -1) { next_position = text_fields.length - 1; }
197
+ next_field = text_fields[next_position];
198
+ next_field.input().focus();
199
+ },
182
200
  on_show: function(focus_field) {
183
201
  if (!focus_field || !(focus_field['focus']) || !focus_field.accepts_focus) { focus_field = null; }
184
202
  var focus_field = focus_field || this.parent_view.text_fields()[0];
@@ -187,23 +205,31 @@ Spontaneous.EditPanel = (function($, S) {
187
205
  }
188
206
  },
189
207
  field_focus: function(input) {
190
- var text_fields = this.parent_view.text_fields(), active_field = false;
191
- for (var i = 0, ii = text_fields.length; i < ii; i++) {
192
- var field = text_fields[i];
193
- if (field.input()[0] === input) {
194
- active_field = field;
195
- break;
196
- }
197
- }
208
+ var active_field = $(input).data('field')
198
209
  if (active_field === this.active_field) { return; }
199
- if (this.active_field) {
200
- this.active_field.on_blur();
201
- }
202
210
  if (active_field) {
203
211
  this.active_field = active_field;
204
212
  this.active_field.on_focus();
205
213
  }
206
214
  },
215
+ field_blur: function(input) {
216
+ var active_field = $(input).data('field')
217
+ if (active_field) {
218
+ active_field.on_blur();
219
+ }
220
+ if (active_field === this.active_field) {
221
+ this.active_field = null;
222
+ }
223
+ },
224
+ field_from_input: function(input_element) {
225
+ var text_fields = this.parent_view.text_fields(), active_field = false;
226
+ for (var i = 0, ii = text_fields.length; i < ii; i++) {
227
+ var field = text_fields[i];
228
+ if (field.input()[0] === input_element) {
229
+ return field;
230
+ }
231
+ }
232
+ },
207
233
  field_edit: function(field) {
208
234
  var d = dom.div('.field');
209
235
  // d.append($(dom.label, {'class':'name', 'for':field.css_id()}).html(field.label()));
@@ -25,12 +25,24 @@ Spontaneous.Editing = (function($, S) {
25
25
  var page = this.get('page');
26
26
  if (page) { page.unload(); }
27
27
  page = new Page(page_data);
28
+ page.watch('path', this.path_updated.bind(this));
28
29
  view = new S.Views.PageView(page);
29
30
  this.container.empty();
30
31
  this.container.append(view.panel());
31
32
  this.set('page', page);
32
33
  this.container.fadeIn(300);
33
34
  },
35
+ path_updated: function(path) {
36
+ this.set('path', path);
37
+ },
38
+ path: function() {
39
+ var path = this.get('path');
40
+ if (path) {
41
+ return path;
42
+ } else {
43
+ return this.get('page').get('path');
44
+ }
45
+ },
34
46
  hide: function() {
35
47
  this.container.hide();
36
48
  },
@@ -0,0 +1,17 @@
1
+ // console.log("Loading TopBar...")
2
+
3
+ Spontaneous.EventSource = (function($, S) {
4
+ var EventSource = new JS.Singleton({
5
+ eventSource: function() {
6
+ if (!this._eventSource) {
7
+ this._eventSource = new window.EventSource(S.Ajax.request_url('/events', true));
8
+ }
9
+ return this._eventSource;
10
+ },
11
+
12
+ addEventListener: function(event, callback) {
13
+ this.eventSource().addEventListener(event, callback);
14
+ }
15
+ });
16
+ return EventSource;
17
+ })(jQuery, Spontaneous);
@@ -89,6 +89,8 @@ function $A(iterable) {
89
89
  }
90
90
  };
91
91
 
92
+ $.fn.appear.height_change_duration = height_change_duration;
93
+
92
94
  $.fn.disappear = function(callback) {
93
95
  var $this = this;
94
96
  this.animate({'opacity':0}, {
@@ -14,7 +14,8 @@ Spontaneous.FieldTypes.FileField = (function($, S) {
14
14
  Spontaneous.UploadManager.unregister(this);
15
15
  },
16
16
  upload_complete: function(values) {
17
- console.log('upload complete', values)
17
+ console.log('FileField#upload_complete', values)
18
+ this.set('value', values.processed_value);
18
19
  this.set_version(values.version);
19
20
  this.selected_files = null;
20
21
  this.disable_progress();
@@ -50,9 +50,6 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
50
50
  return this._progress_bar;
51
51
  },
52
52
 
53
- upload_complete: function(values) {
54
- this.callSuper(values);
55
- },
56
53
 
57
54
  upload_progress: function(position, total) {
58
55
  this.spinner().stop();
@@ -62,26 +59,26 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
62
59
 
63
60
  preview: function() {
64
61
  Spontaneous.UploadManager.register(this);
62
+ var value = this.get('value').original, src = value.src, img = null, dim = 45;
65
63
 
66
- var value = this.get('value'), img = null, dim = 45;
67
-
68
- if (value === "") {
64
+ if (src === "") {
69
65
  img = dom.img('.missing-image', {'src':'/@spontaneous/static/px.gif'});
70
66
  } else {
71
- img = dom.img({'src':value});
67
+ img = dom.img();
68
+ img.load(function() {
69
+ var r = this.width/this.height, $this = $(this), h = $this.height(), dh = 0;
70
+ if (r >= 1 && h <= dim) { // landscape -- fit image vertically
71
+ var dh = (dim - h)/2;
72
+ }
73
+ $this.css('top', dom.px(dh));
74
+ });
75
+ img.attr({'src':src});
72
76
  }
73
77
 
74
78
  img.error(function() {
75
79
  $(this).addClass('missing');
76
80
  });
77
81
 
78
- img.load(function() {
79
- var r = this.width/this.height, $this = $(this), h = $this.height(), dh = 0;
80
- if (r >= 1 && h <= dim) { // landscape -- fit image vertically
81
- var dh = (dim - h)/2;
82
- }
83
- $this.css('top', dom.px(dh));
84
- });
85
82
  this.image = img;
86
83
 
87
84
  var outer = dom.div('.image-outer');
@@ -152,7 +149,6 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
152
149
  S.UploadManager.replace(this, file);
153
150
  },
154
151
  upload_conflict: function(conflict_data) {
155
- console.log('conflicted_fields', conflict_data)
156
152
  var dialogue = new S.ConflictedFieldDialogue(this, conflict_data);
157
153
  dialogue.open();
158
154
  },
@@ -182,26 +178,20 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
182
178
  return this._spinner;
183
179
  },
184
180
  upload_complete: function(values) {
181
+
185
182
  this.callSuper(values)
186
183
  if (values) {
187
- console.log('upload complete', values)
188
- this.set('value', values.src);
184
+ var value = this.value().original;
189
185
  if (this.image) {
190
186
  var img = new Image()
191
187
  img.onload = function() {
192
- this.image.attr('src', values.src);
188
+ this.image.attr('src', value.src);
193
189
  }.bind(this);
194
- img.src = values.src;
190
+ img.src = value.src;
195
191
  }
196
192
  }
197
193
  },
198
- // upload_progress: function(position, total) {
199
- // this.progress_bar.css('width', ((position/total)*100) + '%');
200
- // if (position === total) {
201
- // this.drop_target.removeClass('uploading')
202
- // this.progress_bar.parent().remove();
203
- // }
204
- // },
194
+
205
195
  width: function() {
206
196
  if (this.data.values && this.data.values.original) {
207
197
  return this.data.values.original.width;
@@ -215,21 +205,18 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
215
205
  return 0;
216
206
  },
217
207
  edit: function() {
218
- var wrap = dom.div({'style':'position:relative;'});
219
- var src = this.value();
220
- var img = dom.img({'src':src}).load(function() {
221
- // doesn't work because it returns the size of the HTML element
222
- // (as constrained by CSS)
223
- // rather than the size of the source image
224
- // set_dimensions(this.width, this.height);
225
- if (this.width >= this.height) {
226
- wrap.addClass('landscape');
227
- } else {
228
- wrap.removeClass('landscape');
229
- }
230
- });
208
+ var wrap = dom.div({'style':'position:relative;'}),
209
+ value = this.value().original,
210
+ src = value.src,
211
+ img = dom.img({'src':src}),
212
+ info, sizes, filename_info, filesize_info, dimensions_info;
213
+
214
+ if (value.width >= value.height) {
215
+ wrap.addClass('landscape');
216
+ } else {
217
+ wrap.removeClass('landscape');
218
+ }
231
219
 
232
- var info, sizes, filesize_info, dimensions_info;
233
220
  info = dom.div('.info');
234
221
  sizes = dom.div('.sizes');
235
222
  filename_info = dom.div('.filename');
@@ -249,7 +236,9 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
249
236
 
250
237
  var set_info = function(filename, filesize, width, height) {
251
238
  filename_info.text(filename);
252
- filesize_info.text(parseFloat(filesize, 10).to_filesize());
239
+ if (filesize) {
240
+ filesize_info.text(parseFloat(filesize, 10).to_filesize());
241
+ }
253
242
  set_dimensions(width, height);
254
243
  };
255
244
 
@@ -282,8 +271,6 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
282
271
  var dropper = dom.div('.image-drop').click(onclick);
283
272
 
284
273
  var actions = dom.div('.actions');
285
- var attr = this.data.values.original;
286
- // var change = $(dom.a, {'class':'button change'}).text('Change').click(onclick);
287
274
  // var clear = dom.a('.button.clear').text('Clear');
288
275
  actions.append(input)//.append(clear);
289
276
  wrap.append(dropper);
@@ -323,9 +310,9 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
323
310
 
324
311
  wrap.append(img, actions, info);
325
312
 
326
- if (attr) {
327
- var s = attr.src.split('/'), filename = s[s.length - 1];
328
- set_info(filename, attr.filesize, attr.width, attr.height);
313
+ if (value) {
314
+ var s = value.src.split('/'), filename = s[s.length - 1];
315
+ set_info(filename, value.filesize, value.width, value.height);
329
316
  }
330
317
  this.preview_img = img;
331
318
  return wrap;
@@ -335,13 +322,13 @@ Spontaneous.FieldTypes.ImageField = (function($, S) {
335
322
  return this.input().val();
336
323
  },
337
324
  cancel_edit: function() {
338
- this.image.attr('src', this.get('value'));
325
+ this.image.attr('src', this.original_value().src);
339
326
  },
340
327
  conflict_view: function(dialogue, conflict) {
341
328
  return new ImageFieldConflictView(dialogue, conflict);
342
329
  },
343
330
  original_value: function() {
344
- return this.value();
331
+ return this.value().original;
345
332
  },
346
333
  edited_value: function() {
347
334
  return this._edited_value;