rich 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (233) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +163 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/images/rich/images.png +0 -0
  5. data/app/assets/images/rich/plus-red.png +0 -0
  6. data/app/assets/images/rich/plus.png +0 -0
  7. data/app/assets/images/rich/x-red.png +0 -0
  8. data/app/assets/javascripts/rich/application.js +61 -0
  9. data/app/assets/javascripts/rich/base.js +51 -0
  10. data/app/assets/javascripts/rich/ckeditor_path.js +1 -0
  11. data/app/assets/javascripts/rich/uploader.js +59 -0
  12. data/app/assets/stylesheets/rich/application.css.scss +253 -0
  13. data/app/assets/stylesheets/rich/editor.css +20 -0
  14. data/app/assets/stylesheets/rich/files.css +4 -0
  15. data/app/assets/stylesheets/rich/mixins/reset.css.scss +58 -0
  16. data/app/controllers/rich/application_controller.rb +11 -0
  17. data/app/controllers/rich/files_controller.rb +107 -0
  18. data/app/helpers/rich/application_helper.rb +4 -0
  19. data/app/helpers/rich/files_helper.rb +4 -0
  20. data/app/inputs/rich_input.rb +14 -0
  21. data/app/models/rich/rich_image.rb +77 -0
  22. data/app/views/layouts/rich/application.html.erb +14 -0
  23. data/app/views/rich/files/_image.html.erb +9 -0
  24. data/app/views/rich/files/destroy.js.erb +1 -0
  25. data/app/views/rich/files/index.html.erb +29 -0
  26. data/app/views/rich/files/show.html.erb +1 -0
  27. data/config/routes.rb +5 -0
  28. data/db/migrate/20111002142937_create_rich_rich_images.rb +17 -0
  29. data/lib/generators/rich/install/install_generator.rb +34 -0
  30. data/lib/generators/rich/install/templates/rich.js +1 -0
  31. data/lib/generators/rich/install/templates/rich.rb.erb +69 -0
  32. data/lib/rich.rb +63 -0
  33. data/lib/rich/engine.rb +13 -0
  34. data/lib/rich/form_builder.rb +14 -0
  35. data/lib/rich/legacy_formtastic.rb +15 -0
  36. data/lib/rich/version.rb +3 -0
  37. data/lib/rich/view_helper.rb +48 -0
  38. data/lib/tasks/rich_tasks.rake +29 -0
  39. data/test/dummy/Rakefile +7 -0
  40. data/test/dummy/app/admin/dashboards.rb +38 -0
  41. data/test/dummy/app/admin/posts.rb +11 -0
  42. data/test/dummy/app/assets/javascripts/active_admin.js +1 -0
  43. data/test/dummy/app/assets/javascripts/application.js +9 -0
  44. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  45. data/test/dummy/app/assets/javascripts/rich.js +1 -0
  46. data/test/dummy/app/assets/stylesheets/active_admin.css.scss +10 -0
  47. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  48. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  49. data/test/dummy/app/assets/stylesheets/rich/editor.css +20 -0
  50. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  51. data/test/dummy/app/controllers/application_controller.rb +3 -0
  52. data/test/dummy/app/controllers/posts_controller.rb +83 -0
  53. data/test/dummy/app/helpers/application_helper.rb +2 -0
  54. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  55. data/test/dummy/app/models/admin_user.rb +9 -0
  56. data/test/dummy/app/models/post.rb +2 -0
  57. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  58. data/test/dummy/app/views/posts/_form.html.erb +29 -0
  59. data/test/dummy/app/views/posts/_formtastic_form.html.erb +10 -0
  60. data/test/dummy/app/views/posts/edit.html.erb +6 -0
  61. data/test/dummy/app/views/posts/index.html.erb +27 -0
  62. data/test/dummy/app/views/posts/new.html.erb +5 -0
  63. data/test/dummy/app/views/posts/show.html.erb +20 -0
  64. data/test/dummy/config.ru +4 -0
  65. data/test/dummy/config/application.rb +48 -0
  66. data/test/dummy/config/boot.rb +19 -0
  67. data/test/dummy/config/database.yml +25 -0
  68. data/test/dummy/config/environment.rb +5 -0
  69. data/test/dummy/config/environments/development.rb +32 -0
  70. data/test/dummy/config/environments/production.rb +62 -0
  71. data/test/dummy/config/environments/test.rb +39 -0
  72. data/test/dummy/config/initializers/active_admin.rb +102 -0
  73. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  74. data/test/dummy/config/initializers/devise.rb +211 -0
  75. data/test/dummy/config/initializers/formtastic.rb +80 -0
  76. data/test/dummy/config/initializers/inflections.rb +10 -0
  77. data/test/dummy/config/initializers/mime_types.rb +5 -0
  78. data/test/dummy/config/initializers/rich.rb +28 -0
  79. data/test/dummy/config/initializers/secret_token.rb +7 -0
  80. data/test/dummy/config/initializers/session_store.rb +8 -0
  81. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  82. data/test/dummy/config/locales/devise.en.yml +58 -0
  83. data/test/dummy/config/locales/en.yml +5 -0
  84. data/test/dummy/config/routes.rb +13 -0
  85. data/test/dummy/db/development.sqlite3 +0 -0
  86. data/test/dummy/db/migrate/20111001122048_create_posts.rb +11 -0
  87. data/test/dummy/db/migrate/20111003150957_create_rich_rich_images.rb +17 -0
  88. data/test/dummy/db/migrate/20111014123344_devise_create_admin_users.rb +31 -0
  89. data/test/dummy/db/migrate/20111014143348_create_admin_notes.rb +16 -0
  90. data/test/dummy/db/migrate/20111014143349_move_admin_notes_to_comments.rb +25 -0
  91. data/test/dummy/db/production.sqlite3 +0 -0
  92. data/test/dummy/db/schema.rb +67 -0
  93. data/test/dummy/log/development.log +72064 -0
  94. data/test/dummy/log/production.log +2417 -0
  95. data/test/dummy/public/404.html +26 -0
  96. data/test/dummy/public/422.html +26 -0
  97. data/test/dummy/public/500.html +26 -0
  98. data/test/dummy/public/favicon.ico +0 -0
  99. data/test/dummy/public/system/test +0 -0
  100. data/test/dummy/script/rails +6 -0
  101. data/test/dummy/test/fixtures/admin_users.yml +11 -0
  102. data/test/dummy/test/fixtures/posts.yml +11 -0
  103. data/test/dummy/test/functional/posts_controller_test.rb +49 -0
  104. data/test/dummy/test/unit/admin_user_test.rb +7 -0
  105. data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
  106. data/test/dummy/test/unit/post_test.rb +7 -0
  107. data/test/dummy/tmp/cache/assets/C2B/5B0/sprockets%2F0c71315129cf9540624929678219ee7b +0 -0
  108. data/test/dummy/tmp/cache/assets/C32/C40/sprockets%2Ff459d7671964c49e413971720514ba68 +0 -0
  109. data/test/dummy/tmp/cache/assets/C51/3D0/sprockets%2F110c288a88ab99a1399d35171079612c +0 -0
  110. data/test/dummy/tmp/cache/assets/C53/630/sprockets%2F0680b1b2c967d3c84970e3786800641c +0 -0
  111. data/test/dummy/tmp/cache/assets/C53/680/sprockets%2F03d11661470de7443c495783330d9ee7 +0 -0
  112. data/test/dummy/tmp/cache/assets/C7F/C10/sprockets%2F356f0929a286c961448d76c12a2e14b1 +0 -0
  113. data/test/dummy/tmp/cache/assets/C8D/E30/sprockets%2F24444bdc865de860f4b693233c973844 +0 -0
  114. data/test/dummy/tmp/cache/assets/C99/430/sprockets%2F1027b261dc3bd6202585ad4d830263c6 +0 -0
  115. data/test/dummy/tmp/cache/assets/CAB/440/sprockets%2Fed2218494b3b8488b7268c00e717a0c1 +0 -0
  116. data/test/dummy/tmp/cache/assets/CB3/920/sprockets%2Fc38c48651c972cee0be83538700535b4 +0 -0
  117. data/test/dummy/tmp/cache/assets/CB4/740/sprockets%2F36fd3817633b234824bc6577f25ffe01 +0 -0
  118. data/test/dummy/tmp/cache/assets/CBE/A80/sprockets%2F60bb9087aed9745744925f6ce01525d9 +0 -0
  119. data/test/dummy/tmp/cache/assets/CC4/040/sprockets%2F83a9f5f7314b761bbd7f1858d1998045 +0 -0
  120. data/test/dummy/tmp/cache/assets/CC4/590/sprockets%2F869369b5c848f745b23ba174ca9197a6 +0 -0
  121. data/test/dummy/tmp/cache/assets/CC4/BF0/sprockets%2F93d5b131135a09e48369e02ba5c01b0a +0 -0
  122. data/test/dummy/tmp/cache/assets/CC7/5F0/sprockets%2F8bf37168fb70e08b9e4578e72739a543 +0 -0
  123. data/test/dummy/tmp/cache/assets/CD5/340/sprockets%2Fae698307143f445c5011d6ad90b4cf60 +0 -0
  124. data/test/dummy/tmp/cache/assets/CDD/D50/sprockets%2Faee2002e4369cf20946112efcb776089 +0 -0
  125. data/test/dummy/tmp/cache/assets/CE4/510/sprockets%2F3271d0cbd86553a56768f4d130ec5e59 +0 -0
  126. data/test/dummy/tmp/cache/assets/CE8/310/sprockets%2F4ab24984d5862f28160f1f4f067e2ef4 +0 -0
  127. data/test/dummy/tmp/cache/assets/CEC/1A0/sprockets%2F87fdead6014b961bb870b5931890d677 +0 -0
  128. data/test/dummy/tmp/cache/assets/CED/2E0/sprockets%2F82382552d084b0569dfd88e34d1cb7e8 +0 -0
  129. data/test/dummy/tmp/cache/assets/CF0/1D0/sprockets%2F6fc757c2c8329244ca95d6909865bbc2 +0 -0
  130. data/test/dummy/tmp/cache/assets/CF0/A80/sprockets%2Fd1de761043f6d817880d4b876a73bf87 +0 -0
  131. data/test/dummy/tmp/cache/assets/CF9/EC0/sprockets%2F04ba1f02c639d30c53eb7b51640b937a +0 -0
  132. data/test/dummy/tmp/cache/assets/CFB/870/sprockets%2Feb5658a4a2c12e389e4c405f0113a0a7 +0 -0
  133. data/test/dummy/tmp/cache/assets/D00/7A0/sprockets%2F3ee0dfa5072b54505817cb4bf934201e +0 -0
  134. data/test/dummy/tmp/cache/assets/D00/C00/sprockets%2F0a61e8d7b11a463083da24605e65d5dd +0 -0
  135. data/test/dummy/tmp/cache/assets/D07/B30/sprockets%2F0640b99ec5e303921065ac4c0ff8b7f0 +0 -0
  136. data/test/dummy/tmp/cache/assets/D11/D20/sprockets%2Fcac21eac42152981882bf9e489316af4 +0 -0
  137. data/test/dummy/tmp/cache/assets/D13/970/sprockets%2F1fd634278255bc58382a590fd5cf24cc +0 -0
  138. data/test/dummy/tmp/cache/assets/D14/980/sprockets%2F85dc72862eb259cd954ab41369bc6a32 +0 -0
  139. data/test/dummy/tmp/cache/assets/D15/F40/sprockets%2F83d1a8006e470e79f75592d63bdedc04 +0 -0
  140. data/test/dummy/tmp/cache/assets/D16/C70/sprockets%2Fd3046a8979c64b4311a728da2ee8b88b +0 -0
  141. data/test/dummy/tmp/cache/assets/D1D/1A0/sprockets%2Fc2e11e4152a31726c2cbab7333c74ba2 +0 -0
  142. data/test/dummy/tmp/cache/assets/D1D/500/sprockets%2F71e1de34b5d39e4c637f0fb0619696f7 +0 -0
  143. data/test/dummy/tmp/cache/assets/D1F/B30/sprockets%2F6351ed750b17ed0f99fa01c32ff98878 +0 -0
  144. data/test/dummy/tmp/cache/assets/D2A/FA0/sprockets%2Fa5403e1fe15018cddc4435c3cac84910 +0 -0
  145. data/test/dummy/tmp/cache/assets/D2E/090/sprockets%2Fc54283e81ce52bf9d542ab12492a01ad +0 -0
  146. data/test/dummy/tmp/cache/assets/D2F/390/sprockets%2Fa02968dd653b0e650fc202c33ff42fc0 +0 -0
  147. data/test/dummy/tmp/cache/assets/D30/E90/sprockets%2F3a19bbe0320337a6bf29177da71bf1e7 +0 -0
  148. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  149. data/test/dummy/tmp/cache/assets/D34/080/sprockets%2Fe398005214c8d65a54fc19fca2c00c8b +0 -0
  150. data/test/dummy/tmp/cache/assets/D37/9B0/sprockets%2F0de49dd3031c50c7cf2ef74d6c392530 +0 -0
  151. data/test/dummy/tmp/cache/assets/D38/540/sprockets%2F86e1ad844bc9df4491a2a52b870421db +0 -0
  152. data/test/dummy/tmp/cache/assets/D3C/070/sprockets%2F2377eb8a729535e35abd593a6fc00ba6 +0 -0
  153. data/test/dummy/tmp/cache/assets/D3E/B20/sprockets%2F1f79ee84bd6d74d100c5cb018b662b67 +0 -0
  154. data/test/dummy/tmp/cache/assets/D40/A40/sprockets%2Feb59c65dcb7136f1cd134dac36794822 +0 -0
  155. data/test/dummy/tmp/cache/assets/D48/9F0/sprockets%2F6ed3c460867ee6d748edad50818d332a +0 -0
  156. data/test/dummy/tmp/cache/assets/D4D/650/sprockets%2Ff51d1875ad5829c7bf3ff03e920497be +0 -0
  157. data/test/dummy/tmp/cache/assets/D52/9B0/sprockets%2F736738bf59f956eb15c4bff06d980be0 +0 -0
  158. data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  159. data/test/dummy/tmp/cache/assets/D55/5C0/sprockets%2F97b52c1c0d1a002ac6fb9d702b7ab625 +0 -0
  160. data/test/dummy/tmp/cache/assets/D61/940/sprockets%2Fca03651b8f5fb1416c9945cda71ab22d +0 -0
  161. data/test/dummy/tmp/cache/assets/D6C/F90/sprockets%2Fcb34e531e41b981cf6ca2a5c7e70f890 +0 -0
  162. data/test/dummy/tmp/cache/assets/D78/9D0/sprockets%2Ff56eced46698105ad2e9d46b1e2ee228 +0 -0
  163. data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  164. data/test/dummy/tmp/cache/assets/D86/710/sprockets%2F409dbeb796f68c91b60fe29aef7817e3 +0 -0
  165. data/test/dummy/tmp/cache/assets/D95/D50/sprockets%2F15e32d81de6597aad23d67d2cd1d0b7a +0 -0
  166. data/test/dummy/tmp/cache/assets/D96/E90/sprockets%2Ff43f31dd3e2d9f8eda108c01c42bd457 +0 -0
  167. data/test/dummy/tmp/cache/assets/D98/BF0/sprockets%2F132c8dc4d7ba67c8faee429e5064a02c +0 -0
  168. data/test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b +0 -0
  169. data/test/dummy/tmp/cache/assets/DB9/240/sprockets%2F689d916cf738bdb67e176fced176e3af +0 -0
  170. data/test/dummy/tmp/cache/assets/DBA/AB0/sprockets%2F8be4208fd77cb5ef9b6f77e5fcf18670 +0 -0
  171. data/test/dummy/tmp/cache/assets/DC5/450/sprockets%2F82d256faac73d9a3ec5c4f1d11be525d +0 -0
  172. data/test/dummy/tmp/cache/assets/DC6/890/sprockets%2F41b80fcec0c085408c41ecadc877df0f +0 -0
  173. data/test/dummy/tmp/cache/assets/DCE/890/sprockets%2Ffd6332ebff4dab12cdf448e195d6b381 +0 -0
  174. data/test/dummy/tmp/cache/assets/DD7/B50/sprockets%2F7effa89c4b23ab60109f969a9a66ccbc +0 -0
  175. data/test/dummy/tmp/cache/assets/DDE/420/sprockets%2Ffb8b186d5bf0307f86f65fc787d2adeb +0 -0
  176. data/test/dummy/tmp/cache/assets/DE7/7C0/sprockets%2F75aa5c034633c20d9c4d1bffbbbdc23d +0 -0
  177. data/test/dummy/tmp/cache/assets/DF0/680/sprockets%2F5e8210564bdda6fcef1fa19aa04b5e6a +0 -0
  178. data/test/dummy/tmp/cache/assets/DFB/0C0/sprockets%2Fd35f36529da4a7a4cf67cdbe0a3bf27e +0 -0
  179. data/test/dummy/tmp/cache/assets/DFF/4D0/sprockets%2F0d7eae306cc4e83ae549e96b1b6da8db +0 -0
  180. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  181. data/test/dummy/tmp/cache/assets/E06/920/sprockets%2F6baa37d1c26468aef4fe5fe4bf982fa3 +0 -0
  182. data/test/dummy/tmp/cache/assets/E09/680/sprockets%2Fff9edf3a74399a0818b02efcff3ad0f7 +0 -0
  183. data/test/dummy/tmp/cache/assets/E0B/8B0/sprockets%2F35f64adcaf8786c81c0def5dd2ff47d3 +0 -0
  184. data/test/dummy/tmp/cache/assets/E2F/E90/sprockets%2Ff4b19e42c92a93dcaaec9fe6eae4081d +0 -0
  185. data/test/dummy/tmp/cache/sass/12aeefe9aeb071fe3d12ce952e92dfc373eac603/_base.css.scssc +0 -0
  186. data/test/dummy/tmp/cache/sass/12aeefe9aeb071fe3d12ce952e92dfc373eac603/_forms.css.scssc +0 -0
  187. data/test/dummy/tmp/cache/sass/12aeefe9aeb071fe3d12ce952e92dfc373eac603/_header.css.scssc +0 -0
  188. data/test/dummy/tmp/cache/sass/12aeefe9aeb071fe3d12ce952e92dfc373eac603/_mixins.css.scssc +0 -0
  189. data/test/dummy/tmp/cache/sass/12aeefe9aeb071fe3d12ce952e92dfc373eac603/_typography.css.scssc +0 -0
  190. data/test/dummy/tmp/cache/sass/4042a1944de48cf2066ee5650a418db4b1d7f0a1/_base.css.scssc +0 -0
  191. data/test/dummy/tmp/cache/sass/4042a1944de48cf2066ee5650a418db4b1d7f0a1/_forms.css.scssc +0 -0
  192. data/test/dummy/tmp/cache/sass/4042a1944de48cf2066ee5650a418db4b1d7f0a1/_header.css.scssc +0 -0
  193. data/test/dummy/tmp/cache/sass/4042a1944de48cf2066ee5650a418db4b1d7f0a1/_mixins.css.scssc +0 -0
  194. data/test/dummy/tmp/cache/sass/4042a1944de48cf2066ee5650a418db4b1d7f0a1/_typography.css.scssc +0 -0
  195. data/test/dummy/tmp/cache/sass/4905b1148d31ac1351d8ccf185fbd2494a596795/application.css.scssc +0 -0
  196. data/test/dummy/tmp/cache/sass/4f667cf792197ab0525ceee5448b803db81dab90/_comments.css.scssc +0 -0
  197. data/test/dummy/tmp/cache/sass/4f667cf792197ab0525ceee5448b803db81dab90/_date_picker.css.scssc +0 -0
  198. data/test/dummy/tmp/cache/sass/4f667cf792197ab0525ceee5448b803db81dab90/_flash_messages.css.scssc +0 -0
  199. data/test/dummy/tmp/cache/sass/4f667cf792197ab0525ceee5448b803db81dab90/_tables.css.scssc +0 -0
  200. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_all.css.scssc +0 -0
  201. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_buttons.css.scssc +0 -0
  202. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_gradients.css.scssc +0 -0
  203. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_icons.css.scssc +0 -0
  204. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_reset.css.scssc +0 -0
  205. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_rounded.css.scssc +0 -0
  206. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_sections.css.scssc +0 -0
  207. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_shadows.css.scssc +0 -0
  208. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_utilities.scssc +0 -0
  209. data/test/dummy/tmp/cache/sass/76bbe61bc8118aa78e4db81878cf11d79a964373/_variables.css.scssc +0 -0
  210. data/test/dummy/tmp/cache/sass/9b29130c260e464c0ad2c23c77a58da7c3f9eec7/active_admin.css.scssc +0 -0
  211. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_all.css.scssc +0 -0
  212. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_buttons.css.scssc +0 -0
  213. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_gradients.css.scssc +0 -0
  214. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_icons.css.scssc +0 -0
  215. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_reset.css.scssc +0 -0
  216. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_rounded.css.scssc +0 -0
  217. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_sections.css.scssc +0 -0
  218. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_shadows.css.scssc +0 -0
  219. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_utilities.scssc +0 -0
  220. data/test/dummy/tmp/cache/sass/dc62b2f303532e1c32e9571414568d9c2570f335/_variables.css.scssc +0 -0
  221. data/test/dummy/tmp/cache/sass/ddba83cb438190ca32bf384b6eea0c3ef82ae9fa/reset.css.scssc +0 -0
  222. data/test/dummy/tmp/cache/sass/dde0527ffef9ea409c8e8afb2306d11f2e0b6500/_comments.css.scssc +0 -0
  223. data/test/dummy/tmp/cache/sass/dde0527ffef9ea409c8e8afb2306d11f2e0b6500/_date_picker.css.scssc +0 -0
  224. data/test/dummy/tmp/cache/sass/dde0527ffef9ea409c8e8afb2306d11f2e0b6500/_flash_messages.css.scssc +0 -0
  225. data/test/dummy/tmp/cache/sass/dde0527ffef9ea409c8e8afb2306d11f2e0b6500/_tables.css.scssc +0 -0
  226. data/test/fixtures/rich/rich_images.yml +11 -0
  227. data/test/functional/rich/files_controller_test.rb +9 -0
  228. data/test/integration/navigation_test.rb +10 -0
  229. data/test/rich_test.rb +7 -0
  230. data/test/test_helper.rb +10 -0
  231. data/test/unit/helpers/rich/files_helper_test.rb +6 -0
  232. data/test/unit/rich/rich_image_test.rb +9 -0
  233. metadata +603 -0
@@ -0,0 +1,2417 @@
1
+ Compiled jquery-ui.min.js (23ms) (pid 11930)
2
+ Compiled application.js (27ms) (pid 12283)
3
+ Compiled jquery.js (79ms) (pid 12283)
4
+ Compiled jquery_ujs.js (15ms) (pid 12283)
5
+ Compiled active_admin.js (2ms) (pid 12283)
6
+ Compiled active_admin/base.js (19ms) (pid 12283)
7
+ Compiled active_admin/vendor.js (4ms) (pid 12283)
8
+ Compiled posts.js (31ms) (pid 12283)
9
+ Compiled rich.js (4ms) (pid 12283)
10
+ Compiled rich/base.js (12ms) (pid 12283)
11
+ Compiled rich/ckeditor_path.js (14ms) (pid 12283)
12
+ Compiled ckeditor/ckeditor.js (97ms) (pid 12283)
13
+ Compiled ckeditor/adapters/jquery.js (13ms) (pid 12283)
14
+ Compiled application.js (8ms) (pid 12310)
15
+ Compiled jquery.js (7ms) (pid 12310)
16
+ Compiled jquery_ujs.js (1ms) (pid 12310)
17
+ Compiled active_admin.js (2ms) (pid 12310)
18
+ Compiled active_admin/base.js (2ms) (pid 12310)
19
+ Compiled active_admin/vendor.js (3ms) (pid 12310)
20
+ Compiled posts.js (12ms) (pid 12310)
21
+ Compiled rich.js (6ms) (pid 12310)
22
+ Compiled rich/base.js (36ms) (pid 12310)
23
+ Compiled rich/ckeditor_path.js (0ms) (pid 12310)
24
+ Compiled ckeditor/ckeditor.js (95ms) (pid 12310)
25
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 12310)
26
+ Compiled application.js (7ms) (pid 12326)
27
+ Compiled jquery.js (5ms) (pid 12326)
28
+ Compiled jquery_ujs.js (1ms) (pid 12326)
29
+ Compiled active_admin.js (2ms) (pid 12326)
30
+ Compiled active_admin/base.js (2ms) (pid 12326)
31
+ Compiled active_admin/vendor.js (2ms) (pid 12326)
32
+ Compiled posts.js (0ms) (pid 12326)
33
+ Compiled rich.js (4ms) (pid 12326)
34
+ Compiled rich/base.js (14ms) (pid 12326)
35
+ Compiled rich/ckeditor_path.js (0ms) (pid 12326)
36
+ Compiled ckeditor/ckeditor.js (79ms) (pid 12326)
37
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 12326)
38
+ Compiled application.js (13ms) (pid 12350)
39
+ Compiled jquery.js (7ms) (pid 12350)
40
+ Compiled jquery_ujs.js (1ms) (pid 12350)
41
+ Compiled active_admin.js (2ms) (pid 12350)
42
+ Compiled active_admin/base.js (4ms) (pid 12350)
43
+ Compiled active_admin/vendor.js (4ms) (pid 12350)
44
+ Compiled posts.js (1ms) (pid 12350)
45
+ Compiled rich.js (7ms) (pid 12350)
46
+ Compiled rich/base.js (20ms) (pid 12350)
47
+ Compiled rich/ckeditor_path.js (0ms) (pid 12350)
48
+ Compiled ckeditor/ckeditor.js (90ms) (pid 12350)
49
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 12350)
50
+ Compiled application.js (8ms) (pid 12549)
51
+ Compiled jquery.js (10ms) (pid 12549)
52
+ Compiled jquery_ujs.js (1ms) (pid 12549)
53
+ Compiled active_admin.js (3ms) (pid 12549)
54
+ Compiled active_admin/base.js (2ms) (pid 12549)
55
+ Compiled active_admin/vendor.js (10ms) (pid 12549)
56
+ Compiled posts.js (0ms) (pid 12549)
57
+ Compiled rich.js (4ms) (pid 12549)
58
+ Compiled rich/base.js (12ms) (pid 12549)
59
+ Compiled rich/ckeditor_path.js (0ms) (pid 12549)
60
+ Compiled ckeditor/ckeditor.js (7ms) (pid 12549)
61
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 12549)
62
+ Compiled application.css (24ms) (pid 12549)
63
+ Compiled active_admin.css (1657ms) (pid 12549)
64
+ Compiled posts.css (0ms) (pid 12549)
65
+ Compiled rich/editor.css (0ms) (pid 12549)
66
+ Compiled scaffold.css (0ms) (pid 12549)
67
+ Compiled rich/application.js (7ms) (pid 12549)
68
+ Compiled rich/uploader.js (0ms) (pid 12549)
69
+ Compiled rich/application.css (137ms) (pid 12549)
70
+ Compiled rich/mixins/reset.css (76ms) (pid 12549)
71
+ Compiled application.js (7ms) (pid 12400)
72
+ Compiled jquery.js (6ms) (pid 12400)
73
+ Compiled jquery_ujs.js (1ms) (pid 12400)
74
+ Compiled active_admin.js (2ms) (pid 12400)
75
+ Compiled active_admin/base.js (2ms) (pid 12400)
76
+ Compiled active_admin/vendor.js (2ms) (pid 12400)
77
+ Compiled posts.js (0ms) (pid 12400)
78
+ Compiled rich.js (4ms) (pid 12400)
79
+ Compiled rich/base.js (88ms) (pid 12400)
80
+ Compiled rich/ckeditor_path.js (0ms) (pid 12400)
81
+ Compiled ckeditor/ckeditor.js (7ms) (pid 12400)
82
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 12400)
83
+ Compiled application.css (24ms) (pid 12400)
84
+ Compiled active_admin.css (1976ms) (pid 12400)
85
+ Compiled posts.css (28ms) (pid 12400)
86
+ Compiled rich/editor.css (23ms) (pid 12400)
87
+ Compiled scaffold.css (27ms) (pid 12400)
88
+ Compiled rich/application.js (31ms) (pid 12400)
89
+ Compiled rich/uploader.js (1ms) (pid 12400)
90
+ Compiled rich/application.css (157ms) (pid 12400)
91
+ Compiled rich/mixins/reset.css (97ms) (pid 12400)
92
+
93
+
94
+ Started GET "/posts/2/edit" for 127.0.0.1 at Sat Oct 15 21:51:46 +0200 2011
95
+ Processing by PostsController#edit as HTML
96
+ Parameters: {"id"=>"2"}
97
+ Completed 500 Internal Server Error in 1ms
98
+
99
+ ActiveRecord::StatementInvalid (Could not find table 'posts'):
100
+ app/controllers/posts_controller.rb:37:in `edit'
101
+
102
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
103
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
104
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.8ms)
105
+
106
+
107
+ Started GET "/posts/2/edit" for 127.0.0.1 at Sat Oct 15 21:52:12 +0200 2011
108
+ Processing by PostsController#edit as HTML
109
+ Parameters: {"id"=>"2"}
110
+ Rendered posts/_formtastic_form.html.erb (13.3ms)
111
+ Rendered posts/edit.html.erb within layouts/application (19.0ms)
112
+ Completed 200 OK in 44ms (Views: 38.5ms | ActiveRecord: 0.6ms)
113
+
114
+
115
+ Started GET "/assets/application-dc6b60bc59948be3819034cbf6196757.css" for 127.0.0.1 at Sat Oct 15 21:52:12 +0200 2011
116
+
117
+ ActionController::RoutingError (No route matches [GET] "/assets/application-dc6b60bc59948be3819034cbf6196757.css"):
118
+
119
+
120
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
121
+
122
+
123
+ Started GET "/assets/application-126f7ce66d089a8bd298479a32e27e16.js" for 127.0.0.1 at Sat Oct 15 21:52:12 +0200 2011
124
+
125
+ ActionController::RoutingError (No route matches [GET] "/assets/application-126f7ce66d089a8bd298479a32e27e16.js"):
126
+
127
+
128
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
129
+
130
+
131
+ Started GET "/posts" for 127.0.0.1 at Sat Oct 15 21:52:17 +0200 2011
132
+ Processing by PostsController#index as HTML
133
+ Rendered posts/index.html.erb within layouts/application (6.6ms)
134
+ Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.2ms)
135
+
136
+
137
+ Started GET "/assets/application-dc6b60bc59948be3819034cbf6196757.css" for 127.0.0.1 at Sat Oct 15 21:52:17 +0200 2011
138
+
139
+ ActionController::RoutingError (No route matches [GET] "/assets/application-dc6b60bc59948be3819034cbf6196757.css"):
140
+
141
+
142
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
143
+
144
+
145
+ Started GET "/assets/application-126f7ce66d089a8bd298479a32e27e16.js" for 127.0.0.1 at Sat Oct 15 21:52:17 +0200 2011
146
+
147
+ ActionController::RoutingError (No route matches [GET] "/assets/application-126f7ce66d089a8bd298479a32e27e16.js"):
148
+
149
+
150
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
151
+
152
+
153
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 21:52:20 +0200 2011
154
+ Processing by PostsController#edit as HTML
155
+ Parameters: {"id"=>"1"}
156
+ Rendered posts/_formtastic_form.html.erb (12.0ms)
157
+ Rendered posts/edit.html.erb within layouts/application (12.9ms)
158
+ Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.1ms)
159
+
160
+
161
+ Started GET "/assets/application-dc6b60bc59948be3819034cbf6196757.css" for 127.0.0.1 at Sat Oct 15 21:52:20 +0200 2011
162
+
163
+ ActionController::RoutingError (No route matches [GET] "/assets/application-dc6b60bc59948be3819034cbf6196757.css"):
164
+
165
+
166
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
167
+
168
+
169
+ Started GET "/assets/application-126f7ce66d089a8bd298479a32e27e16.js" for 127.0.0.1 at Sat Oct 15 21:52:20 +0200 2011
170
+
171
+ ActionController::RoutingError (No route matches [GET] "/assets/application-126f7ce66d089a8bd298479a32e27e16.js"):
172
+
173
+
174
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
175
+ Compiled application.js (11ms) (pid 12996)
176
+ Compiled jquery.js (6ms) (pid 12996)
177
+ Compiled jquery_ujs.js (1ms) (pid 12996)
178
+ Compiled active_admin.js (19ms) (pid 12996)
179
+ Compiled active_admin/base.js (13ms) (pid 12996)
180
+ Compiled active_admin/vendor.js (2ms) (pid 12996)
181
+ Compiled posts.js (0ms) (pid 12996)
182
+ Compiled rich.js (6ms) (pid 12996)
183
+ Compiled rich/base.js (39ms) (pid 12996)
184
+ Compiled rich/ckeditor_path.js (2ms) (pid 12996)
185
+ Compiled ckeditor/ckeditor.js (12ms) (pid 12996)
186
+ Compiled ckeditor/adapters/jquery.js (1ms) (pid 12996)
187
+ Compiled application.css (5ms) (pid 12996)
188
+ Compiled active_admin.css (1630ms) (pid 12996)
189
+ Compiled posts.css (0ms) (pid 12996)
190
+ Compiled rich/editor.css (0ms) (pid 12996)
191
+ Compiled scaffold.css (0ms) (pid 12996)
192
+ Compiled rich/application.js (6ms) (pid 12996)
193
+ Compiled rich/uploader.js (0ms) (pid 12996)
194
+ Compiled rich/application.css (197ms) (pid 12996)
195
+ Compiled rich/mixins/reset.css (75ms) (pid 12996)
196
+ Compiled application.js (19ms) (pid 12822)
197
+ Compiled jquery.js (56ms) (pid 12822)
198
+ Compiled jquery_ujs.js (1ms) (pid 12822)
199
+ Compiled active_admin.js (3ms) (pid 12822)
200
+ Compiled active_admin/base.js (2ms) (pid 12822)
201
+ Compiled active_admin/vendor.js (3ms) (pid 12822)
202
+ Compiled posts.js (0ms) (pid 12822)
203
+ Compiled rich.js (5ms) (pid 12822)
204
+ Compiled rich/base.js (21ms) (pid 12822)
205
+ Compiled rich/ckeditor_path.js (0ms) (pid 12822)
206
+ Compiled ckeditor/ckeditor.js (18ms) (pid 12822)
207
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 12822)
208
+ Compiled application.css (6ms) (pid 12822)
209
+ Compiled active_admin.css (1697ms) (pid 12822)
210
+ Compiled posts.css (0ms) (pid 12822)
211
+ Compiled rich/editor.css (0ms) (pid 12822)
212
+ Compiled scaffold.css (0ms) (pid 12822)
213
+ Compiled rich/application.js (6ms) (pid 12822)
214
+ Compiled rich/uploader.js (0ms) (pid 12822)
215
+ Compiled rich/application.css (228ms) (pid 12822)
216
+ Compiled rich/mixins/reset.css (242ms) (pid 12822)
217
+
218
+
219
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 21:55:53 +0200 2011
220
+ Processing by PostsController#edit as HTML
221
+ Parameters: {"id"=>"1"}
222
+ Rendered posts/_formtastic_form.html.erb (13.8ms)
223
+ Rendered posts/edit.html.erb within layouts/application (21.4ms)
224
+ Completed 200 OK in 71ms (Views: 65.1ms | ActiveRecord: 0.6ms)
225
+
226
+
227
+ Started GET "/assets/application-dc6b60bc59948be3819034cbf6196757.css" for 127.0.0.1 at Sat Oct 15 21:55:53 +0200 2011
228
+
229
+ ActionController::RoutingError (No route matches [GET] "/assets/application-dc6b60bc59948be3819034cbf6196757.css"):
230
+
231
+
232
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
233
+
234
+
235
+ Started GET "/assets/application-126f7ce66d089a8bd298479a32e27e16.js" for 127.0.0.1 at Sat Oct 15 21:55:53 +0200 2011
236
+
237
+ ActionController::RoutingError (No route matches [GET] "/assets/application-126f7ce66d089a8bd298479a32e27e16.js"):
238
+
239
+
240
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.4ms)
241
+
242
+
243
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 21:55:55 +0200 2011
244
+ Processing by PostsController#edit as HTML
245
+ Parameters: {"id"=>"1"}
246
+ Rendered posts/_formtastic_form.html.erb (5.9ms)
247
+ Rendered posts/edit.html.erb within layouts/application (6.9ms)
248
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
249
+
250
+
251
+ Started GET "/assets/application-126f7ce66d089a8bd298479a32e27e16.js" for 127.0.0.1 at Sat Oct 15 21:55:55 +0200 2011
252
+
253
+ ActionController::RoutingError (No route matches [GET] "/assets/application-126f7ce66d089a8bd298479a32e27e16.js"):
254
+
255
+
256
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
257
+
258
+
259
+ Started GET "/assets/application-dc6b60bc59948be3819034cbf6196757.css" for 127.0.0.1 at Sat Oct 15 21:55:55 +0200 2011
260
+
261
+ ActionController::RoutingError (No route matches [GET] "/assets/application-dc6b60bc59948be3819034cbf6196757.css"):
262
+
263
+
264
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
265
+
266
+
267
+ Started GET "/assets/application-126f7ce66d089a8bd298479a32e27e16.js" for 127.0.0.1 at Sat Oct 15 21:57:03 +0200 2011
268
+
269
+ ActionController::RoutingError (No route matches [GET] "/assets/application-126f7ce66d089a8bd298479a32e27e16.js"):
270
+
271
+
272
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
273
+
274
+
275
+ Started GET "/system/" for 127.0.0.1 at Sat Oct 15 21:57:32 +0200 2011
276
+
277
+ ActionController::RoutingError (No route matches [GET] "/system"):
278
+
279
+
280
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
281
+
282
+
283
+ Started GET "/system/images/1/large/the-naked-home.png" for 127.0.0.1 at Sat Oct 15 21:57:48 +0200 2011
284
+
285
+ ActionController::RoutingError (No route matches [GET] "/system/images/1/large/the-naked-home.png"):
286
+
287
+
288
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
289
+
290
+
291
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:01:02 +0200 2011
292
+ Processing by PostsController#edit as HTML
293
+ Parameters: {"id"=>"1"}
294
+ Rendered posts/_formtastic_form.html.erb (12.2ms)
295
+ Rendered posts/edit.html.erb within layouts/application (17.7ms)
296
+ Completed 200 OK in 42ms (Views: 36.3ms | ActiveRecord: 0.6ms)
297
+
298
+
299
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:01:03 +0200 2011
300
+
301
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/config.js"):
302
+
303
+
304
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
305
+
306
+
307
+ Started GET "/assets/ckeditor/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:01:03 +0200 2011
308
+
309
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/lang/en.js"):
310
+
311
+
312
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
313
+
314
+
315
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:01:03 +0200 2011
316
+
317
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/skins/kama/editor.css"):
318
+
319
+
320
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
321
+
322
+
323
+ Started GET "/assets/ckeditor/plugins/stylesheetparser/plugin.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:01:03 +0200 2011
324
+
325
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/plugins/stylesheetparser/plugin.js"):
326
+
327
+
328
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
329
+
330
+
331
+ Started GET "/assets/" for 127.0.0.1 at Sat Oct 15 22:07:15 +0200 2011
332
+
333
+ ActionController::RoutingError (No route matches [GET] "/assets"):
334
+
335
+
336
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
337
+
338
+
339
+ Started GET "/assets/ckeditor/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:07:43 +0200 2011
340
+
341
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/ckeditor.js"):
342
+
343
+
344
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
345
+
346
+
347
+ Started GET "/assets/ckeditor/ckeditor/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:07:54 +0200 2011
348
+
349
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/ckeditor/ckeditor.js"):
350
+
351
+
352
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
353
+
354
+
355
+ Started GET "/assets/rich/ckeditor/ckeditor/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:07:59 +0200 2011
356
+
357
+ ActionController::RoutingError (No route matches [GET] "/assets/rich/ckeditor/ckeditor/ckeditor.js"):
358
+
359
+
360
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
361
+
362
+
363
+ Started GET "/assets/rich/ckeditor/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:08:02 +0200 2011
364
+
365
+ ActionController::RoutingError (No route matches [GET] "/assets/rich/ckeditor/ckeditor.js"):
366
+
367
+
368
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
369
+
370
+
371
+ Started GET "/assets/rich/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:08:04 +0200 2011
372
+
373
+ ActionController::RoutingError (No route matches [GET] "/assets/rich/ckeditor.js"):
374
+
375
+
376
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
377
+
378
+
379
+ Started GET "/assets/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:08:07 +0200 2011
380
+
381
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor.js"):
382
+
383
+
384
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
385
+
386
+
387
+ Started GET "/assets/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:09:13 +0200 2011
388
+
389
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor.js"):
390
+
391
+
392
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.2ms)
393
+
394
+
395
+ Started GET "/assets/ckeditor/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:09:17 +0200 2011
396
+
397
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/ckeditor.js"):
398
+
399
+
400
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
401
+
402
+
403
+ Started GET "/assets/ckeditor/ckeditor/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:09:23 +0200 2011
404
+
405
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/ckeditor/ckeditor.js"):
406
+
407
+
408
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
409
+
410
+
411
+ Started GET "/assets/rich/ckeditor/ckeditor/ckeditor.js" for 127.0.0.1 at Sat Oct 15 22:09:26 +0200 2011
412
+
413
+ ActionController::RoutingError (No route matches [GET] "/assets/rich/ckeditor/ckeditor/ckeditor.js"):
414
+
415
+
416
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
417
+
418
+
419
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:21:55 +0200 2011
420
+ Processing by PostsController#edit as HTML
421
+ Parameters: {"id"=>"1"}
422
+ Rendered posts/_formtastic_form.html.erb (14.1ms)
423
+ Rendered posts/edit.html.erb within layouts/application (21.6ms)
424
+ Completed 200 OK in 45ms (Views: 39.6ms | ActiveRecord: 0.6ms)
425
+
426
+
427
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:21:56 +0200 2011
428
+ Compiled ckeditor/config.js (25ms) (pid 13525)
429
+ Served asset /ckeditor/config.js - 200 OK (149ms)
430
+
431
+
432
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:21:56 +0200 2011
433
+ Compiled ckeditor/skins/kama/editor.css (35ms) (pid 13525)
434
+ Error compiling asset ckeditor/skins/kama/editor.css:
435
+ Sass::SyntaxError: Invalid CSS after "...ke_icon{filter:": expected expression (e.g. 1px, bold), was ";}.cke_skin_kam..."
436
+ (in /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/vendor/assets/ckeditor/ckeditor/skins/kama/editor.css)
437
+ Served asset /ckeditor/skins/kama/editor.css - 500 Internal Server Error
438
+
439
+
440
+
441
+ Started GET "/assets/ckeditor/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:21:56 +0200 2011
442
+ Compiled ckeditor/lang/en.js (2ms) (pid 13525)
443
+ Served asset /ckeditor/lang/en.js - 200 OK (251ms)
444
+
445
+
446
+ Started GET "/assets/ckeditor/plugins/stylesheetparser/plugin.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:21:57 +0200 2011
447
+ Compiled ckeditor/plugins/stylesheetparser/plugin.js (15ms) (pid 13525)
448
+ Served asset /ckeditor/plugins/stylesheetparser/plugin.js - 200 OK (118ms)
449
+
450
+
451
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 22:21:57 +0200 2011
452
+ Served asset /rich/editor.css - 304 Not Modified (8ms)
453
+
454
+
455
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:21:57 +0200 2011
456
+ Processing by PostsController#edit as HTML
457
+ Parameters: {"id"=>"1"}
458
+ Rendered posts/_formtastic_form.html.erb (9.0ms)
459
+ Rendered posts/edit.html.erb within layouts/application (10.4ms)
460
+ Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.2ms)
461
+
462
+
463
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:21:57 +0200 2011
464
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
465
+
466
+
467
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:21:58 +0200 2011
468
+ Error compiling asset ckeditor/skins/kama/editor.css:
469
+ Sass::SyntaxError: Invalid CSS after "...ke_icon{filter:": expected expression (e.g. 1px, bold), was ";}.cke_skin_kam..."
470
+ (in /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/vendor/assets/ckeditor/ckeditor/skins/kama/editor.css)
471
+ Served asset /ckeditor/skins/kama/editor.css - 500 Internal Server Error
472
+
473
+
474
+
475
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 22:21:58 +0200 2011
476
+ Served asset /rich/editor.css - 304 Not Modified (0ms)
477
+
478
+
479
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:21:59 +0200 2011
480
+ Processing by PostsController#edit as HTML
481
+ Parameters: {"id"=>"1"}
482
+ Rendered posts/_formtastic_form.html.erb (6.1ms)
483
+ Rendered posts/edit.html.erb within layouts/application (7.3ms)
484
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms)
485
+
486
+
487
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:22:00 +0200 2011
488
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
489
+
490
+
491
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:22:00 +0200 2011
492
+ Error compiling asset ckeditor/skins/kama/editor.css:
493
+ Sass::SyntaxError: Invalid CSS after "...ke_icon{filter:": expected expression (e.g. 1px, bold), was ";}.cke_skin_kam..."
494
+ (in /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/vendor/assets/ckeditor/ckeditor/skins/kama/editor.css)
495
+ Served asset /ckeditor/skins/kama/editor.css - 500 Internal Server Error
496
+
497
+
498
+
499
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 22:22:00 +0200 2011
500
+ Served asset /rich/editor.css - 304 Not Modified (0ms)
501
+
502
+
503
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:28:39 +0200 2011
504
+ Processing by PostsController#edit as HTML
505
+ Parameters: {"id"=>"1"}
506
+ Rendered posts/_formtastic_form.html.erb (14.1ms)
507
+ Rendered posts/edit.html.erb within layouts/application (19.8ms)
508
+ Completed 200 OK in 45ms (Views: 38.3ms | ActiveRecord: 0.6ms)
509
+
510
+
511
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:28:40 +0200 2011
512
+ Served asset /ckeditor/config.js - 304 Not Modified (12ms)
513
+
514
+
515
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:28:40 +0200 2011
516
+ Served asset /ckeditor/skins/kama/editor.css - 200 OK (21ms)
517
+
518
+
519
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 22:28:40 +0200 2011
520
+ Served asset /rich/editor.css - 304 Not Modified (10ms)
521
+
522
+
523
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 22:28:44 +0200 2011
524
+ Processing by Rich::FilesController#index as HTML
525
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
526
+ Compiled fileuploader.js (13ms) (pid 13628)
527
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
528
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
529
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
530
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (93.1ms)
531
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
532
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
533
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
534
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
535
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
536
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
537
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
538
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
539
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
540
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
541
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
542
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
543
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
544
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
545
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
546
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
547
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
548
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
549
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
550
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
551
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
552
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
553
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
554
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
555
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
556
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
557
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
558
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
559
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (212.9ms)
560
+ Completed 200 OK in 540ms (Views: 229.8ms | ActiveRecord: 1.7ms)
561
+
562
+
563
+ Started GET "/assets/fileuploader-64fd536409e6e4f0a0142746648491a6.js" for 127.0.0.1 at Sat Oct 15 22:28:45 +0200 2011
564
+ Served asset /fileuploader-64fd536409e6e4f0a0142746648491a6.js - 200 OK (2ms)
565
+ Compiled application.js (7ms) (pid 13882)
566
+ Compiled jquery.js (7ms) (pid 13882)
567
+ Compiled jquery_ujs.js (1ms) (pid 13882)
568
+ Compiled active_admin.js (3ms) (pid 13882)
569
+ Compiled active_admin/base.js (3ms) (pid 13882)
570
+ Compiled active_admin/vendor.js (2ms) (pid 13882)
571
+ Compiled posts.js (0ms) (pid 13882)
572
+ Compiled rich.js (10ms) (pid 13882)
573
+ Compiled rich/base.js (12ms) (pid 13882)
574
+ Compiled rich/ckeditor_path.js (0ms) (pid 13882)
575
+ Compiled ckeditor/ckeditor.js (10ms) (pid 13882)
576
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 13882)
577
+ Compiled application.css (4ms) (pid 13882)
578
+ Compiled active_admin.css (2832ms) (pid 13882)
579
+ Compiled posts.css (0ms) (pid 13882)
580
+ Compiled rich/editor.css (0ms) (pid 13882)
581
+ Compiled scaffold.css (0ms) (pid 13882)
582
+ Compiled rich/application.js (6ms) (pid 13882)
583
+ Compiled rich/uploader.js (0ms) (pid 13882)
584
+ Compiled rich/application.css (392ms) (pid 13882)
585
+ Compiled rich/mixins/reset.css (166ms) (pid 13882)
586
+ Compiled application.js (7ms) (pid 13715)
587
+ Compiled jquery.js (6ms) (pid 13715)
588
+ Compiled jquery_ujs.js (1ms) (pid 13715)
589
+ Compiled active_admin.js (3ms) (pid 13715)
590
+ Compiled active_admin/base.js (2ms) (pid 13715)
591
+ Compiled active_admin/vendor.js (2ms) (pid 13715)
592
+ Compiled posts.js (0ms) (pid 13715)
593
+ Compiled rich.js (3ms) (pid 13715)
594
+ Compiled rich/base.js (89ms) (pid 13715)
595
+ Compiled rich/ckeditor_path.js (0ms) (pid 13715)
596
+ Compiled ckeditor/ckeditor.js (8ms) (pid 13715)
597
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 13715)
598
+ Compiled application.css (5ms) (pid 13715)
599
+ Compiled active_admin.css (3005ms) (pid 13715)
600
+ Compiled posts.css (86ms) (pid 13715)
601
+ Compiled rich/editor.css (0ms) (pid 13715)
602
+ Compiled scaffold.css (0ms) (pid 13715)
603
+ Compiled rich/application.js (107ms) (pid 13715)
604
+ Compiled rich/uploader.js (0ms) (pid 13715)
605
+ Compiled rich/application.css (212ms) (pid 13715)
606
+ Compiled rich/mixins/reset.css (275ms) (pid 13715)
607
+
608
+
609
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:30:41 +0200 2011
610
+ Processing by PostsController#edit as HTML
611
+ Parameters: {"id"=>"1"}
612
+ Rendered posts/_formtastic_form.html.erb (13.6ms)
613
+ Rendered posts/edit.html.erb within layouts/application (20.8ms)
614
+ Completed 200 OK in 46ms (Views: 40.6ms | ActiveRecord: 0.6ms)
615
+
616
+
617
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:30:42 +0200 2011
618
+ Compiled ckeditor/config.js (0ms) (pid 14067)
619
+ Served asset /ckeditor/config.js - 304 Not Modified (301ms)
620
+
621
+
622
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 22:30:42 +0200 2011
623
+ Served asset /rich/editor.css - 304 Not Modified (3ms)
624
+
625
+
626
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 22:30:45 +0200 2011
627
+ Processing by Rich::FilesController#index as HTML
628
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
629
+ Compiled fileuploader.js (1ms) (pid 14067)
630
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
631
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.6ms)
632
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
633
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (15.2ms)
634
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
635
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.3ms)
636
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
637
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
638
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (8.5ms)
639
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.3ms)
640
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
641
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
642
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
643
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.9ms)
644
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (5.7ms)
645
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
646
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
647
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
648
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.3ms)
649
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
650
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.7ms)
651
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
652
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.1ms)
653
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
654
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.5ms)
655
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
656
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
657
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
658
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
659
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
660
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (105.5ms)
661
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
662
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (431.8ms)
663
+ Completed 200 OK in 648ms (Views: 448.7ms | ActiveRecord: 1.6ms)
664
+ Compiled application.js (7ms) (pid 14377)
665
+ Compiled jquery.js (6ms) (pid 14377)
666
+ Compiled jquery_ujs.js (2ms) (pid 14377)
667
+ Compiled active_admin.js (2ms) (pid 14377)
668
+ Compiled active_admin/base.js (2ms) (pid 14377)
669
+ Compiled active_admin/vendor.js (2ms) (pid 14377)
670
+ Compiled posts.js (0ms) (pid 14377)
671
+ Compiled rich.js (3ms) (pid 14377)
672
+ Compiled rich/base.js (12ms) (pid 14377)
673
+ Compiled rich/ckeditor_path.js (0ms) (pid 14377)
674
+ Compiled ckeditor/ckeditor.js (7ms) (pid 14377)
675
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 14377)
676
+ Compiled application.css (5ms) (pid 14377)
677
+ Compiled active_admin.css (1539ms) (pid 14377)
678
+ Compiled posts.css (0ms) (pid 14377)
679
+ Compiled rich/editor.css (0ms) (pid 14377)
680
+ Compiled scaffold.css (0ms) (pid 14377)
681
+ Compiled rich/application.js (17ms) (pid 14377)
682
+ Compiled rich/uploader.js (0ms) (pid 14377)
683
+ Compiled rich/application.css (216ms) (pid 14377)
684
+ Compiled rich/mixins/reset.css (79ms) (pid 14377)
685
+ Compiled application.js (8ms) (pid 14225)
686
+ Compiled jquery.js (6ms) (pid 14225)
687
+ Compiled jquery_ujs.js (1ms) (pid 14225)
688
+ Compiled active_admin.js (2ms) (pid 14225)
689
+ Compiled active_admin/base.js (2ms) (pid 14225)
690
+ Compiled active_admin/vendor.js (2ms) (pid 14225)
691
+ Compiled posts.js (0ms) (pid 14225)
692
+ Compiled rich.js (4ms) (pid 14225)
693
+ Compiled rich/base.js (89ms) (pid 14225)
694
+ Compiled rich/ckeditor_path.js (0ms) (pid 14225)
695
+ Compiled ckeditor/ckeditor.js (8ms) (pid 14225)
696
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 14225)
697
+ Compiled application.css (4ms) (pid 14225)
698
+ Compiled active_admin.css (1665ms) (pid 14225)
699
+ Compiled posts.css (0ms) (pid 14225)
700
+ Compiled rich/editor.css (0ms) (pid 14225)
701
+ Compiled scaffold.css (0ms) (pid 14225)
702
+ Compiled rich/application.js (23ms) (pid 14225)
703
+ Compiled rich/uploader.js (0ms) (pid 14225)
704
+ Compiled rich/application.css (136ms) (pid 14225)
705
+ Compiled rich/mixins/reset.css (78ms) (pid 14225)
706
+
707
+
708
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:36:22 +0200 2011
709
+ Processing by PostsController#edit as HTML
710
+ Parameters: {"id"=>"1"}
711
+ Rendered posts/_formtastic_form.html.erb (12.7ms)
712
+ Rendered posts/edit.html.erb within layouts/application (19.5ms)
713
+ Completed 200 OK in 68ms (Views: 62.6ms | ActiveRecord: 1.0ms)
714
+
715
+
716
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:36:22 +0200 2011
717
+ Compiled ckeditor/config.js (0ms) (pid 14567)
718
+ Served asset /ckeditor/config.js - 304 Not Modified (44ms)
719
+
720
+
721
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 22:36:23 +0200 2011
722
+ Served asset /rich/editor.css - 304 Not Modified (2ms)
723
+ Compiled application.js (10ms) (pid 14826)
724
+ Compiled jquery.js (6ms) (pid 14826)
725
+ Compiled jquery_ujs.js (1ms) (pid 14826)
726
+ Compiled active_admin.js (2ms) (pid 14826)
727
+ Compiled active_admin/base.js (2ms) (pid 14826)
728
+ Compiled active_admin/vendor.js (2ms) (pid 14826)
729
+ Compiled posts.js (0ms) (pid 14826)
730
+ Compiled rich.js (4ms) (pid 14826)
731
+ Compiled rich/base.js (12ms) (pid 14826)
732
+ Compiled rich/ckeditor_path.js (0ms) (pid 14826)
733
+ Compiled ckeditor/ckeditor.js (9ms) (pid 14826)
734
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 14826)
735
+ Compiled application.css (5ms) (pid 14826)
736
+ Compiled active_admin.css (1525ms) (pid 14826)
737
+ Compiled posts.css (0ms) (pid 14826)
738
+ Compiled rich/editor.css (0ms) (pid 14826)
739
+ Compiled scaffold.css (0ms) (pid 14826)
740
+ Compiled rich/application.js (6ms) (pid 14826)
741
+ Compiled rich/uploader.js (0ms) (pid 14826)
742
+ Compiled rich/application.css (134ms) (pid 14826)
743
+ Compiled rich/mixins/reset.css (77ms) (pid 14826)
744
+ Compiled application.js (7ms) (pid 14689)
745
+ Compiled jquery.js (6ms) (pid 14689)
746
+ Compiled jquery_ujs.js (1ms) (pid 14689)
747
+ Compiled active_admin.js (4ms) (pid 14689)
748
+ Compiled active_admin/base.js (6ms) (pid 14689)
749
+ Compiled active_admin/vendor.js (9ms) (pid 14689)
750
+ Compiled posts.js (0ms) (pid 14689)
751
+ Compiled rich.js (17ms) (pid 14689)
752
+ Compiled rich/base.js (139ms) (pid 14689)
753
+ Compiled rich/ckeditor_path.js (1ms) (pid 14689)
754
+ Compiled ckeditor/ckeditor.js (9ms) (pid 14689)
755
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 14689)
756
+ Compiled application.css (4ms) (pid 14689)
757
+ Compiled active_admin.css (1860ms) (pid 14689)
758
+ Compiled posts.css (0ms) (pid 14689)
759
+ Compiled rich/editor.css (1ms) (pid 14689)
760
+ Compiled scaffold.css (0ms) (pid 14689)
761
+ Compiled rich/application.js (8ms) (pid 14689)
762
+ Compiled rich/uploader.js (0ms) (pid 14689)
763
+ Compiled rich/application.css (210ms) (pid 14689)
764
+ Compiled rich/mixins/reset.css (77ms) (pid 14689)
765
+
766
+
767
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 22:43:02 +0200 2011
768
+ Processing by PostsController#edit as HTML
769
+ Parameters: {"id"=>"1"}
770
+ Rendered posts/_formtastic_form.html.erb (12.5ms)
771
+ Rendered posts/edit.html.erb within layouts/application (18.5ms)
772
+ Completed 200 OK in 62ms (Views: 56.3ms | ActiveRecord: 1.0ms)
773
+
774
+
775
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 22:43:02 +0200 2011
776
+ Compiled ckeditor/config.js (0ms) (pid 15058)
777
+ Served asset /ckeditor/config.js - 304 Not Modified (17ms)
778
+
779
+
780
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 22:43:02 +0200 2011
781
+ Served asset /rich/editor.css - 304 Not Modified (5ms)
782
+
783
+
784
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 22:43:04 +0200 2011
785
+ Processing by Rich::FilesController#index as HTML
786
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
787
+ Compiled fileuploader.js (17ms) (pid 15058)
788
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.8ms)
789
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
790
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
791
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
792
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
793
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
794
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
795
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
796
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
797
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (11.6ms)
798
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (4.8ms)
799
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.7ms)
800
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.1ms)
801
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
802
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (12.4ms)
803
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
804
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.1ms)
805
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
806
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
807
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.1ms)
808
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
809
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (5.2ms)
810
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (21.3ms)
811
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
812
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (11.0ms)
813
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.4ms)
814
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
815
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.3ms)
816
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
817
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (116.3ms)
818
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
819
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
820
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (823.9ms)
821
+ Completed 200 OK in 1198ms (Views: 872.8ms | ActiveRecord: 1.5ms)
822
+
823
+
824
+ Started GET "/assets/fileuploader-523373ccb8e81f3bf0ad7f2830c44b31.js" for 127.0.0.1 at Sat Oct 15 22:43:05 +0200 2011
825
+ Served asset /fileuploader-523373ccb8e81f3bf0ad7f2830c44b31.js - 200 OK (3ms)
826
+
827
+
828
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 22:49:15 +0200 2011
829
+ Processing by Rich::FilesController#index as HTML
830
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
831
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (90.5ms)
832
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
833
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
834
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
835
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
836
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
837
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
838
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
839
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
840
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
841
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
842
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
843
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (1.9ms)
844
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
845
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
846
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (1.9ms)
847
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
848
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
849
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
850
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
851
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
852
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (1.9ms)
853
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
854
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
855
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
856
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
857
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
858
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
859
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
860
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
861
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
862
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
863
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (167.5ms)
864
+ Completed 200 OK in 366ms (Views: 169.6ms | ActiveRecord: 0.9ms)
865
+ Compiled application.js (12ms) (pid 15550)
866
+ Compiled jquery.js (11ms) (pid 15550)
867
+ Compiled jquery_ujs.js (8ms) (pid 15550)
868
+ Compiled active_admin.js (7ms) (pid 15550)
869
+ Compiled active_admin/base.js (2ms) (pid 15550)
870
+ Compiled active_admin/vendor.js (2ms) (pid 15550)
871
+ Compiled posts.js (0ms) (pid 15550)
872
+ Compiled rich.js (6ms) (pid 15550)
873
+ Compiled rich/base.js (14ms) (pid 15550)
874
+ Compiled rich/ckeditor_path.js (0ms) (pid 15550)
875
+ Compiled ckeditor/ckeditor.js (14ms) (pid 15550)
876
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 15550)
877
+ Compiled application.css (16ms) (pid 15550)
878
+ Compiled active_admin.css (1676ms) (pid 15550)
879
+ Compiled posts.css (31ms) (pid 15550)
880
+ Compiled rich/editor.css (18ms) (pid 15550)
881
+ Compiled scaffold.css (15ms) (pid 15550)
882
+ Compiled rich/application.js (18ms) (pid 15550)
883
+ Compiled rich/uploader.js (0ms) (pid 15550)
884
+ Compiled rich/application.css (247ms) (pid 15550)
885
+ Compiled rich/mixins/reset.css (96ms) (pid 15550)
886
+ Compiled application.js (6ms) (pid 15384)
887
+ Compiled jquery.js (6ms) (pid 15384)
888
+ Compiled jquery_ujs.js (1ms) (pid 15384)
889
+ Compiled active_admin.js (3ms) (pid 15384)
890
+ Compiled active_admin/base.js (2ms) (pid 15384)
891
+ Compiled active_admin/vendor.js (2ms) (pid 15384)
892
+ Compiled posts.js (0ms) (pid 15384)
893
+ Compiled rich.js (4ms) (pid 15384)
894
+ Compiled rich/base.js (97ms) (pid 15384)
895
+ Compiled rich/ckeditor_path.js (1ms) (pid 15384)
896
+ Compiled ckeditor/ckeditor.js (76ms) (pid 15384)
897
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 15384)
898
+ Compiled application.css (24ms) (pid 15384)
899
+ Compiled active_admin.css (1690ms) (pid 15384)
900
+ Compiled posts.css (83ms) (pid 15384)
901
+ Compiled rich/editor.css (16ms) (pid 15384)
902
+ Compiled scaffold.css (15ms) (pid 15384)
903
+ Compiled rich/application.js (18ms) (pid 15384)
904
+ Compiled rich/uploader.js (0ms) (pid 15384)
905
+ Compiled rich/application.css (245ms) (pid 15384)
906
+ Compiled rich/mixins/reset.css (96ms) (pid 15384)
907
+ Compiled application.js (9ms) (pid 16086)
908
+ Compiled jquery.js (11ms) (pid 16086)
909
+ Compiled jquery_ujs.js (1ms) (pid 16086)
910
+ Compiled active_admin.js (3ms) (pid 16086)
911
+ Compiled active_admin/base.js (3ms) (pid 16086)
912
+ Compiled active_admin/vendor.js (17ms) (pid 16086)
913
+ Compiled posts.js (0ms) (pid 16086)
914
+ Compiled rich.js (11ms) (pid 16086)
915
+ Compiled rich/base.js (28ms) (pid 16086)
916
+ Compiled rich/ckeditor_path.js (0ms) (pid 16086)
917
+ Compiled ckeditor/ckeditor.js (10ms) (pid 16086)
918
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 16086)
919
+ Compiled application.css (21ms) (pid 16086)
920
+ Compiled active_admin.css (1776ms) (pid 16086)
921
+ Compiled posts.css (31ms) (pid 16086)
922
+ Compiled rich/editor.css (18ms) (pid 16086)
923
+ Compiled scaffold.css (15ms) (pid 16086)
924
+ Compiled rich/application.js (18ms) (pid 16086)
925
+ Compiled rich/uploader.js (0ms) (pid 16086)
926
+ Compiled rich/application.css (157ms) (pid 16086)
927
+ Compiled rich/mixins/reset.css (96ms) (pid 16086)
928
+ Compiled application.js (26ms) (pid 15879)
929
+ Compiled jquery.js (26ms) (pid 15879)
930
+ Compiled jquery_ujs.js (2ms) (pid 15879)
931
+ Compiled active_admin.js (21ms) (pid 15879)
932
+ Compiled active_admin/base.js (12ms) (pid 15879)
933
+ Compiled active_admin/vendor.js (4ms) (pid 15879)
934
+ Compiled posts.js (42ms) (pid 15879)
935
+ Compiled rich.js (5ms) (pid 15879)
936
+ Compiled rich/base.js (87ms) (pid 15879)
937
+ Compiled rich/ckeditor_path.js (15ms) (pid 15879)
938
+ Compiled ckeditor/ckeditor.js (18ms) (pid 15879)
939
+ Compiled ckeditor/adapters/jquery.js (4ms) (pid 15879)
940
+ Compiled application.css (4ms) (pid 15879)
941
+ Compiled active_admin.css (1728ms) (pid 15879)
942
+ Compiled posts.css (0ms) (pid 15879)
943
+ Compiled rich/editor.css (0ms) (pid 15879)
944
+ Compiled scaffold.css (0ms) (pid 15879)
945
+ Compiled rich/application.js (7ms) (pid 15879)
946
+ Compiled rich/uploader.js (0ms) (pid 15879)
947
+ Compiled rich/application.css (213ms) (pid 15879)
948
+ Compiled rich/mixins/reset.css (89ms) (pid 15879)
949
+ Compiled application.js (8ms) (pid 16761)
950
+ Compiled jquery.js (6ms) (pid 16761)
951
+ Compiled jquery_ujs.js (1ms) (pid 16761)
952
+ Compiled active_admin.js (3ms) (pid 16761)
953
+ Compiled active_admin/base.js (2ms) (pid 16761)
954
+ Compiled active_admin/vendor.js (2ms) (pid 16761)
955
+ Compiled posts.js (0ms) (pid 16761)
956
+ Compiled rich.js (13ms) (pid 16761)
957
+ Compiled rich/base.js (41ms) (pid 16761)
958
+ Compiled rich/ckeditor_path.js (0ms) (pid 16761)
959
+ Compiled ckeditor/ckeditor.js (80ms) (pid 16761)
960
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 16761)
961
+ Compiled application.css (23ms) (pid 16761)
962
+ Compiled active_admin.css (1760ms) (pid 16761)
963
+ Compiled posts.css (24ms) (pid 16761)
964
+ Compiled rich/editor.css (17ms) (pid 16761)
965
+ Compiled scaffold.css (16ms) (pid 16761)
966
+ Compiled rich/application.js (18ms) (pid 16761)
967
+ Compiled rich/uploader.js (0ms) (pid 16761)
968
+ Compiled rich/application.css (168ms) (pid 16761)
969
+ Compiled rich/mixins/reset.css (93ms) (pid 16761)
970
+ Compiled application.js (29ms) (pid 16528)
971
+ Compiled jquery.js (25ms) (pid 16528)
972
+ Compiled jquery_ujs.js (2ms) (pid 16528)
973
+ Compiled active_admin.js (64ms) (pid 16528)
974
+ Compiled active_admin/base.js (27ms) (pid 16528)
975
+ Compiled active_admin/vendor.js (4ms) (pid 16528)
976
+ Compiled posts.js (15ms) (pid 16528)
977
+ Compiled rich.js (7ms) (pid 16528)
978
+ Compiled rich/base.js (15ms) (pid 16528)
979
+ Compiled rich/ckeditor_path.js (9ms) (pid 16528)
980
+ Compiled ckeditor/ckeditor.js (101ms) (pid 16528)
981
+ Compiled ckeditor/adapters/jquery.js (30ms) (pid 16528)
982
+ Compiled application.css (4ms) (pid 16528)
983
+ Compiled active_admin.css (1624ms) (pid 16528)
984
+ Compiled posts.css (0ms) (pid 16528)
985
+ Compiled rich/editor.css (0ms) (pid 16528)
986
+ Compiled scaffold.css (0ms) (pid 16528)
987
+ Compiled rich/application.js (7ms) (pid 16528)
988
+ Compiled rich/uploader.js (0ms) (pid 16528)
989
+ Compiled rich/application.css (245ms) (pid 16528)
990
+ Compiled rich/mixins/reset.css (227ms) (pid 16528)
991
+ Compiled application.js (8ms) (pid 17401)
992
+ Compiled jquery.js (6ms) (pid 17401)
993
+ Compiled jquery_ujs.js (1ms) (pid 17401)
994
+ Compiled active_admin.js (2ms) (pid 17401)
995
+ Compiled active_admin/base.js (2ms) (pid 17401)
996
+ Compiled active_admin/vendor.js (2ms) (pid 17401)
997
+ Compiled posts.js (0ms) (pid 17401)
998
+ Compiled rich.js (3ms) (pid 17401)
999
+ Compiled rich/base.js (13ms) (pid 17401)
1000
+ Compiled rich/ckeditor_path.js (0ms) (pid 17401)
1001
+ Compiled ckeditor/ckeditor.js (111ms) (pid 17401)
1002
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 17401)
1003
+ Compiled application.css (60ms) (pid 17401)
1004
+ Compiled active_admin.css (1777ms) (pid 17401)
1005
+ Compiled posts.css (32ms) (pid 17401)
1006
+ Compiled rich/editor.css (25ms) (pid 17401)
1007
+ Compiled scaffold.css (24ms) (pid 17401)
1008
+ Compiled rich/application.js (29ms) (pid 17401)
1009
+ Compiled rich/uploader.js (0ms) (pid 17401)
1010
+ Compiled rich/application.css (157ms) (pid 17401)
1011
+ Compiled rich/mixins/reset.css (92ms) (pid 17401)
1012
+ Compiled application.js (26ms) (pid 17145)
1013
+ Compiled jquery.js (34ms) (pid 17145)
1014
+ Compiled jquery_ujs.js (1ms) (pid 17145)
1015
+ Compiled active_admin.js (19ms) (pid 17145)
1016
+ Compiled active_admin/base.js (13ms) (pid 17145)
1017
+ Compiled active_admin/vendor.js (8ms) (pid 17145)
1018
+ Compiled posts.js (14ms) (pid 17145)
1019
+ Compiled rich.js (4ms) (pid 17145)
1020
+ Compiled rich/base.js (12ms) (pid 17145)
1021
+ Compiled rich/ckeditor_path.js (14ms) (pid 17145)
1022
+ Compiled ckeditor/ckeditor.js (91ms) (pid 17145)
1023
+ Compiled ckeditor/adapters/jquery.js (20ms) (pid 17145)
1024
+ Compiled application.css (5ms) (pid 17145)
1025
+ Compiled active_admin.css (1684ms) (pid 17145)
1026
+ Compiled posts.css (0ms) (pid 17145)
1027
+ Compiled rich/editor.css (0ms) (pid 17145)
1028
+ Compiled scaffold.css (0ms) (pid 17145)
1029
+ Compiled rich/application.js (7ms) (pid 17145)
1030
+ Compiled rich/uploader.js (0ms) (pid 17145)
1031
+ Compiled rich/application.css (197ms) (pid 17145)
1032
+ Compiled rich/mixins/reset.css (96ms) (pid 17145)
1033
+
1034
+
1035
+ Started GET "/" for 127.0.0.1 at Sat Oct 15 23:06:24 +0200 2011
1036
+ Processing by PostsController#index as HTML
1037
+ Rendered posts/index.html.erb within layouts/application (16.5ms)
1038
+ Completed 200 OK in 80ms (Views: 78.5ms | ActiveRecord: 0.5ms)
1039
+
1040
+
1041
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 23:06:26 +0200 2011
1042
+ Processing by PostsController#edit as HTML
1043
+ Parameters: {"id"=>"1"}
1044
+ Rendered posts/_formtastic_form.html.erb (7.1ms)
1045
+ Rendered posts/edit.html.erb within layouts/application (31.2ms)
1046
+ Completed 200 OK in 178ms (Views: 170.1ms | ActiveRecord: 0.3ms)
1047
+
1048
+
1049
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:06:26 +0200 2011
1050
+ Compiled ckeditor/config.js (35ms) (pid 17675)
1051
+ Served asset /ckeditor/config.js - 304 Not Modified (43ms)
1052
+
1053
+
1054
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:06:26 +0200 2011
1055
+ Served asset /rich/editor.css - 304 Not Modified (3ms)
1056
+
1057
+
1058
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 23:06:28 +0200 2011
1059
+ Processing by Rich::FilesController#index as HTML
1060
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1061
+ Compiled fileuploader.js (18ms) (pid 17675)
1062
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.9ms)
1063
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1064
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1065
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1066
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1067
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1068
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1069
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.4ms)
1070
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1071
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1072
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1073
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1074
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (126.1ms)
1075
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1076
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1077
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1078
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1079
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1080
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1081
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1082
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1083
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1084
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1085
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1086
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.3ms)
1087
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1088
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1089
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (9.5ms)
1090
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
1091
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (5.0ms)
1092
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.7ms)
1093
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1094
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (827.6ms)
1095
+ Completed 200 OK in 1177ms (Views: 908.4ms | ActiveRecord: 1.9ms)
1096
+
1097
+
1098
+ Started GET "/posts/1/edit" for 192.168.178.29 at Sat Oct 15 23:06:45 +0200 2011
1099
+ Processing by PostsController#edit as HTML
1100
+ Parameters: {"id"=>"1"}
1101
+ Rendered posts/_formtastic_form.html.erb (5.6ms)
1102
+ Rendered posts/edit.html.erb within layouts/application (6.6ms)
1103
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
1104
+
1105
+
1106
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:06:48 +0200 2011
1107
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
1108
+
1109
+
1110
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:06:49 +0200 2011
1111
+ Compiled ckeditor/skins/kama/editor.css (21ms) (pid 17675)
1112
+ Served asset /ckeditor/skins/kama/editor.css - 304 Not Modified (30ms)
1113
+
1114
+
1115
+ Started GET "/assets/ckeditor/lang/en.js?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:06:49 +0200 2011
1116
+ Compiled ckeditor/lang/en.js (9ms) (pid 17675)
1117
+ Served asset /ckeditor/lang/en.js - 200 OK (302ms)
1118
+
1119
+
1120
+ Started GET "/assets/ckeditor/plugins/stylesheetparser/plugin.js?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:06:50 +0200 2011
1121
+ Compiled ckeditor/plugins/stylesheetparser/plugin.js (21ms) (pid 17675)
1122
+ Served asset /ckeditor/plugins/stylesheetparser/plugin.js - 200 OK (129ms)
1123
+
1124
+
1125
+ Started GET "/assets/rich/editor.css" for 192.168.178.29 at Sat Oct 15 23:06:51 +0200 2011
1126
+ Served asset /rich/editor.css - 200 OK (8ms)
1127
+
1128
+
1129
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 192.168.178.29 at Sat Oct 15 23:06:58 +0200 2011
1130
+ Processing by Rich::FilesController#index as HTML
1131
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1132
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1133
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1134
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1135
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1136
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1137
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1138
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1139
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1140
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1141
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1142
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (95.8ms)
1143
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1144
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1145
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1146
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1147
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1148
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1149
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1150
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1151
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1152
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1153
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1154
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1155
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1156
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1157
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.4ms)
1158
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1159
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1160
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1161
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1162
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1163
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1164
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (183.5ms)
1165
+ Completed 200 OK in 522ms (Views: 185.6ms | ActiveRecord: 0.9ms)
1166
+
1167
+
1168
+ Started GET "/assets/fileuploader-523373ccb8e81f3bf0ad7f2830c44b31.js" for 192.168.178.29 at Sat Oct 15 23:07:00 +0200 2011
1169
+ Served asset /fileuploader-523373ccb8e81f3bf0ad7f2830c44b31.js - 200 OK (3ms)
1170
+ Compiled application.js (17ms) (pid 18136)
1171
+ Compiled jquery.js (7ms) (pid 18136)
1172
+ Compiled jquery_ujs.js (1ms) (pid 18136)
1173
+ Compiled active_admin.js (3ms) (pid 18136)
1174
+ Compiled active_admin/base.js (2ms) (pid 18136)
1175
+ Compiled active_admin/vendor.js (2ms) (pid 18136)
1176
+ Compiled posts.js (0ms) (pid 18136)
1177
+ Compiled rich.js (24ms) (pid 18136)
1178
+ Compiled rich/base.js (36ms) (pid 18136)
1179
+ Compiled rich/ckeditor_path.js (0ms) (pid 18136)
1180
+ Compiled ckeditor/ckeditor.js (129ms) (pid 18136)
1181
+ Compiled ckeditor/adapters/jquery.js (1ms) (pid 18136)
1182
+ Compiled application.css (4ms) (pid 18136)
1183
+ Compiled active_admin.css (1929ms) (pid 18136)
1184
+ Compiled posts.css (0ms) (pid 18136)
1185
+ Compiled rich/editor.css (0ms) (pid 18136)
1186
+ Compiled scaffold.css (4ms) (pid 18136)
1187
+ Compiled rich/application.js (7ms) (pid 18136)
1188
+ Compiled rich/uploader.js (0ms) (pid 18136)
1189
+ Compiled rich/application.css (188ms) (pid 18136)
1190
+ Compiled rich/mixins/reset.css (104ms) (pid 18136)
1191
+ Compiled application.js (26ms) (pid 17922)
1192
+ Compiled jquery.js (27ms) (pid 17922)
1193
+ Compiled jquery_ujs.js (3ms) (pid 17922)
1194
+ Compiled active_admin.js (20ms) (pid 17922)
1195
+ Compiled active_admin/base.js (53ms) (pid 17922)
1196
+ Compiled active_admin/vendor.js (6ms) (pid 17922)
1197
+ Compiled posts.js (23ms) (pid 17922)
1198
+ Compiled rich.js (48ms) (pid 17922)
1199
+ Compiled rich/base.js (15ms) (pid 17922)
1200
+ Compiled rich/ckeditor_path.js (0ms) (pid 17922)
1201
+ Compiled ckeditor/ckeditor.js (137ms) (pid 17922)
1202
+ Compiled ckeditor/adapters/jquery.js (16ms) (pid 17922)
1203
+ Compiled application.css (4ms) (pid 17922)
1204
+ Compiled active_admin.css (1992ms) (pid 17922)
1205
+ Compiled posts.css (0ms) (pid 17922)
1206
+ Compiled rich/editor.css (0ms) (pid 17922)
1207
+ Compiled scaffold.css (0ms) (pid 17922)
1208
+ Compiled rich/application.js (17ms) (pid 17922)
1209
+ Compiled rich/uploader.js (0ms) (pid 17922)
1210
+ Compiled rich/application.css (130ms) (pid 17922)
1211
+ Compiled rich/mixins/reset.css (74ms) (pid 17922)
1212
+
1213
+
1214
+ Started GET "/posts/1/edit" for 192.168.178.29 at Sat Oct 15 23:13:02 +0200 2011
1215
+ Processing by PostsController#edit as HTML
1216
+ Parameters: {"id"=>"1"}
1217
+ Rendered posts/_formtastic_form.html.erb (12.2ms)
1218
+ Rendered posts/edit.html.erb within layouts/application (19.6ms)
1219
+ Completed 200 OK in 69ms (Views: 63.3ms | ActiveRecord: 0.6ms)
1220
+
1221
+
1222
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:13:03 +0200 2011
1223
+ Compiled ckeditor/config.js (17ms) (pid 18445)
1224
+ Served asset /ckeditor/config.js - 304 Not Modified (120ms)
1225
+
1226
+
1227
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:13:03 +0200 2011
1228
+ Compiled ckeditor/skins/kama/editor.css (19ms) (pid 18445)
1229
+ Served asset /ckeditor/skins/kama/editor.css - 304 Not Modified (29ms)
1230
+
1231
+
1232
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 192.168.178.29 at Sat Oct 15 23:13:07 +0200 2011
1233
+ Processing by Rich::FilesController#index as HTML
1234
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1235
+ Compiled fileuploader.js (18ms) (pid 18445)
1236
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (4.2ms)
1237
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1238
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1239
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1240
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.3ms)
1241
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1242
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1243
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1244
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1245
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1246
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1247
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1248
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.8ms)
1249
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.1ms)
1250
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (128.2ms)
1251
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1252
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1253
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1254
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1255
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1256
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1257
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1258
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1259
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1260
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1261
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1262
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1263
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1264
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1265
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1266
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1267
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1268
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (795.6ms)
1269
+ Completed 200 OK in 1120ms (Views: 893.3ms | ActiveRecord: 2.0ms)
1270
+
1271
+
1272
+ Started PUT "/posts/1" for 192.168.178.29 at Sat Oct 15 23:14:11 +0200 2011
1273
+ Processing by PostsController#update as HTML
1274
+ Parameters: {"commit"=>"Update Post", "post"=>{"name"=>"", "title"=>"", "content"=>"<p>\r\n\t<img alt=\"\" data-rich-image-id=\"33\" src=\"/system/images/33/large/Vivid_spread5.jpg?1318706860\" /><img alt=\"\" src=\"/system/images/2/original/the-naked-logo.png?1317847830\" /></p>\r\n"}, "authenticity_token"=>"Fe1UWbVJjpIqW3mtvjFz55xNQZPChKD1yHgfupsM/6g=", "utf8"=>"\342\234\223", "id"=>"1"}
1275
+ Redirected to http://glyph.local:3000/posts/1
1276
+ Completed 302 Found in 73ms
1277
+
1278
+
1279
+ Started GET "/posts/1" for 192.168.178.29 at Sat Oct 15 23:14:11 +0200 2011
1280
+ Processing by PostsController#show as HTML
1281
+ Parameters: {"id"=>"1"}
1282
+ Rendered posts/show.html.erb within layouts/application (1.7ms)
1283
+ Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.2ms)
1284
+
1285
+
1286
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 23:14:21 +0200 2011
1287
+ Processing by PostsController#edit as HTML
1288
+ Parameters: {"id"=>"1"}
1289
+ Rendered posts/_formtastic_form.html.erb (6.0ms)
1290
+ Rendered posts/edit.html.erb within layouts/application (8.5ms)
1291
+ Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.1ms)
1292
+
1293
+
1294
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:14:21 +0200 2011
1295
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
1296
+
1297
+
1298
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:14:22 +0200 2011
1299
+ Served asset /rich/editor.css - 304 Not Modified (4ms)
1300
+
1301
+
1302
+ Started GET "/posts/1/edit" for 192.168.178.29 at Sat Oct 15 23:14:28 +0200 2011
1303
+ Processing by PostsController#edit as HTML
1304
+ Parameters: {"id"=>"1"}
1305
+ Rendered posts/_formtastic_form.html.erb (5.6ms)
1306
+ Rendered posts/edit.html.erb within layouts/application (6.6ms)
1307
+ Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.1ms)
1308
+
1309
+
1310
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:14:29 +0200 2011
1311
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
1312
+
1313
+
1314
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:14:30 +0200 2011
1315
+ Served asset /ckeditor/skins/kama/editor.css - 304 Not Modified (0ms)
1316
+ Compiled application.js (34ms) (pid 18809)
1317
+ Compiled jquery.js (28ms) (pid 18809)
1318
+ Compiled jquery_ujs.js (3ms) (pid 18809)
1319
+ Compiled active_admin.js (6ms) (pid 18809)
1320
+ Compiled active_admin/base.js (2ms) (pid 18809)
1321
+ Compiled active_admin/vendor.js (53ms) (pid 18809)
1322
+ Compiled posts.js (0ms) (pid 18809)
1323
+ Compiled rich.js (29ms) (pid 18809)
1324
+ Compiled rich/base.js (17ms) (pid 18809)
1325
+ Compiled rich/ckeditor_path.js (0ms) (pid 18809)
1326
+ Compiled ckeditor/ckeditor.js (192ms) (pid 18809)
1327
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 18809)
1328
+ Compiled application.css (5ms) (pid 18809)
1329
+ Compiled active_admin.css (1683ms) (pid 18809)
1330
+ Compiled posts.css (0ms) (pid 18809)
1331
+ Compiled rich/editor.css (0ms) (pid 18809)
1332
+ Compiled scaffold.css (0ms) (pid 18809)
1333
+ Compiled rich/application.js (7ms) (pid 18809)
1334
+ Compiled rich/uploader.js (0ms) (pid 18809)
1335
+ Compiled rich/application.css (148ms) (pid 18809)
1336
+ Compiled rich/mixins/reset.css (80ms) (pid 18809)
1337
+ Compiled application.js (7ms) (pid 18626)
1338
+ Compiled jquery.js (6ms) (pid 18626)
1339
+ Compiled jquery_ujs.js (1ms) (pid 18626)
1340
+ Compiled active_admin.js (3ms) (pid 18626)
1341
+ Compiled active_admin/base.js (2ms) (pid 18626)
1342
+ Compiled active_admin/vendor.js (2ms) (pid 18626)
1343
+ Compiled posts.js (0ms) (pid 18626)
1344
+ Compiled rich.js (4ms) (pid 18626)
1345
+ Compiled rich/base.js (30ms) (pid 18626)
1346
+ Compiled rich/ckeditor_path.js (0ms) (pid 18626)
1347
+ Compiled ckeditor/ckeditor.js (83ms) (pid 18626)
1348
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 18626)
1349
+ Compiled application.css (4ms) (pid 18626)
1350
+ Compiled active_admin.css (1870ms) (pid 18626)
1351
+ Compiled posts.css (0ms) (pid 18626)
1352
+ Compiled rich/editor.css (0ms) (pid 18626)
1353
+ Compiled scaffold.css (0ms) (pid 18626)
1354
+ Compiled rich/application.js (46ms) (pid 18626)
1355
+ Compiled rich/uploader.js (0ms) (pid 18626)
1356
+ Compiled rich/application.css (140ms) (pid 18626)
1357
+ Compiled rich/mixins/reset.css (80ms) (pid 18626)
1358
+
1359
+
1360
+ Started GET "/posts/1/edit" for 192.168.178.29 at Sat Oct 15 23:17:42 +0200 2011
1361
+ Processing by PostsController#edit as HTML
1362
+ Parameters: {"id"=>"1"}
1363
+ Rendered posts/_formtastic_form.html.erb (12.6ms)
1364
+ Rendered posts/edit.html.erb within layouts/application (18.3ms)
1365
+ Completed 200 OK in 60ms (Views: 55.1ms | ActiveRecord: 0.6ms)
1366
+
1367
+
1368
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:17:43 +0200 2011
1369
+ Compiled ckeditor/config.js (0ms) (pid 19095)
1370
+ Served asset /ckeditor/config.js - 304 Not Modified (102ms)
1371
+
1372
+
1373
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:17:43 +0200 2011
1374
+ Compiled ckeditor/skins/kama/editor.css (0ms) (pid 19095)
1375
+ Served asset /ckeditor/skins/kama/editor.css - 304 Not Modified (9ms)
1376
+
1377
+
1378
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 192.168.178.29 at Sat Oct 15 23:17:52 +0200 2011
1379
+ Processing by Rich::FilesController#index as HTML
1380
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1381
+ Compiled fileuploader.js (1ms) (pid 19095)
1382
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1383
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1384
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1385
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1386
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1387
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1388
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1389
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1390
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1391
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1392
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1393
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1394
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.5ms)
1395
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (135.3ms)
1396
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1397
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1398
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1399
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1400
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1401
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1402
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1403
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1404
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1405
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1406
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1407
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1408
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1409
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1410
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1411
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1412
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1413
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1414
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (686.1ms)
1415
+ Completed 200 OK in 895ms (Views: 703.1ms | ActiveRecord: 1.5ms)
1416
+
1417
+
1418
+ Started GET "/admin" for 127.0.0.1 at Sat Oct 15 23:18:06 +0200 2011
1419
+ Processing by Admin::DashboardController#index as HTML
1420
+ Rendered /Library/Ruby/Gems/1.8/gems/activeadmin-0.3.1/app/views/active_admin/dashboard/index.html.arb (17483.4ms)
1421
+ Completed 200 OK in 17523ms (Views: 17518.2ms | ActiveRecord: 0.3ms)
1422
+
1423
+
1424
+ Started GET "/" for 127.0.0.1 at Sat Oct 15 23:18:24 +0200 2011
1425
+ Processing by PostsController#index as HTML
1426
+ Rendered posts/index.html.erb within layouts/application (6.8ms)
1427
+ Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.2ms)
1428
+
1429
+
1430
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 23:18:31 +0200 2011
1431
+ Processing by PostsController#edit as HTML
1432
+ Parameters: {"id"=>"1"}
1433
+ Rendered posts/_formtastic_form.html.erb (8.0ms)
1434
+ Rendered posts/edit.html.erb within layouts/application (9.3ms)
1435
+ Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.2ms)
1436
+
1437
+
1438
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:18:31 +0200 2011
1439
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
1440
+
1441
+
1442
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:18:31 +0200 2011
1443
+ Served asset /rich/editor.css - 304 Not Modified (2ms)
1444
+
1445
+
1446
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 23:18:34 +0200 2011
1447
+ Processing by Rich::FilesController#index as HTML
1448
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1449
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1450
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1451
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1452
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1453
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1454
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1455
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1456
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1457
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1458
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1459
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1460
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1461
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1462
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1463
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1464
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1465
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1466
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1467
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1468
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1469
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1470
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1471
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1472
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1473
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1474
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1475
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
1476
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1477
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1478
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1479
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1480
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1481
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (94.1ms)
1482
+ Completed 200 OK in 220ms (Views: 96.3ms | ActiveRecord: 1.0ms)
1483
+
1484
+
1485
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 23:18:45 +0200 2011
1486
+ Processing by Rich::FilesController#index as HTML
1487
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1488
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1489
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1490
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1491
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1492
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1493
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1494
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1495
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1496
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.4ms)
1497
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1498
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1499
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1500
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1501
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1502
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1503
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1504
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1505
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1506
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1507
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1508
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1509
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1510
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1511
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1512
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1513
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1514
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1515
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1516
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1517
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1518
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1519
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1520
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (90.8ms)
1521
+ Completed 200 OK in 416ms (Views: 93.0ms | ActiveRecord: 1.2ms)
1522
+
1523
+
1524
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 192.168.178.29 at Sat Oct 15 23:19:04 +0200 2011
1525
+ Processing by Rich::FilesController#index as HTML
1526
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1527
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1528
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1529
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1530
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1531
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1532
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
1533
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1534
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1535
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1536
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1537
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1538
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1539
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1540
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1541
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1542
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1543
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1544
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1545
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1546
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1547
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1548
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1549
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1550
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1551
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1552
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1553
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1554
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1555
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1556
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1557
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1558
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1559
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (82.2ms)
1560
+ Completed 200 OK in 374ms (Views: 84.3ms | ActiveRecord: 0.7ms)
1561
+
1562
+
1563
+ Started GET "/admin/posts/1/edit" for 127.0.0.1 at Sat Oct 15 23:19:59 +0200 2011
1564
+ Processing by Admin::PostsController#edit as HTML
1565
+ Parameters: {"id"=>"1"}
1566
+ Rendered /Library/Ruby/Gems/1.8/gems/activeadmin-0.3.1/app/views/active_admin/resource/edit.html.arb (18.7ms)
1567
+ Completed 200 OK in 46ms (Views: 37.2ms | ActiveRecord: 4.9ms)
1568
+
1569
+
1570
+ Started GET "/assets/active_admin-fe387479056f57314ed5a20ad2e3003c.css" for 127.0.0.1 at Sat Oct 15 23:19:59 +0200 2011
1571
+ Served asset /active_admin-fe387479056f57314ed5a20ad2e3003c.css - 200 OK (1ms)
1572
+
1573
+
1574
+ Started GET "/assets/active_admin-7bdf716ead18bcaa1aac9bfb07bd90a7.js" for 127.0.0.1 at Sat Oct 15 23:19:59 +0200 2011
1575
+ Served asset /active_admin-7bdf716ead18bcaa1aac9bfb07bd90a7.js - 200 OK (1ms)
1576
+
1577
+
1578
+ Started GET "/assets/rich/base-f539645d9164265b22f2fe3fca80f08c.js" for 127.0.0.1 at Sat Oct 15 23:19:59 +0200 2011
1579
+ Served asset /rich/base-f539645d9164265b22f2fe3fca80f08c.js - 200 OK (2ms)
1580
+
1581
+
1582
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:19:59 +0200 2011
1583
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
1584
+
1585
+
1586
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:19:59 +0200 2011
1587
+ Served asset /rich/editor.css - 304 Not Modified (0ms)
1588
+
1589
+
1590
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:20:02 +0200 2011
1591
+ Served asset /rich/editor.css - 304 Not Modified (0ms)
1592
+
1593
+
1594
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:22:09 +0200 2011
1595
+ Served asset /ckeditor/skins/kama/editor.css - 304 Not Modified (0ms)
1596
+
1597
+
1598
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 192.168.178.29 at Sat Oct 15 23:22:46 +0200 2011
1599
+ Processing by Rich::FilesController#index as HTML
1600
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1601
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1602
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1603
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1604
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1605
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1606
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1607
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1608
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1609
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1610
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1611
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1612
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1613
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1614
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1615
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1616
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1617
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1618
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1619
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1620
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1621
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1622
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1623
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1624
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1625
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1626
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1627
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1628
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1629
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1630
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1631
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1632
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1633
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (81.8ms)
1634
+ Completed 200 OK in 403ms (Views: 83.8ms | ActiveRecord: 0.7ms)
1635
+
1636
+
1637
+ Started GET "/assets/ckeditor/skins/kama/dialog.css?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:23:26 +0200 2011
1638
+ Compiled ckeditor/skins/kama/dialog.css (359ms) (pid 19095)
1639
+ Error compiling asset ckeditor/skins/kama/dialog.css:
1640
+ Sass::SyntaxError: Invalid CSS after "...h:60px;+margin:": expected pseudoclass or pseudoelement, was "2px 0;}.cke_ski..."
1641
+ (in /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/vendor/assets/ckeditor/ckeditor/skins/kama/dialog.css)
1642
+ Served asset /ckeditor/skins/kama/dialog.css - 500 Internal Server Error
1643
+
1644
+
1645
+
1646
+ Started GET "/assets/ckeditor/plugins/link/dialogs/link.js?t=B8DJ5M3" for 192.168.178.29 at Sat Oct 15 23:23:32 +0200 2011
1647
+ Compiled ckeditor/plugins/link/dialogs/link.js (24ms) (pid 19095)
1648
+ Served asset /ckeditor/plugins/link/dialogs/link.js - 200 OK (500ms)
1649
+
1650
+
1651
+ Started GET "/assets/ckeditor/plugins/link/dialogs/link.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:23:40 +0200 2011
1652
+ Served asset /ckeditor/plugins/link/dialogs/link.js - 200 OK (0ms)
1653
+
1654
+
1655
+ Started GET "/assets/ckeditor/skins/kama/dialog.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:23:40 +0200 2011
1656
+ Error compiling asset ckeditor/skins/kama/dialog.css:
1657
+ Sass::SyntaxError: Invalid CSS after "...h:60px;+margin:": expected pseudoclass or pseudoelement, was "2px 0;}.cke_ski..."
1658
+ (in /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/vendor/assets/ckeditor/ckeditor/skins/kama/dialog.css)
1659
+ Served asset /ckeditor/skins/kama/dialog.css - 500 Internal Server Error
1660
+
1661
+ Compiled application.js (8ms) (pid 19603)
1662
+ Compiled jquery.js (6ms) (pid 19603)
1663
+ Compiled jquery_ujs.js (1ms) (pid 19603)
1664
+ Compiled active_admin.js (8ms) (pid 19603)
1665
+ Compiled active_admin/base.js (7ms) (pid 19603)
1666
+ Compiled active_admin/vendor.js (2ms) (pid 19603)
1667
+ Compiled posts.js (0ms) (pid 19603)
1668
+ Compiled rich.js (3ms) (pid 19603)
1669
+ Compiled rich/base.js (18ms) (pid 19603)
1670
+ Compiled rich/ckeditor_path.js (0ms) (pid 19603)
1671
+ Compiled ckeditor/ckeditor.js (197ms) (pid 19603)
1672
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 19603)
1673
+ Compiled application.css (4ms) (pid 19603)
1674
+ Compiled active_admin.css (1583ms) (pid 19603)
1675
+ Compiled posts.css (0ms) (pid 19603)
1676
+ Compiled rich/editor.css (0ms) (pid 19603)
1677
+ Compiled scaffold.css (0ms) (pid 19603)
1678
+ Compiled rich/application.js (12ms) (pid 19603)
1679
+ Compiled rich/uploader.js (0ms) (pid 19603)
1680
+ Compiled rich/application.css (210ms) (pid 19603)
1681
+ Compiled rich/mixins/reset.css (87ms) (pid 19603)
1682
+ Compiled application.js (10ms) (pid 19405)
1683
+ Compiled jquery.js (6ms) (pid 19405)
1684
+ Compiled jquery_ujs.js (1ms) (pid 19405)
1685
+ Compiled active_admin.js (2ms) (pid 19405)
1686
+ Compiled active_admin/base.js (2ms) (pid 19405)
1687
+ Compiled active_admin/vendor.js (2ms) (pid 19405)
1688
+ Compiled posts.js (0ms) (pid 19405)
1689
+ Compiled rich.js (4ms) (pid 19405)
1690
+ Compiled rich/base.js (12ms) (pid 19405)
1691
+ Compiled rich/ckeditor_path.js (1ms) (pid 19405)
1692
+ Compiled ckeditor/ckeditor.js (84ms) (pid 19405)
1693
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 19405)
1694
+ Compiled application.css (4ms) (pid 19405)
1695
+ Compiled active_admin.css (1617ms) (pid 19405)
1696
+ Compiled posts.css (0ms) (pid 19405)
1697
+ Compiled rich/editor.css (0ms) (pid 19405)
1698
+ Compiled scaffold.css (0ms) (pid 19405)
1699
+ Compiled rich/application.js (7ms) (pid 19405)
1700
+ Compiled rich/uploader.js (0ms) (pid 19405)
1701
+ Compiled rich/application.css (225ms) (pid 19405)
1702
+ Compiled rich/mixins/reset.css (86ms) (pid 19405)
1703
+
1704
+
1705
+ Started GET "/admin/posts/1/edit" for 127.0.0.1 at Sat Oct 15 23:26:44 +0200 2011
1706
+ Processing by Admin::PostsController#edit as HTML
1707
+ Parameters: {"id"=>"1"}
1708
+ Rendered /Library/Ruby/Gems/1.8/gems/activeadmin-0.3.1/app/views/active_admin/resource/edit.html.arb (17567.9ms)
1709
+ Completed 200 OK in 17639ms (Views: 17606.9ms | ActiveRecord: 6.5ms)
1710
+
1711
+
1712
+ Started GET "/assets/active_admin-fe387479056f57314ed5a20ad2e3003c.css" for 127.0.0.1 at Sat Oct 15 23:27:02 +0200 2011
1713
+ Served asset /active_admin-fe387479056f57314ed5a20ad2e3003c.css - 304 Not Modified (1ms)
1714
+
1715
+
1716
+ Started GET "/assets/active_admin-7bdf716ead18bcaa1aac9bfb07bd90a7.js" for 127.0.0.1 at Sat Oct 15 23:27:02 +0200 2011
1717
+ Served asset /active_admin-7bdf716ead18bcaa1aac9bfb07bd90a7.js - 304 Not Modified (13ms)
1718
+
1719
+
1720
+ Started GET "/assets/rich/base-f539645d9164265b22f2fe3fca80f08c.js" for 127.0.0.1 at Sat Oct 15 23:27:02 +0200 2011
1721
+ Served asset /rich/base-f539645d9164265b22f2fe3fca80f08c.js - 304 Not Modified (2ms)
1722
+
1723
+
1724
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:27:02 +0200 2011
1725
+ Compiled ckeditor/config.js (3ms) (pid 19902)
1726
+ Served asset /ckeditor/config.js - 304 Not Modified (19ms)
1727
+
1728
+
1729
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:27:02 +0200 2011
1730
+ Served asset /rich/editor.css - 304 Not Modified (2ms)
1731
+
1732
+
1733
+ Started GET "/assets/ckeditor/skins/kama/dialog.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:27:05 +0200 2011
1734
+ Compiled ckeditor/skins/kama/dialog.css (0ms) (pid 19902)
1735
+ Error compiling asset ckeditor/skins/kama/dialog.css:
1736
+ Sass::SyntaxError: Invalid CSS after "...h:60px;+margin:": expected pseudoclass or pseudoelement, was "2px 0;}.cke_ski..."
1737
+ (in /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/vendor/assets/ckeditor/ckeditor/skins/kama/dialog.css)
1738
+ Served asset /ckeditor/skins/kama/dialog.css - 500 Internal Server Error
1739
+
1740
+ Compiled application.js (8ms) (pid 20335)
1741
+ Compiled jquery.js (7ms) (pid 20335)
1742
+ Compiled jquery_ujs.js (1ms) (pid 20335)
1743
+ Compiled active_admin.js (3ms) (pid 20335)
1744
+ Compiled active_admin/base.js (2ms) (pid 20335)
1745
+ Compiled active_admin/vendor.js (2ms) (pid 20335)
1746
+ Compiled posts.js (0ms) (pid 20335)
1747
+ Compiled rich.js (4ms) (pid 20335)
1748
+ Compiled rich/base.js (14ms) (pid 20335)
1749
+ Compiled rich/ckeditor_path.js (0ms) (pid 20335)
1750
+ Compiled ckeditor/ckeditor.js (8ms) (pid 20335)
1751
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 20335)
1752
+ Compiled application.css (5ms) (pid 20335)
1753
+ Compiled active_admin.css (3405ms) (pid 20335)
1754
+ Compiled posts.css (0ms) (pid 20335)
1755
+ Compiled rich/editor.css (0ms) (pid 20335)
1756
+ Compiled scaffold.css (0ms) (pid 20335)
1757
+ Compiled rich/application.js (7ms) (pid 20335)
1758
+ Compiled rich/uploader.js (0ms) (pid 20335)
1759
+ Compiled rich/application.css (193ms) (pid 20335)
1760
+ Compiled rich/mixins/reset.css (147ms) (pid 20335)
1761
+ Compiled application.js (7ms) (pid 20117)
1762
+ Compiled jquery.js (5ms) (pid 20117)
1763
+ Compiled jquery_ujs.js (1ms) (pid 20117)
1764
+ Compiled active_admin.js (4ms) (pid 20117)
1765
+ Compiled active_admin/base.js (2ms) (pid 20117)
1766
+ Compiled active_admin/vendor.js (2ms) (pid 20117)
1767
+ Compiled posts.js (0ms) (pid 20117)
1768
+ Compiled rich.js (5ms) (pid 20117)
1769
+ Compiled rich/base.js (21ms) (pid 20117)
1770
+ Compiled rich/ckeditor_path.js (0ms) (pid 20117)
1771
+ Compiled ckeditor/ckeditor.js (171ms) (pid 20117)
1772
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 20117)
1773
+ Compiled application.css (5ms) (pid 20117)
1774
+ Compiled active_admin.css (3089ms) (pid 20117)
1775
+ Compiled posts.css (0ms) (pid 20117)
1776
+ Compiled rich/editor.css (0ms) (pid 20117)
1777
+ Compiled scaffold.css (0ms) (pid 20117)
1778
+ Compiled rich/application.js (11ms) (pid 20117)
1779
+ Compiled rich/uploader.js (0ms) (pid 20117)
1780
+ Compiled rich/application.css (369ms) (pid 20117)
1781
+ Compiled rich/mixins/reset.css (160ms) (pid 20117)
1782
+
1783
+
1784
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 23:30:21 +0200 2011
1785
+ Processing by PostsController#edit as HTML
1786
+ Parameters: {"id"=>"1"}
1787
+ Rendered posts/_formtastic_form.html.erb (12.5ms)
1788
+ Rendered posts/edit.html.erb within layouts/application (18.6ms)
1789
+ Completed 200 OK in 45ms (Views: 39.7ms | ActiveRecord: 0.6ms)
1790
+
1791
+
1792
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:30:22 +0200 2011
1793
+ Compiled ckeditor/config.js (3ms) (pid 20641)
1794
+ Served asset /ckeditor/config.js - 304 Not Modified (10ms)
1795
+
1796
+
1797
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:30:22 +0200 2011
1798
+ Served asset /rich/editor.css - 304 Not Modified (3ms)
1799
+
1800
+
1801
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 23:30:24 +0200 2011
1802
+ Processing by Rich::FilesController#index as HTML
1803
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1804
+ Compiled fileuploader.js (1ms) (pid 20641)
1805
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.4ms)
1806
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.4ms)
1807
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1808
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1809
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1810
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1811
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1812
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.9ms)
1813
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1814
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.4ms)
1815
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
1816
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1817
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.8ms)
1818
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
1819
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1820
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1821
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1822
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
1823
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.1ms)
1824
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1825
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1826
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1827
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1828
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.5ms)
1829
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1830
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1831
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1832
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (106.5ms)
1833
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1834
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1835
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
1836
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
1837
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (408.9ms)
1838
+ Completed 200 OK in 638ms (Views: 427.9ms | ActiveRecord: 1.7ms)
1839
+
1840
+
1841
+ Started GET "/assets/ckeditor/skins/kama/dialog.css?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:30:29 +0200 2011
1842
+ Compiled ckeditor/skins/kama/dialog.css (0ms) (pid 20641)
1843
+ Served asset /ckeditor/skins/kama/dialog.css - 200 OK (15ms)
1844
+
1845
+
1846
+ Started GET "/" for 127.0.0.1 at Sat Oct 15 23:32:43 +0200 2011
1847
+ Processing by PostsController#index as HTML
1848
+ Rendered posts/index.html.erb within layouts/application (8.3ms)
1849
+ Completed 200 OK in 31ms (Views: 29.9ms | ActiveRecord: 0.2ms)
1850
+
1851
+
1852
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sat Oct 15 23:36:49 +0200 2011
1853
+ Processing by PostsController#edit as HTML
1854
+ Parameters: {"id"=>"1"}
1855
+ Rendered posts/_formtastic_form.html.erb (5.9ms)
1856
+ Rendered posts/edit.html.erb within layouts/application (6.9ms)
1857
+ Completed 200 OK in 110ms (Views: 108.0ms | ActiveRecord: 0.1ms)
1858
+
1859
+
1860
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sat Oct 15 23:36:49 +0200 2011
1861
+ Served asset /ckeditor/config.js - 304 Not Modified (0ms)
1862
+
1863
+
1864
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sat Oct 15 23:36:49 +0200 2011
1865
+ Served asset /rich/editor.css - 304 Not Modified (0ms)
1866
+
1867
+
1868
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sat Oct 15 23:36:50 +0200 2011
1869
+ Processing by Rich::FilesController#index as HTML
1870
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
1871
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1872
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1873
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1874
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1875
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1876
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1877
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1878
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1879
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1880
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1881
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1882
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1883
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1884
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1885
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1886
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1887
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1888
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1889
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1890
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
1891
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1892
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
1893
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
1894
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1895
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1896
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1897
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1898
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
1899
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1900
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
1901
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (102.2ms)
1902
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
1903
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (182.2ms)
1904
+ Completed 200 OK in 481ms (Views: 184.2ms | ActiveRecord: 2.2ms)
1905
+
1906
+
1907
+ Started POST "/rich/files?authenticity_token=Xy8IiUPStKuJPTepj%2BroSnFRulDW0CSTUAQVWO45ax4%3D&qqfile=zo+moeilijk'+ej.JPG" for 127.0.0.1 at Sat Oct 15 23:37:20 +0200 2011
1908
+ Processing by Rich::FilesController#create as */*
1909
+ Parameters: {"qqfile"=>"zo moeilijk' ej.JPG", "authenticity_token"=>"Xy8IiUPStKuJPTepj+roSnFRulDW0CSTUAQVWO45ax4=", "file"=>#<ActionDispatch::Http::UploadedFile:0x103e9d3e8 @content_type="application/octet-stream", @headers=nil, @original_filename="zo%20moeilijk'%20ej.JPG", @tempfile=#<File:/var/folders/5b/4wxpdqkx5g11_b0jnjjtdrq40000gn/T/raw-upload.20111015-20641-147gbub-0>>}
1910
+ [paperclip] Saving attachments.
1911
+ [paperclip] saving /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/test/dummy/public/system/images/46/original/zo%2520moeilijk'%2520ej.JPG
1912
+ [paperclip] saving /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/test/dummy/public/system/images/46/thumb/zo%2520moeilijk'%2520ej.JPG
1913
+ [paperclip] saving /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/test/dummy/public/system/images/46/large/zo%2520moeilijk'%2520ej.JPG
1914
+ Completed 200 OK in 2271ms (Views: 29.8ms | ActiveRecord: 52.4ms)
1915
+
1916
+
1917
+ Started GET "/rich/files/46" for 127.0.0.1 at Sat Oct 15 23:37:23 +0200 2011
1918
+ Processing by Rich::FilesController#show as */*
1919
+ Parameters: {"id"=>"46"}
1920
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.6ms)
1921
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/show.html.erb (4.6ms)
1922
+ Completed 200 OK in 53ms (Views: 44.8ms | ActiveRecord: 0.5ms)
1923
+
1924
+
1925
+ Started GET "/system/images/46/thumb/zo%2520moeilijk'%2520ej.JPG?1318714641" for 127.0.0.1 at Sat Oct 15 23:37:23 +0200 2011
1926
+
1927
+ ActionController::RoutingError (No route matches [GET] "/system/images/46/thumb/zo%2520moeilijk'%2520ej.JPG"):
1928
+
1929
+
1930
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1931
+ Compiled application.js (9ms) (pid 24337)
1932
+ Compiled jquery.js (7ms) (pid 24337)
1933
+ Compiled jquery_ujs.js (1ms) (pid 24337)
1934
+ Compiled rich.js (9ms) (pid 24337)
1935
+ Compiled rich/base.js (17ms) (pid 24337)
1936
+ Compiled rich/ckeditor_path.js (1ms) (pid 24337)
1937
+ Compiled ckeditor/ckeditor.js (9ms) (pid 24337)
1938
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 24337)
1939
+ Compiled application.css (5ms) (pid 24337)
1940
+ Compiled active_admin.css (2735ms) (pid 24337)
1941
+ Compiled posts.css (0ms) (pid 24337)
1942
+ Compiled rich/editor.css (0ms) (pid 24337)
1943
+ Compiled scaffold.css (0ms) (pid 24337)
1944
+ Compiled rich/application.js (7ms) (pid 24337)
1945
+ Compiled rich/uploader.js (88ms) (pid 24337)
1946
+ Compiled rich/application.css (201ms) (pid 24337)
1947
+ Compiled rich/mixins/reset.css (162ms) (pid 24337)
1948
+ Compiled application.js (32ms) (pid 24172)
1949
+ Compiled jquery.js (6ms) (pid 24172)
1950
+ Compiled jquery_ujs.js (1ms) (pid 24172)
1951
+ Compiled rich.js (3ms) (pid 24172)
1952
+ Compiled rich/base.js (11ms) (pid 24172)
1953
+ Compiled rich/ckeditor_path.js (0ms) (pid 24172)
1954
+ Compiled ckeditor/ckeditor.js (7ms) (pid 24172)
1955
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 24172)
1956
+ Compiled application.css (4ms) (pid 24172)
1957
+ Compiled active_admin.css (4029ms) (pid 24172)
1958
+ Compiled posts.css (0ms) (pid 24172)
1959
+ Compiled rich/editor.css (0ms) (pid 24172)
1960
+ Compiled scaffold.css (0ms) (pid 24172)
1961
+ Compiled rich/application.js (9ms) (pid 24172)
1962
+ Compiled rich/uploader.js (0ms) (pid 24172)
1963
+ Compiled rich/application.css (395ms) (pid 24172)
1964
+ Compiled rich/mixins/reset.css (149ms) (pid 24172)
1965
+ Compiled application.js (33ms) (pid 26091)
1966
+ Compiled jquery.js (15ms) (pid 26091)
1967
+ Compiled jquery_ujs.js (1ms) (pid 26091)
1968
+ Compiled rich.js (4ms) (pid 26091)
1969
+ Compiled rich/base.js (21ms) (pid 26091)
1970
+ Compiled rich/ckeditor_path.js (0ms) (pid 26091)
1971
+ Compiled ckeditor/ckeditor.js (19ms) (pid 26091)
1972
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 26091)
1973
+ Compiled application.css (14ms) (pid 26091)
1974
+ Compiled active_admin.css (1701ms) (pid 26091)
1975
+ Compiled posts.css (39ms) (pid 26091)
1976
+ Compiled rich/editor.css (17ms) (pid 26091)
1977
+ Compiled scaffold.css (16ms) (pid 26091)
1978
+ Compiled rich/application.js (25ms) (pid 26091)
1979
+ Compiled rich/uploader.js (18ms) (pid 26091)
1980
+ Compiled rich/application.css (243ms) (pid 26091)
1981
+ Compiled rich/mixins/reset.css (96ms) (pid 26091)
1982
+ Compiled application.js (42ms) (pid 25873)
1983
+ Compiled jquery.js (6ms) (pid 25873)
1984
+ Compiled jquery_ujs.js (1ms) (pid 25873)
1985
+ Compiled rich.js (3ms) (pid 25873)
1986
+ Compiled rich/base.js (12ms) (pid 25873)
1987
+ Compiled rich/ckeditor_path.js (0ms) (pid 25873)
1988
+ Compiled ckeditor/ckeditor.js (7ms) (pid 25873)
1989
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 25873)
1990
+ Compiled application.css (4ms) (pid 25873)
1991
+ Compiled active_admin.css (3193ms) (pid 25873)
1992
+ Compiled posts.css (1ms) (pid 25873)
1993
+ Compiled rich/editor.css (0ms) (pid 25873)
1994
+ Compiled scaffold.css (0ms) (pid 25873)
1995
+ Compiled rich/application.js (6ms) (pid 25873)
1996
+ Compiled rich/uploader.js (0ms) (pid 25873)
1997
+ Compiled rich/application.css (622ms) (pid 25873)
1998
+ Compiled rich/mixins/reset.css (284ms) (pid 25873)
1999
+
2000
+
2001
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sun Oct 16 15:09:06 +0200 2011
2002
+ Processing by PostsController#edit as HTML
2003
+ Parameters: {"id"=>"1"}
2004
+ Rendered posts/_formtastic_form.html.erb (13.1ms)
2005
+ Rendered posts/edit.html.erb within layouts/application (117.3ms)
2006
+ Completed 200 OK in 167ms (Views: 161.1ms | ActiveRecord: 0.6ms)
2007
+
2008
+
2009
+ Started GET "/assets/ckeditor/config.js?t=B8DJ5M3" for 127.0.0.1 at Sun Oct 16 15:09:06 +0200 2011
2010
+
2011
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/config.js"):
2012
+
2013
+
2014
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
2015
+
2016
+
2017
+ Started GET "/assets/ckeditor/skins/kama/editor.css?t=B8DJ5M3" for 127.0.0.1 at Sun Oct 16 15:09:06 +0200 2011
2018
+
2019
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/skins/kama/editor.css"):
2020
+
2021
+
2022
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
2023
+
2024
+
2025
+ Started GET "/assets/ckeditor/lang/en.js?t=B8DJ5M3" for 127.0.0.1 at Sun Oct 16 15:09:06 +0200 2011
2026
+
2027
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/lang/en.js"):
2028
+
2029
+
2030
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
2031
+
2032
+
2033
+ Started GET "/assets/ckeditor/plugins/stylesheetparser/plugin.js?t=B8DJ5M3" for 127.0.0.1 at Sun Oct 16 15:09:06 +0200 2011
2034
+
2035
+ ActionController::RoutingError (No route matches [GET] "/assets/ckeditor/plugins/stylesheetparser/plugin.js"):
2036
+
2037
+
2038
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
2039
+ Compiled application.js (63ms) (pid 26701)
2040
+ Compiled jquery.js (26ms) (pid 26701)
2041
+ Compiled jquery_ujs.js (1ms) (pid 26701)
2042
+ Compiled rich.js (26ms) (pid 26701)
2043
+ Compiled rich/base.js (29ms) (pid 26701)
2044
+ Compiled rich/ckeditor_path.js (21ms) (pid 26701)
2045
+ Compiled ckeditor/ckeditor.js (11ms) (pid 26701)
2046
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 26701)
2047
+ Compiled application.js (23ms) (pid 26456)
2048
+ Compiled jquery.js (30ms) (pid 26456)
2049
+ Compiled jquery_ujs.js (2ms) (pid 26456)
2050
+ Compiled rich.js (18ms) (pid 26456)
2051
+ Compiled rich/base.js (30ms) (pid 26456)
2052
+ Compiled rich/ckeditor_path.js (12ms) (pid 26456)
2053
+ Compiled ckeditor/ckeditor.js (7ms) (pid 26456)
2054
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 26456)
2055
+ Compiled application.css (15ms) (pid 26456)
2056
+ Compiled active_admin.css (1855ms) (pid 26456)
2057
+ Compiled posts.css (16ms) (pid 26456)
2058
+ Compiled rich/editor.css (24ms) (pid 26456)
2059
+ Compiled scaffold.css (23ms) (pid 26456)
2060
+ Compiled rich/application.js (25ms) (pid 26456)
2061
+ Compiled rich/uploader.js (16ms) (pid 26456)
2062
+ Compiled rich/application.css (230ms) (pid 26456)
2063
+ Compiled rich/mixins/reset.css (244ms) (pid 26456)
2064
+ Compiled application.js (6ms) (pid 26969)
2065
+ Compiled jquery.js (6ms) (pid 26969)
2066
+ Compiled jquery_ujs.js (1ms) (pid 26969)
2067
+ Compiled rich.js (12ms) (pid 26969)
2068
+ Compiled rich/base.js (17ms) (pid 26969)
2069
+ Compiled rich/ckeditor_path.js (0ms) (pid 26969)
2070
+ Compiled ckeditor/ckeditor.js (12ms) (pid 26969)
2071
+ Compiled ckeditor/adapters/jquery.js (5ms) (pid 26969)
2072
+ Compiled application.css (35ms) (pid 26969)
2073
+ Compiled active_admin.css (2001ms) (pid 26969)
2074
+ Compiled posts.css (21ms) (pid 26969)
2075
+ Compiled rich/editor.css (17ms) (pid 26969)
2076
+ Compiled scaffold.css (15ms) (pid 26969)
2077
+ Compiled application.js (28ms) (pid 27367)
2078
+ Compiled jquery.js (6ms) (pid 27367)
2079
+ Compiled jquery_ujs.js (2ms) (pid 27367)
2080
+ Compiled rich.js (4ms) (pid 27367)
2081
+ Compiled rich/base.js (12ms) (pid 27367)
2082
+ Compiled rich/ckeditor_path.js (0ms) (pid 27367)
2083
+ Compiled ckeditor/ckeditor.js (7ms) (pid 27367)
2084
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 27367)
2085
+ Compiled application.css (29ms) (pid 27367)
2086
+ Compiled active_admin.css (1772ms) (pid 27367)
2087
+ Compiled posts.css (23ms) (pid 27367)
2088
+ Compiled rich/editor.css (19ms) (pid 27367)
2089
+ Compiled scaffold.css (14ms) (pid 27367)
2090
+ Compiled rich/application.js (26ms) (pid 27367)
2091
+ Compiled rich/uploader.js (17ms) (pid 27367)
2092
+ Compiled rich/application.css (237ms) (pid 27367)
2093
+ Compiled rich/mixins/reset.css (90ms) (pid 27367)
2094
+ Compiled application.js (6ms) (pid 27176)
2095
+ Compiled jquery.js (5ms) (pid 27176)
2096
+ Compiled jquery_ujs.js (1ms) (pid 27176)
2097
+ Compiled rich.js (3ms) (pid 27176)
2098
+ Compiled rich/base.js (11ms) (pid 27176)
2099
+ Compiled rich/ckeditor_path.js (0ms) (pid 27176)
2100
+ Compiled ckeditor/ckeditor.js (7ms) (pid 27176)
2101
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 27176)
2102
+ Compiled application.css (7ms) (pid 27176)
2103
+ Compiled active_admin.css (1934ms) (pid 27176)
2104
+ Compiled posts.css (6ms) (pid 27176)
2105
+ Compiled rich/editor.css (0ms) (pid 27176)
2106
+ Compiled scaffold.css (0ms) (pid 27176)
2107
+ Compiled rich/application.js (35ms) (pid 27176)
2108
+ Compiled rich/uploader.js (19ms) (pid 27176)
2109
+ Compiled rich/application.css (253ms) (pid 27176)
2110
+ Compiled rich/mixins/reset.css (278ms) (pid 27176)
2111
+
2112
+
2113
+ Started GET "/posts/1/edit" for 127.0.0.1 at Sun Oct 16 15:22:48 +0200 2011
2114
+ Processing by PostsController#edit as HTML
2115
+ Parameters: {"id"=>"1"}
2116
+ Rendered posts/_formtastic_form.html.erb (12.6ms)
2117
+ Rendered posts/edit.html.erb within layouts/application (20.1ms)
2118
+ Completed 200 OK in 70ms (Views: 64.8ms | ActiveRecord: 0.6ms)
2119
+
2120
+
2121
+ Started GET "/assets/rich/editor.css" for 127.0.0.1 at Sun Oct 16 15:22:49 +0200 2011
2122
+
2123
+ ActionController::RoutingError (No route matches [GET] "/assets/rich/editor.css"):
2124
+
2125
+
2126
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
2127
+
2128
+
2129
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:22:52 +0200 2011
2130
+ Processing by Rich::FilesController#index as HTML
2131
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2132
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (51.6ms)
2133
+ Completed 500 Internal Server Error in 501ms
2134
+
2135
+ ActionView::Template::Error (fileuploader.js isn't precompiled):
2136
+ 1: <% content_for :head do %>
2137
+ 2: <%= javascript_include_tag "fileuploader" %>
2138
+ 3: <% end %>
2139
+ 4:
2140
+ 5: <header>
2141
+
2142
+
2143
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
2144
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
2145
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (23.6ms)
2146
+ Compiled application.js (44ms) (pid 27960)
2147
+ Compiled jquery.js (17ms) (pid 27960)
2148
+ Compiled jquery_ujs.js (2ms) (pid 27960)
2149
+ Compiled rich.js (5ms) (pid 27960)
2150
+ Compiled rich/base.js (21ms) (pid 27960)
2151
+ Compiled rich/ckeditor_path.js (0ms) (pid 27960)
2152
+ Compiled ckeditor/ckeditor.js (10ms) (pid 27960)
2153
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 27960)
2154
+ Compiled application.css (39ms) (pid 27960)
2155
+ Compiled active_admin.css (1856ms) (pid 27960)
2156
+ Compiled posts.css (36ms) (pid 27960)
2157
+ Compiled rich/editor.css (21ms) (pid 27960)
2158
+ Compiled scaffold.css (19ms) (pid 27960)
2159
+ Compiled rich/application.js (24ms) (pid 27960)
2160
+ Compiled rich/uploader.js (19ms) (pid 27960)
2161
+ Compiled rich/application.css (172ms) (pid 27960)
2162
+ Compiled rich/mixins/reset.css (101ms) (pid 27960)
2163
+ Compiled application.js (22ms) (pid 27744)
2164
+ Compiled jquery.js (30ms) (pid 27744)
2165
+ Compiled jquery_ujs.js (3ms) (pid 27744)
2166
+ Compiled rich.js (18ms) (pid 27744)
2167
+ Compiled rich/base.js (29ms) (pid 27744)
2168
+ Compiled rich/ckeditor_path.js (13ms) (pid 27744)
2169
+ Compiled ckeditor/ckeditor.js (7ms) (pid 27744)
2170
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 27744)
2171
+ Compiled application.css (47ms) (pid 27744)
2172
+ Compiled active_admin.css (2157ms) (pid 27744)
2173
+ Compiled posts.css (23ms) (pid 27744)
2174
+ Compiled rich/editor.css (18ms) (pid 27744)
2175
+ Compiled scaffold.css (16ms) (pid 27744)
2176
+ Compiled rich/application.js (27ms) (pid 27744)
2177
+ Compiled rich/uploader.js (17ms) (pid 27744)
2178
+ Compiled rich/application.css (295ms) (pid 27744)
2179
+ Compiled rich/mixins/reset.css (244ms) (pid 27744)
2180
+
2181
+
2182
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:28:44 +0200 2011
2183
+ Processing by Rich::FilesController#index as HTML
2184
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2185
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (14.4ms)
2186
+ Completed 500 Internal Server Error in 450ms
2187
+
2188
+ ActionView::Template::Error (fileuploader.js isn't precompiled):
2189
+ 1: <% content_for :head do %>
2190
+ 2: <%= javascript_include_tag "fileuploader" %>
2191
+ 3: <% end %>
2192
+ 4:
2193
+ 5: <header>
2194
+
2195
+
2196
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.9ms)
2197
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
2198
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.6ms)
2199
+
2200
+
2201
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:28:45 +0200 2011
2202
+ Processing by Rich::FilesController#index as HTML
2203
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2204
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (9.7ms)
2205
+ Completed 500 Internal Server Error in 424ms
2206
+
2207
+ ActionView::Template::Error (fileuploader.js isn't precompiled):
2208
+ 1: <% content_for :head do %>
2209
+ 2: <%= javascript_include_tag "fileuploader" %>
2210
+ 3: <% end %>
2211
+ 4:
2212
+ 5: <header>
2213
+
2214
+
2215
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
2216
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
2217
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
2218
+
2219
+
2220
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:28:45 +0200 2011
2221
+ Processing by Rich::FilesController#index as HTML
2222
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2223
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (7.7ms)
2224
+ Completed 500 Internal Server Error in 417ms
2225
+
2226
+ ActionView::Template::Error (fileuploader.js isn't precompiled):
2227
+ 1: <% content_for :head do %>
2228
+ 2: <%= javascript_include_tag "fileuploader" %>
2229
+ 3: <% end %>
2230
+ 4:
2231
+ 5: <header>
2232
+
2233
+
2234
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
2235
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2236
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.0ms)
2237
+
2238
+
2239
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:28:46 +0200 2011
2240
+ Processing by Rich::FilesController#index as HTML
2241
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2242
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (7.1ms)
2243
+ Completed 500 Internal Server Error in 386ms
2244
+
2245
+ ActionView::Template::Error (fileuploader.js isn't precompiled):
2246
+ 1: <% content_for :head do %>
2247
+ 2: <%= javascript_include_tag "fileuploader" %>
2248
+ 3: <% end %>
2249
+ 4:
2250
+ 5: <header>
2251
+
2252
+
2253
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (96.6ms)
2254
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
2255
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (102.0ms)
2256
+
2257
+
2258
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:28:46 +0200 2011
2259
+ Processing by Rich::FilesController#index as HTML
2260
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2261
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (2.8ms)
2262
+ Completed 500 Internal Server Error in 435ms
2263
+
2264
+ ActionView::Template::Error (fileuploader.js isn't precompiled):
2265
+ 1: <% content_for :head do %>
2266
+ 2: <%= javascript_include_tag "fileuploader" %>
2267
+ 3: <% end %>
2268
+ 4:
2269
+ 5: <header>
2270
+
2271
+
2272
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
2273
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2274
+ Rendered /Library/Ruby/Gems/1.8/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
2275
+ Compiled application.js (8ms) (pid 28655)
2276
+ Compiled jquery.js (13ms) (pid 28655)
2277
+ Compiled jquery_ujs.js (2ms) (pid 28655)
2278
+ Compiled rich.js (6ms) (pid 28655)
2279
+ Compiled rich/base.js (34ms) (pid 28655)
2280
+ Compiled rich/ckeditor_path.js (0ms) (pid 28655)
2281
+ Compiled ckeditor/ckeditor.js (9ms) (pid 28655)
2282
+ Compiled ckeditor/adapters/jquery.js (0ms) (pid 28655)
2283
+ Compiled application.css (20ms) (pid 28655)
2284
+ Compiled active_admin.css (1711ms) (pid 28655)
2285
+ Compiled posts.css (19ms) (pid 28655)
2286
+ Compiled rich/editor.css (25ms) (pid 28655)
2287
+ Compiled scaffold.css (16ms) (pid 28655)
2288
+ Compiled rich/application.js (25ms) (pid 28655)
2289
+ Compiled fileuploader.js (1ms) (pid 28655)
2290
+ Compiled rich/uploader.js (24ms) (pid 28655)
2291
+ Compiled rich/application.css (202ms) (pid 28655)
2292
+ Compiled rich/mixins/reset.css (104ms) (pid 28655)
2293
+ Compiled application.js (6ms) (pid 28487)
2294
+ Compiled jquery.js (6ms) (pid 28487)
2295
+ Compiled jquery_ujs.js (1ms) (pid 28487)
2296
+ Compiled rich.js (5ms) (pid 28487)
2297
+ Compiled rich/base.js (21ms) (pid 28487)
2298
+ Compiled rich/ckeditor_path.js (0ms) (pid 28487)
2299
+ Compiled ckeditor/ckeditor.js (8ms) (pid 28487)
2300
+ Compiled ckeditor/adapters/jquery.js (1ms) (pid 28487)
2301
+ Compiled application.css (5ms) (pid 28487)
2302
+ Compiled active_admin.css (1644ms) (pid 28487)
2303
+ Compiled posts.css (0ms) (pid 28487)
2304
+ Compiled rich/editor.css (0ms) (pid 28487)
2305
+ Compiled scaffold.css (0ms) (pid 28487)
2306
+ Compiled rich/application.js (9ms) (pid 28487)
2307
+ Compiled fileuploader.js (1ms) (pid 28487)
2308
+ Compiled rich/uploader.js (0ms) (pid 28487)
2309
+ Compiled rich/application.css (240ms) (pid 28487)
2310
+ Compiled rich/mixins/reset.css (226ms) (pid 28487)
2311
+
2312
+
2313
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:33:05 +0200 2011
2314
+ Processing by Rich::FilesController#index as HTML
2315
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2316
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.6ms)
2317
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2318
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
2319
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2320
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2321
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2322
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2323
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2324
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2325
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2326
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.3ms)
2327
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2328
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2329
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (101.3ms)
2330
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
2331
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2332
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.1ms)
2333
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
2334
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2335
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
2336
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.8ms)
2337
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2338
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2339
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
2340
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2341
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2342
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
2343
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.0ms)
2344
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
2345
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2346
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2347
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (223.8ms)
2348
+ Completed 200 OK in 596ms (Views: 287.4ms | ActiveRecord: 2.0ms)
2349
+
2350
+
2351
+ Started POST "/rich/files?authenticity_token=Xy8IiUPStKuJPTepj%2BroSnFRulDW0CSTUAQVWO45ax4%3D&qqfile=IMG_0685.JPG" for 127.0.0.1 at Sun Oct 16 15:33:34 +0200 2011
2352
+ Processing by Rich::FilesController#create as */*
2353
+ Parameters: {"qqfile"=>"IMG_0685.JPG", "authenticity_token"=>"Xy8IiUPStKuJPTepj+roSnFRulDW0CSTUAQVWO45ax4=", "file"=>#<ActionDispatch::Http::UploadedFile:0x1098dc2a0 @content_type="application/octet-stream", @headers=nil, @original_filename="IMG_0685.JPG", @tempfile=#<File:/var/folders/5b/4wxpdqkx5g11_b0jnjjtdrq40000gn/T/raw-upload.20111016-28860-1pfjebp-0>>}
2354
+ [paperclip] Saving attachments.
2355
+ [paperclip] saving /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/test/dummy/public/system/images/59/original/img-0685.jpg
2356
+ [paperclip] saving /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/test/dummy/public/system/images/59/thumb/img-0685.jpg
2357
+ [paperclip] saving /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/test/dummy/public/system/images/59/large/img-0685.jpg
2358
+ Completed 200 OK in 2190ms (Views: 28.7ms | ActiveRecord: 78.9ms)
2359
+
2360
+
2361
+ Started GET "/rich/files/59" for 127.0.0.1 at Sun Oct 16 15:33:37 +0200 2011
2362
+ Processing by Rich::FilesController#show as */*
2363
+ Parameters: {"id"=>"59"}
2364
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.9ms)
2365
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/show.html.erb (3.8ms)
2366
+ Completed 200 OK in 40ms (Views: 30.9ms | ActiveRecord: 0.6ms)
2367
+
2368
+
2369
+ Started DELETE "/rich/files/59" for 127.0.0.1 at Sun Oct 16 15:33:45 +0200 2011
2370
+ Processing by Rich::FilesController#destroy as JS
2371
+ Parameters: {"id"=>"59"}
2372
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/destroy.js.erb (0.4ms)
2373
+ Completed 200 OK in 88ms (Views: 79.8ms | ActiveRecord: 5.6ms)
2374
+
2375
+
2376
+ Started DELETE "/rich/files/58" for 127.0.0.1 at Sun Oct 16 15:33:48 +0200 2011
2377
+ Processing by Rich::FilesController#destroy as JS
2378
+ Parameters: {"id"=>"58"}
2379
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/destroy.js.erb (0.1ms)
2380
+ Completed 200 OK in 9ms (Views: 3.0ms | ActiveRecord: 3.9ms)
2381
+
2382
+
2383
+ Started GET "/rich/files/?CKEditor=post_content_editor&CKEditorFuncNum=4" for 127.0.0.1 at Sun Oct 16 15:33:57 +0200 2011
2384
+ Processing by Rich::FilesController#index as HTML
2385
+ Parameters: {"CKEditorFuncNum"=>"4", "CKEditor"=>"post_content_editor"}
2386
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.7ms)
2387
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2388
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2389
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2390
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2391
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2392
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2393
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2394
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.6ms)
2395
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.5ms)
2396
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2397
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (98.1ms)
2398
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2399
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2400
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
2401
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2402
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2403
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
2404
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2405
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.0ms)
2406
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
2407
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (3.2ms)
2408
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.3ms)
2409
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2410
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
2411
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
2412
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2413
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.1ms)
2414
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.2ms)
2415
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/_image.html.erb (2.4ms)
2416
+ Rendered /Users/bastiaan/Files/Work/Perceptor website/_sandbox/rich/app/views/rich/files/index.html.erb within layouts/rich/application (175.5ms)
2417
+ Completed 200 OK in 512ms (Views: 177.7ms | ActiveRecord: 0.7ms)