flms 0.0.3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (516) hide show
  1. checksums.yaml +15 -0
  2. data/README.md +102 -2
  3. data/app/assets/javascripts/flms/admin.js +1 -1
  4. data/app/assets/javascripts/flms/{bootstrap.js → admin/bootstrap.js} +0 -0
  5. data/app/assets/javascripts/flms/{layout.coffee → admin/layout.coffee} +2 -2
  6. data/app/assets/javascripts/flms/{blocks/index → admin/pages/edit}/block.coffee +0 -0
  7. data/app/assets/javascripts/flms/{blocks/index → admin/pages/edit}/block_list.coffee +1 -1
  8. data/app/assets/javascripts/flms/{blocks/index/index.coffee → admin/pages/edit/edit.coffee} +2 -2
  9. data/app/assets/javascripts/flms/public.js +17 -0
  10. data/app/assets/stylesheets/flms/admin.css +1 -1
  11. data/app/assets/stylesheets/flms/{blocks → admin/blocks}/show.sass +0 -0
  12. data/app/assets/stylesheets/flms/{home.sass → admin/home.sass} +0 -1
  13. data/app/assets/stylesheets/flms/admin/layers/form.sass +4 -0
  14. data/app/assets/stylesheets/flms/{layout.sass → admin/layout.sass} +0 -0
  15. data/app/assets/stylesheets/flms/{login.sass → admin/login.sass} +0 -0
  16. data/app/assets/stylesheets/flms/{blocks/index.sass → admin/pages/edit.sass} +1 -1
  17. data/app/assets/stylesheets/flms/public.css +8 -0
  18. data/app/assets/stylesheets/flms/public/public.sass +52 -0
  19. data/app/controllers/flms/abstract_layer_controller.rb +45 -0
  20. data/app/controllers/flms/animation_layers_controller.rb +26 -0
  21. data/app/controllers/flms/application_controller.rb +13 -0
  22. data/app/controllers/flms/blocks_controller.rb +20 -22
  23. data/app/controllers/flms/embed_layers_controller.rb +24 -0
  24. data/app/controllers/flms/image_layers_controller.rb +6 -54
  25. data/app/controllers/flms/layers_controller.rb +3 -10
  26. data/app/controllers/flms/pages_controller.rb +44 -5
  27. data/app/controllers/flms/paragraph_layers_controller.rb +24 -0
  28. data/app/controllers/flms/text_layers_controller.rb +24 -0
  29. data/app/helpers/flms/application_helper.rb +13 -0
  30. data/app/models/flms/animation_layer.rb +33 -0
  31. data/app/models/flms/block.rb +17 -1
  32. data/app/models/flms/blocks_page.rb +3 -0
  33. data/app/models/flms/embed_layer.rb +12 -0
  34. data/app/models/flms/end_state_keyframe.rb +17 -0
  35. data/app/models/flms/image_layer.rb +23 -1
  36. data/app/models/flms/keyframe.rb +130 -0
  37. data/app/models/flms/layer.rb +91 -2
  38. data/app/models/flms/page.rb +14 -2
  39. data/app/models/flms/paragraph_layer.rb +21 -0
  40. data/app/models/flms/start_state_keyframe.rb +17 -0
  41. data/app/models/flms/target_state_keyframe.rb +17 -0
  42. data/app/models/flms/text_layer.rb +20 -0
  43. data/app/uploaders/image_uploader.rb +21 -34
  44. data/app/uploaders/thumbnail_image_uploader.rb +36 -0
  45. data/app/view_objects/flms/animation_layer_view_object.rb +45 -0
  46. data/app/view_objects/flms/embed_layer_view_object.rb +15 -0
  47. data/app/view_objects/flms/image_layer_view_object.rb +22 -0
  48. data/app/view_objects/flms/keyframe_view_object.rb +92 -0
  49. data/app/view_objects/flms/layer_view_object.rb +72 -0
  50. data/app/view_objects/flms/paragraph_layer_view_object.rb +19 -0
  51. data/app/view_objects/flms/text_layer_view_object.rb +30 -0
  52. data/app/views/flms/animation_layers/_form.html.haml +56 -0
  53. data/app/views/flms/animation_layers/edit.html.haml +1 -0
  54. data/app/views/flms/animation_layers/new.html.haml +1 -0
  55. data/app/views/flms/blocks/_form.html.haml +32 -18
  56. data/app/views/flms/blocks/edit.html.haml +61 -2
  57. data/app/views/flms/blocks/index.html.haml +13 -22
  58. data/app/views/flms/blocks/show.html.haml +12 -35
  59. data/app/views/flms/elements/_animation_layer.html.haml +2 -0
  60. data/app/views/flms/elements/_block.html.haml +3 -0
  61. data/app/views/flms/elements/_embed_layer.html.haml +2 -0
  62. data/app/views/flms/elements/_image_layer.html.haml +2 -0
  63. data/app/views/flms/elements/_page.html.haml +11 -0
  64. data/app/views/flms/elements/_paragraph_layer.html.haml +4 -0
  65. data/app/views/flms/elements/_text_layer.html.haml +2 -0
  66. data/app/views/flms/embed_layers/_form.html.haml +29 -0
  67. data/app/views/flms/embed_layers/edit.html.haml +2 -0
  68. data/app/views/flms/embed_layers/new.html.haml +2 -0
  69. data/app/views/flms/image_layers/_form.html.haml +31 -17
  70. data/app/views/flms/image_layers/new.html.haml +1 -2
  71. data/app/views/flms/layers/_common_fields.html.haml +41 -0
  72. data/app/views/flms/layers/_keyframe_fields.html.haml +127 -0
  73. data/app/views/flms/pages/_add_block.html.haml +8 -0
  74. data/app/views/flms/pages/_block_list.html.haml +44 -0
  75. data/app/views/flms/pages/_form.html.haml +22 -23
  76. data/app/views/flms/pages/edit.html.haml +4 -3
  77. data/app/views/flms/pages/index.html.haml +4 -3
  78. data/app/views/flms/pages/show.html.haml +8 -6
  79. data/app/views/flms/paragraph_layers/_form.html.haml +41 -0
  80. data/app/views/flms/paragraph_layers/edit.html.haml +2 -0
  81. data/app/views/flms/paragraph_layers/new.html.haml +2 -0
  82. data/app/views/flms/text_layers/_form.html.haml +43 -0
  83. data/app/views/flms/text_layers/edit.html.haml +2 -0
  84. data/app/views/flms/text_layers/new.html.haml +2 -0
  85. data/app/views/layouts/flms/_plain_styling.html.haml +1 -0
  86. data/app/views/layouts/flms/admin.html.haml +8 -3
  87. data/app/views/layouts/flms/public.html.haml +13 -0
  88. data/config/initializers/carrierwave.rb +62 -6
  89. data/config/initializers/mime_types.rb +3 -0
  90. data/config/initializers/validators.rb +1 -0
  91. data/config/routes.rb +13 -5
  92. data/config/s3.yml.example +14 -0
  93. data/db/migrate/{20130302011705_create_flms_blocks.rb → 20130302011705_flms_create_blocks.rb} +3 -1
  94. data/db/migrate/{20130302015459_create_flms_blocks_pages.rb → 20130302015459_flms_create_blocks_pages.rb} +1 -1
  95. data/db/migrate/20130312220011_flms_create_layers.rb +40 -0
  96. data/db/migrate/20130327183815_flms_create_keyframes.rb +24 -0
  97. data/lib/flms/css_name_validator.rb +9 -0
  98. data/lib/flms/version.rb +1 -1
  99. data/lib/tasks/flms_tasks.rake +46 -6
  100. data/spec/controllers/animation_layers_controller_spec.rb +38 -0
  101. data/spec/controllers/blocks_controller_spec.rb +18 -44
  102. data/spec/controllers/embed_layers_controller_spec.rb +52 -0
  103. data/spec/controllers/image_layers_controller_spec.rb +73 -0
  104. data/spec/controllers/layers_controller_spec.rb +4 -5
  105. data/spec/controllers/pages_controller_spec.rb +66 -1
  106. data/spec/controllers/paragraph_layers_controller_spec.rb +53 -0
  107. data/spec/controllers/text_layers_controller_spec.rb +73 -0
  108. data/spec/dummy/app/views/home/index.html.haml +1 -1
  109. data/spec/dummy/config/environments/development.rb +1 -0
  110. data/spec/dummy/config/environments/production.rb +1 -0
  111. data/spec/dummy/config/environments/test.rb +1 -0
  112. data/spec/dummy/config/initializers/flms.rb +1 -0
  113. data/spec/dummy/config/s3.yml +12 -0
  114. data/spec/dummy/config/s3.yml.example +12 -0
  115. data/spec/dummy/db/development.sqlite3 +0 -0
  116. data/spec/dummy/db/schema.rb +40 -5
  117. data/spec/dummy/db/test.sqlite3 +0 -0
  118. data/spec/dummy/log/development.log +4376 -0
  119. data/spec/dummy/log/test.log +131766 -0
  120. data/spec/dummy/public/uploads/flms/animation_layer/image/1/normal_placeholder.png +0 -0
  121. data/spec/dummy/public/uploads/flms/animation_layer/image/1/placeholder.png +0 -0
  122. data/spec/dummy/public/uploads/flms/animation_layer/image/1/small_placeholder.png +0 -0
  123. data/spec/dummy/public/uploads/flms/animation_layer/image/1/thumb_placeholder.png +0 -0
  124. data/spec/dummy/public/uploads/flms/animation_layer/image/7/normal_placeholder.png +0 -0
  125. data/spec/dummy/public/uploads/flms/animation_layer/image/7/placeholder.png +0 -0
  126. data/spec/dummy/public/uploads/flms/animation_layer/image/7/small_placeholder.png +0 -0
  127. data/spec/dummy/public/uploads/flms/animation_layer/image/7/thumb_placeholder.png +0 -0
  128. data/spec/dummy/public/uploads/flms/block/thumbnail/1/placeholder.png +0 -0
  129. data/spec/dummy/public/uploads/flms/block/thumbnail/1/small_placeholder.png +0 -0
  130. data/spec/dummy/public/uploads/flms/block/thumbnail/1/thumb_placeholder.png +0 -0
  131. data/spec/dummy/public/uploads/flms/image_layer/image/1/normal_placeholder.png +0 -0
  132. data/spec/dummy/public/uploads/flms/image_layer/image/1/placeholder.png +0 -0
  133. data/spec/dummy/public/uploads/flms/image_layer/image/1/small_placeholder.png +0 -0
  134. data/spec/dummy/public/uploads/flms/image_layer/image/1/thumb_placeholder.png +0 -0
  135. data/spec/dummy/public/uploads/flms/image_layer/image/2/normal_placeholder.png +0 -0
  136. data/spec/dummy/public/uploads/flms/image_layer/image/2/placeholder.png +0 -0
  137. data/spec/dummy/public/uploads/flms/image_layer/image/2/small_placeholder.png +0 -0
  138. data/spec/dummy/public/uploads/flms/image_layer/image/2/thumb_placeholder.png +0 -0
  139. data/spec/dummy/public/uploads/flms/image_layer/image/3/normal_placeholder.png +0 -0
  140. data/spec/dummy/public/uploads/flms/image_layer/image/3/placeholder.png +0 -0
  141. data/spec/dummy/public/uploads/flms/image_layer/image/3/small_placeholder.png +0 -0
  142. data/spec/dummy/public/uploads/flms/image_layer/image/3/thumb_placeholder.png +0 -0
  143. data/spec/dummy/tmp/cache/assets/C4C/010/sprockets%2F74558ebf3d0666286090250c04b945a1 +0 -0
  144. data/spec/dummy/tmp/cache/assets/C4C/7C0/sprockets%2F829fa8a51f2e2266774e2007d7141414 +0 -0
  145. data/spec/dummy/tmp/cache/assets/C57/C80/sprockets%2F74f66b30036f872b250553c91f2981d8 +0 -0
  146. data/spec/dummy/tmp/cache/assets/C59/520/sprockets%2Ff2296184148079d68a35d80635c702fc +0 -0
  147. data/spec/dummy/tmp/cache/assets/C62/B80/sprockets%2Fe2573350e6996f3f19f06c03687339d2 +0 -0
  148. data/spec/dummy/tmp/cache/assets/C84/200/sprockets%2F6d5671bc22b630f45761e90488b3a909 +0 -0
  149. data/spec/dummy/tmp/cache/assets/C86/490/sprockets%2F196ee25088eb975920380e3b5fd22325 +0 -0
  150. data/spec/dummy/tmp/cache/assets/C86/F40/sprockets%2Fb9924512ef3de6aa72460258706865e2 +0 -0
  151. data/spec/dummy/tmp/cache/assets/CA7/AB0/sprockets%2F88f069985c1ffca86f6394209656964c +0 -0
  152. data/spec/dummy/tmp/cache/assets/CA9/AC0/sprockets%2F2f3e0ad16e81532007e094c081594f7e +0 -0
  153. data/spec/dummy/tmp/cache/assets/CA9/F00/sprockets%2F289543b9c4d5ea08789000ce30a95c00 +0 -0
  154. data/spec/dummy/tmp/cache/assets/CAB/C80/sprockets%2Fc4e739111d82c7189113aeb228816ba8 +0 -0
  155. data/spec/dummy/tmp/cache/assets/CB0/330/sprockets%2F228e5f742b01972dc6ce664713264d3c +0 -0
  156. data/spec/dummy/tmp/cache/assets/CB3/E00/sprockets%2F97a8391a80361fb1870669c06a27ae5c +0 -0
  157. data/spec/dummy/tmp/cache/assets/CC9/C00/sprockets%2F454c58b0a3b0a0a64fd60bb217197580 +0 -0
  158. data/spec/dummy/tmp/cache/assets/CD1/8F0/sprockets%2F4032f7a5b2133a8b8f963e12fd6120c5 +0 -0
  159. data/spec/dummy/tmp/cache/assets/CD7/000/sprockets%2Ff6534fbac7e738c013414d148211bd95 +0 -0
  160. data/spec/dummy/tmp/cache/assets/CD9/AA0/sprockets%2F80c500e462b3e91b00f48609b56ff91b +0 -0
  161. data/spec/dummy/tmp/cache/assets/CDB/510/sprockets%2Fd61745a24c4636f8813fa14038bac69a +0 -0
  162. data/spec/dummy/tmp/cache/assets/CDD/640/sprockets%2F557bde539a95020fd557e11f813242fa +0 -0
  163. data/spec/dummy/tmp/cache/assets/CDF/200/sprockets%2F9b251cfabb019f79e706200499d623c6 +0 -0
  164. data/spec/dummy/tmp/cache/assets/CE0/420/sprockets%2F5b3f22c66d8a269533a5689c1be5c800 +0 -0
  165. data/spec/dummy/tmp/cache/assets/CEE/C10/sprockets%2F39310232adc120c16210bdc84184fdaf +0 -0
  166. data/spec/dummy/tmp/cache/assets/D02/F10/sprockets%2Fd10499187b5f8d8d85769775d1ecb7c7 +0 -0
  167. data/spec/dummy/tmp/cache/assets/D07/A50/sprockets%2Fdda362e83c229c06b2bb63686e273d13 +0 -0
  168. data/spec/dummy/tmp/cache/assets/D09/5C0/sprockets%2F7cd3521c63623eb6f02dbb514991a6f6 +0 -0
  169. data/spec/dummy/tmp/cache/assets/D09/7C0/sprockets%2F892c677abcf22a046a610427fa29d4b7 +0 -0
  170. data/spec/dummy/tmp/cache/assets/D0B/0C0/sprockets%2Fb2722b54d89845b9619cadda1a04158c +0 -0
  171. data/spec/dummy/tmp/cache/assets/D11/9D0/sprockets%2F87436354c263adb7b069d7b3d19ace18 +0 -0
  172. data/spec/dummy/tmp/cache/assets/D15/6F0/sprockets%2F32e2b26b766ac7fb86d0c7062c976c29 +0 -0
  173. data/spec/dummy/tmp/cache/assets/D18/9C0/sprockets%2Ff92d239ff629c160ee015e3845a6c9c3 +0 -0
  174. data/spec/dummy/tmp/cache/assets/D18/DF0/sprockets%2F8d53dfef1f06c56f73026d82f29322a9 +0 -0
  175. data/spec/dummy/tmp/cache/assets/D19/060/sprockets%2F4be3ef7d038e55cffc27166271638f60 +0 -0
  176. data/spec/dummy/tmp/cache/assets/D1C/E30/sprockets%2F605ce82d89dce653d672485b9c1c52f1 +0 -0
  177. data/spec/dummy/tmp/cache/assets/D1E/1D0/sprockets%2Ffeec495723d877b92c74db2055516bc9 +0 -0
  178. data/spec/dummy/tmp/cache/assets/D22/660/sprockets%2F43f26c23b8ddf974767ca6f67b6530f6 +0 -0
  179. data/spec/dummy/tmp/cache/assets/D24/E10/sprockets%2Fd9032b251e778acab41d4639b003a1ca +0 -0
  180. data/spec/dummy/tmp/cache/assets/D25/A70/sprockets%2Fb7d53812242f41eafe2dc223317db30a +0 -0
  181. data/spec/dummy/tmp/cache/assets/D2D/190/sprockets%2Fcea5d014c171b7a836113bb9b0f9f712 +0 -0
  182. data/spec/dummy/tmp/cache/assets/D2E/130/sprockets%2F5ebb788f274dd034257c0bc0400fae50 +0 -0
  183. data/spec/dummy/tmp/cache/assets/D3B/440/sprockets%2Fabe31f236167ba051f6ff849d0a7282f +0 -0
  184. data/spec/dummy/tmp/cache/assets/D3B/550/sprockets%2Fb61caf9834ac8c31691851ac024f26ef +0 -0
  185. data/spec/dummy/tmp/cache/assets/D3B/980/sprockets%2Ff0e607eb6489ed61f27a5233cae0172e +0 -0
  186. data/spec/dummy/tmp/cache/assets/D3B/A90/sprockets%2F3a9f74af10313e521d21dc4d78b4f9b9 +0 -0
  187. data/spec/dummy/tmp/cache/assets/D46/210/sprockets%2F45a8d49c8edbaf91f38ab1495430384c +0 -0
  188. data/spec/dummy/tmp/cache/assets/D48/DD0/sprockets%2F75d43fac4136d1bbabf481f977b78637 +0 -0
  189. data/spec/dummy/tmp/cache/assets/D4A/B40/sprockets%2F509d2dc1350975d781c50dffc58ef53f +0 -0
  190. data/spec/dummy/tmp/cache/assets/D4B/D10/sprockets%2F76e4e1fa5d891fe2261834cf322f38ef +0 -0
  191. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  192. data/spec/dummy/tmp/cache/assets/D50/0B0/sprockets%2F6c3a019b7442761786cc7bef8e8e7c6c +0 -0
  193. data/spec/dummy/tmp/cache/assets/D53/F80/sprockets%2F11d791b713f9b9cf2bb85bd7f6589b84 +0 -0
  194. data/spec/dummy/tmp/cache/assets/D54/BA0/sprockets%2F89de5abea3b3002f6e73210bb7a3c330 +0 -0
  195. data/spec/dummy/tmp/cache/assets/D54/DE0/sprockets%2F77af3e306bb966f71f83e90e2a8868db +0 -0
  196. data/spec/dummy/tmp/cache/assets/D5B/1F0/sprockets%2F4d98e747aa4bb9fc8859f49a45159e1c +0 -0
  197. data/spec/dummy/tmp/cache/assets/D64/D10/sprockets%2F9857068018fbac51ecd0a7510bcca55e +0 -0
  198. data/spec/dummy/tmp/cache/assets/D66/8E0/sprockets%2F0cbda18dbb9e414ed0bf1199358e1742 +0 -0
  199. data/spec/dummy/tmp/cache/assets/D6D/150/sprockets%2Fe84b6e0602e1c5218c9da9d46da4d74b +0 -0
  200. data/spec/dummy/tmp/cache/assets/D6E/870/sprockets%2F3f77e0b5396013fd145a6fdd21bc9b7f +0 -0
  201. data/spec/dummy/tmp/cache/assets/D71/2D0/sprockets%2F958685af3478f12a33ffaa5cfa26e0d1 +0 -0
  202. data/spec/dummy/tmp/cache/assets/D77/D80/sprockets%2F7ad794c63274a9812dfbabc1dae69692 +0 -0
  203. data/spec/dummy/tmp/cache/assets/D79/DE0/sprockets%2F9e7131d002f39be972e9918bdfbbcc66 +0 -0
  204. data/spec/dummy/tmp/cache/assets/D7C/3A0/sprockets%2Fec63717067efd6b2daf3423edf70f689 +0 -0
  205. data/spec/dummy/tmp/cache/assets/D7D/BB0/sprockets%2Fe66f1c4ba6885a4d1de08c3d81f991d9 +0 -0
  206. data/spec/dummy/tmp/cache/assets/D81/1D0/sprockets%2F9f446f7e8b3c18c6f7b636b71a8ba8d4 +0 -0
  207. data/spec/dummy/tmp/cache/assets/D81/400/sprockets%2F566656e2cc9e698b1dbbd56d6e2e6b36 +0 -0
  208. data/spec/dummy/tmp/cache/assets/D8C/DE0/sprockets%2Fb95e7d75de89e1285d0e6ef8d85cb508 +0 -0
  209. data/spec/dummy/tmp/cache/assets/D91/320/sprockets%2F322e2344c1fc1234ffd9b3142eecaf6f +0 -0
  210. data/spec/dummy/tmp/cache/assets/D92/9B0/sprockets%2F96f73ad8237fa0a4bb3aa8cbe083551a +0 -0
  211. data/spec/dummy/tmp/cache/assets/D93/0C0/sprockets%2Fab900c084c9c51c312ee3457cee8cdc2 +0 -0
  212. data/spec/dummy/tmp/cache/assets/D93/3F0/sprockets%2Fb6aecc2fe36010208fc8c4cc9e04672c +0 -0
  213. data/spec/dummy/tmp/cache/assets/D97/1B0/sprockets%2Fe0ae6a22a963d0e0819ce6436eb57cae +0 -0
  214. data/spec/dummy/tmp/cache/assets/D98/FD0/sprockets%2F6f253bd2bf824ac38c69bfe1418a04be +0 -0
  215. data/spec/dummy/tmp/cache/assets/D99/CF0/sprockets%2F015b5a48fa7906d045fc23db8a60feef +0 -0
  216. data/spec/dummy/tmp/cache/assets/D9A/820/sprockets%2F594caa19e550457af23ae9fba500a9fe +0 -0
  217. data/spec/dummy/tmp/cache/assets/D9E/220/sprockets%2Fd129fcf804e89814c2f4abbe0336cba9 +0 -0
  218. data/spec/dummy/tmp/cache/assets/D9E/8D0/sprockets%2F2ae41880ba1dbb6f570fe0e790678dbf +0 -0
  219. data/spec/dummy/tmp/cache/assets/D9E/A30/sprockets%2Fc82d9ee0ea1a5360faa296957c2bf17e +0 -0
  220. data/spec/dummy/tmp/cache/assets/DA0/C20/sprockets%2Fe1a590abeca61529529de36efa97b43e +0 -0
  221. data/spec/dummy/tmp/cache/assets/DA2/330/sprockets%2F27697dddd23a0913339ccb95dabd7ae7 +0 -0
  222. data/spec/dummy/tmp/cache/assets/DA3/920/sprockets%2F6c45b9f8e0152c78b3c9be1c2e8be53c +0 -0
  223. data/spec/dummy/tmp/cache/assets/DA5/3A0/sprockets%2Fa02e5a4a95bb7c92ec5b63f908eff870 +0 -0
  224. data/spec/dummy/tmp/cache/assets/DA5/BC0/sprockets%2F5b86068a872e5bd841750d6cbd2dfdbf +0 -0
  225. data/spec/dummy/tmp/cache/assets/DA6/360/sprockets%2F1d7b3df8a061fd27e6a956bfd84a93f1 +0 -0
  226. data/spec/dummy/tmp/cache/assets/DA6/A10/sprockets%2Fd226de7dc43ae36657be35fb6e31db89 +0 -0
  227. data/spec/dummy/tmp/cache/assets/DA8/4A0/sprockets%2Ff8ba39d58ace11df624bf7e24c7b5882 +0 -0
  228. data/spec/dummy/tmp/cache/assets/DA8/C30/sprockets%2Fb7d14d588a70a56d7ddac542eef557d6 +0 -0
  229. data/spec/dummy/tmp/cache/assets/DAE/680/sprockets%2Fcd28d437e7fc959fe1e328bca40f5e74 +0 -0
  230. data/spec/dummy/tmp/cache/assets/DB2/1F0/sprockets%2F9fe57997f92efbee3b03df4510a2df57 +0 -0
  231. data/spec/dummy/tmp/cache/assets/DB8/C30/sprockets%2Fca860af2d10e0c745b6e38b12dabe05f +0 -0
  232. data/spec/dummy/tmp/cache/assets/DBF/630/sprockets%2F8423ad7ae72b0bc6baeac10405389fdf +0 -0
  233. data/spec/dummy/tmp/cache/assets/DC1/530/sprockets%2F4db0b289eee7dad03453a5924c20dcfa +0 -0
  234. data/spec/dummy/tmp/cache/assets/DC2/BA0/sprockets%2Feb1b52f8e6baba5409e0e09c3cc70e45 +0 -0
  235. data/spec/dummy/tmp/cache/assets/DCF/0B0/sprockets%2F23db7ab96a5549546bbdd0bc2e6ea86f +0 -0
  236. data/spec/dummy/tmp/cache/assets/DD0/EE0/sprockets%2F4b34c7c215efccbeaf495ee4715734fb +0 -0
  237. data/spec/dummy/tmp/cache/assets/DD4/990/sprockets%2F8dc6b77dc74dfdf830aa8f19b92c130d +0 -0
  238. data/spec/dummy/tmp/cache/assets/DD7/FC0/sprockets%2Fdee985ae48773ae9b4fc4dd0b85ce201 +0 -0
  239. data/spec/dummy/tmp/cache/assets/DD8/DC0/sprockets%2Fcc82f3b4753fc2d729ebbcfec94e3077 +0 -0
  240. data/spec/dummy/tmp/cache/assets/DD9/170/sprockets%2Fccaea8553317199dc77c526fefdfbb27 +0 -0
  241. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  242. data/spec/dummy/tmp/cache/assets/DEA/350/sprockets%2Ffc836da09a20cdbc0b7b49b2525e1bbe +0 -0
  243. data/spec/dummy/tmp/cache/assets/DF1/A10/sprockets%2Fa925a815ca0bff4d6f42fbdf0d323a4f +0 -0
  244. data/spec/dummy/tmp/cache/assets/DF3/820/sprockets%2Fede955e751bbec440cbbfc00473c34ec +0 -0
  245. data/spec/dummy/tmp/cache/assets/DFC/4B0/sprockets%2F30bac9bffe7e6a5ae42a675f55d1c29a +0 -0
  246. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  247. data/spec/dummy/tmp/cache/assets/E09/1A0/sprockets%2Fc76bb4e6dbb4f2afc0f09c79a41e988f +0 -0
  248. data/spec/dummy/tmp/cache/assets/E2D/E20/sprockets%2Fec8c39aa4e1ce3059eeab8f265ead07d +0 -0
  249. data/spec/dummy/tmp/cache/assets/E2E/010/sprockets%2Fab7b35e5d27eba9893aaef6f2bde1b72 +0 -0
  250. data/spec/dummy/tmp/cache/assets/E2E/A50/sprockets%2Fc7e5c2d6c06cfc59aabd0f814de69c3c +0 -0
  251. data/spec/dummy/tmp/cache/assets/E4B/EE0/sprockets%2F06c4dea4fc3cb561b87bd078aab0facc +0 -0
  252. data/spec/dummy/tmp/cache/assets/E5E/A60/sprockets%2Ff83d84dceff86c25a7bab27cbff33ac0 +0 -0
  253. data/spec/dummy/tmp/cache/assets/E6D/8B0/sprockets%2F9edfdf7e85cdd1a69b0eb14c6ce8ed19 +0 -0
  254. data/spec/dummy/tmp/cache/assets/E94/6D0/sprockets%2F3bdb0f5d3a20cbd18bafaaea4ba2a7b2 +0 -0
  255. data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/normal_placeholder.png +0 -0
  256. data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/placeholder.png +0 -0
  257. data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/small_placeholder.png +0 -0
  258. data/spec/dummy/tmp/uploads/20130503-1614-5904-3619/thumb_placeholder.png +0 -0
  259. data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/normal_placeholder.png +0 -0
  260. data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/placeholder.png +0 -0
  261. data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/small_placeholder.png +0 -0
  262. data/spec/dummy/tmp/uploads/20130503-1614-5904-6961/thumb_placeholder.png +0 -0
  263. data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/normal_placeholder.png +0 -0
  264. data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/placeholder.png +0 -0
  265. data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/small_placeholder.png +0 -0
  266. data/spec/dummy/tmp/uploads/20130503-1614-5904-8166/thumb_placeholder.png +0 -0
  267. data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/normal_placeholder.png +0 -0
  268. data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/placeholder.png +0 -0
  269. data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/small_placeholder.png +0 -0
  270. data/spec/dummy/tmp/uploads/20130503-1630-6161-2793/thumb_placeholder.png +0 -0
  271. data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/normal_placeholder.png +0 -0
  272. data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/placeholder.png +0 -0
  273. data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/small_placeholder.png +0 -0
  274. data/spec/dummy/tmp/uploads/20130503-1630-6161-4124/thumb_placeholder.png +0 -0
  275. data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/normal_placeholder.png +0 -0
  276. data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/placeholder.png +0 -0
  277. data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/small_placeholder.png +0 -0
  278. data/spec/dummy/tmp/uploads/20130503-1630-6161-5065/thumb_placeholder.png +0 -0
  279. data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/normal_placeholder.png +0 -0
  280. data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/placeholder.png +0 -0
  281. data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/small_placeholder.png +0 -0
  282. data/spec/dummy/tmp/uploads/20130506-1009-4529-0167/thumb_placeholder.png +0 -0
  283. data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/normal_placeholder.png +0 -0
  284. data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/placeholder.png +0 -0
  285. data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/small_placeholder.png +0 -0
  286. data/spec/dummy/tmp/uploads/20130506-1009-4529-1078/thumb_placeholder.png +0 -0
  287. data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/normal_placeholder.png +0 -0
  288. data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/placeholder.png +0 -0
  289. data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/small_placeholder.png +0 -0
  290. data/spec/dummy/tmp/uploads/20130506-1009-4529-8277/thumb_placeholder.png +0 -0
  291. data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/normal_placeholder.png +0 -0
  292. data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/placeholder.png +0 -0
  293. data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/small_placeholder.png +0 -0
  294. data/spec/dummy/tmp/uploads/20130506-1015-4718-5926/thumb_placeholder.png +0 -0
  295. data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/normal_placeholder.png +0 -0
  296. data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/placeholder.png +0 -0
  297. data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/small_placeholder.png +0 -0
  298. data/spec/dummy/tmp/uploads/20130506-1015-4718-8555/thumb_placeholder.png +0 -0
  299. data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/normal_placeholder.png +0 -0
  300. data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/placeholder.png +0 -0
  301. data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/small_placeholder.png +0 -0
  302. data/spec/dummy/tmp/uploads/20130506-1015-4718-8970/thumb_placeholder.png +0 -0
  303. data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/normal_placeholder.png +0 -0
  304. data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/placeholder.png +0 -0
  305. data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/small_placeholder.png +0 -0
  306. data/spec/dummy/tmp/uploads/20130506-1016-4827-2822/thumb_placeholder.png +0 -0
  307. data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/normal_placeholder.png +0 -0
  308. data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/placeholder.png +0 -0
  309. data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/small_placeholder.png +0 -0
  310. data/spec/dummy/tmp/uploads/20130506-1016-4827-5903/thumb_placeholder.png +0 -0
  311. data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/normal_placeholder.png +0 -0
  312. data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/placeholder.png +0 -0
  313. data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/small_placeholder.png +0 -0
  314. data/spec/dummy/tmp/uploads/20130506-1016-4827-7236/thumb_placeholder.png +0 -0
  315. data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/normal_placeholder.png +0 -0
  316. data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/placeholder.png +0 -0
  317. data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/small_placeholder.png +0 -0
  318. data/spec/dummy/tmp/uploads/20130514-1348-12420-1171/thumb_placeholder.png +0 -0
  319. data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/normal_placeholder.png +0 -0
  320. data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/placeholder.png +0 -0
  321. data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/small_placeholder.png +0 -0
  322. data/spec/dummy/tmp/uploads/20130514-1348-12420-1953/thumb_placeholder.png +0 -0
  323. data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/normal_placeholder.png +0 -0
  324. data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/placeholder.png +0 -0
  325. data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/small_placeholder.png +0 -0
  326. data/spec/dummy/tmp/uploads/20130514-1348-12420-2097/thumb_placeholder.png +0 -0
  327. data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/normal_placeholder.png +0 -0
  328. data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/placeholder.png +0 -0
  329. data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/small_placeholder.png +0 -0
  330. data/spec/dummy/tmp/uploads/20130514-1348-12420-2484/thumb_placeholder.png +0 -0
  331. data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/normal_placeholder.png +0 -0
  332. data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/placeholder.png +0 -0
  333. data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/small_placeholder.png +0 -0
  334. data/spec/dummy/tmp/uploads/20130514-1348-12420-2606/thumb_placeholder.png +0 -0
  335. data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/normal_placeholder.png +0 -0
  336. data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/placeholder.png +0 -0
  337. data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/small_placeholder.png +0 -0
  338. data/spec/dummy/tmp/uploads/20130514-1348-12420-2640/thumb_placeholder.png +0 -0
  339. data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/normal_placeholder.png +0 -0
  340. data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/placeholder.png +0 -0
  341. data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/small_placeholder.png +0 -0
  342. data/spec/dummy/tmp/uploads/20130514-1348-12420-3942/thumb_placeholder.png +0 -0
  343. data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/normal_placeholder.png +0 -0
  344. data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/placeholder.png +0 -0
  345. data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/small_placeholder.png +0 -0
  346. data/spec/dummy/tmp/uploads/20130514-1348-12420-3995/thumb_placeholder.png +0 -0
  347. data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/normal_placeholder.png +0 -0
  348. data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/placeholder.png +0 -0
  349. data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/small_placeholder.png +0 -0
  350. data/spec/dummy/tmp/uploads/20130514-1348-12420-4465/thumb_placeholder.png +0 -0
  351. data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/normal_placeholder.png +0 -0
  352. data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/placeholder.png +0 -0
  353. data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/small_placeholder.png +0 -0
  354. data/spec/dummy/tmp/uploads/20130514-1348-12420-4513/thumb_placeholder.png +0 -0
  355. data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/normal_placeholder.png +0 -0
  356. data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/placeholder.png +0 -0
  357. data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/small_placeholder.png +0 -0
  358. data/spec/dummy/tmp/uploads/20130514-1348-12420-4527/thumb_placeholder.png +0 -0
  359. data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/normal_placeholder.png +0 -0
  360. data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/placeholder.png +0 -0
  361. data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/small_placeholder.png +0 -0
  362. data/spec/dummy/tmp/uploads/20130514-1348-12420-4926/thumb_placeholder.png +0 -0
  363. data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/normal_placeholder.png +0 -0
  364. data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/placeholder.png +0 -0
  365. data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/small_placeholder.png +0 -0
  366. data/spec/dummy/tmp/uploads/20130514-1348-12420-5213/thumb_placeholder.png +0 -0
  367. data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/normal_placeholder.png +0 -0
  368. data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/placeholder.png +0 -0
  369. data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/small_placeholder.png +0 -0
  370. data/spec/dummy/tmp/uploads/20130514-1348-12420-5546/thumb_placeholder.png +0 -0
  371. data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/normal_placeholder.png +0 -0
  372. data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/placeholder.png +0 -0
  373. data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/small_placeholder.png +0 -0
  374. data/spec/dummy/tmp/uploads/20130514-1348-12420-5678/thumb_placeholder.png +0 -0
  375. data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/normal_placeholder.png +0 -0
  376. data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/placeholder.png +0 -0
  377. data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/small_placeholder.png +0 -0
  378. data/spec/dummy/tmp/uploads/20130514-1348-12420-5947/thumb_placeholder.png +0 -0
  379. data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/normal_placeholder.png +0 -0
  380. data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/placeholder.png +0 -0
  381. data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/small_placeholder.png +0 -0
  382. data/spec/dummy/tmp/uploads/20130514-1348-12420-6549/thumb_placeholder.png +0 -0
  383. data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/normal_placeholder.png +0 -0
  384. data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/placeholder.png +0 -0
  385. data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/small_placeholder.png +0 -0
  386. data/spec/dummy/tmp/uploads/20130514-1348-12420-6797/thumb_placeholder.png +0 -0
  387. data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/normal_placeholder.png +0 -0
  388. data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/placeholder.png +0 -0
  389. data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/small_placeholder.png +0 -0
  390. data/spec/dummy/tmp/uploads/20130514-1348-12420-6962/thumb_placeholder.png +0 -0
  391. data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/normal_placeholder.png +0 -0
  392. data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/placeholder.png +0 -0
  393. data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/small_placeholder.png +0 -0
  394. data/spec/dummy/tmp/uploads/20130514-1348-12420-6970/thumb_placeholder.png +0 -0
  395. data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/normal_placeholder.png +0 -0
  396. data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/placeholder.png +0 -0
  397. data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/small_placeholder.png +0 -0
  398. data/spec/dummy/tmp/uploads/20130514-1348-12420-8091/thumb_placeholder.png +0 -0
  399. data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/normal_placeholder.png +0 -0
  400. data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/placeholder.png +0 -0
  401. data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/small_placeholder.png +0 -0
  402. data/spec/dummy/tmp/uploads/20130514-1348-12420-8800/thumb_placeholder.png +0 -0
  403. data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/normal_placeholder.png +0 -0
  404. data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/placeholder.png +0 -0
  405. data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/small_placeholder.png +0 -0
  406. data/spec/dummy/tmp/uploads/20130514-1348-12420-8918/thumb_placeholder.png +0 -0
  407. data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/normal_placeholder.png +0 -0
  408. data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/placeholder.png +0 -0
  409. data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/small_placeholder.png +0 -0
  410. data/spec/dummy/tmp/uploads/20130514-1348-12420-9407/thumb_placeholder.png +0 -0
  411. data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/normal_placeholder.png +0 -0
  412. data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/placeholder.png +0 -0
  413. data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/small_placeholder.png +0 -0
  414. data/spec/dummy/tmp/uploads/20130514-1348-12420-9499/thumb_placeholder.png +0 -0
  415. data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/normal_placeholder.png +0 -0
  416. data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/placeholder.png +0 -0
  417. data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/small_placeholder.png +0 -0
  418. data/spec/dummy/tmp/uploads/20130514-1348-12420-9908/thumb_placeholder.png +0 -0
  419. data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/normal_placeholder.png +0 -0
  420. data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/placeholder.png +0 -0
  421. data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/small_placeholder.png +0 -0
  422. data/spec/dummy/tmp/uploads/20130514-1348-12420-9932/thumb_placeholder.png +0 -0
  423. data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/normal_placeholder.png +0 -0
  424. data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/placeholder.png +0 -0
  425. data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/small_placeholder.png +0 -0
  426. data/spec/dummy/tmp/uploads/20130514-1349-12420-0034/thumb_placeholder.png +0 -0
  427. data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/normal_placeholder.png +0 -0
  428. data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/placeholder.png +0 -0
  429. data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/small_placeholder.png +0 -0
  430. data/spec/dummy/tmp/uploads/20130514-1349-12420-2633/thumb_placeholder.png +0 -0
  431. data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/normal_placeholder.png +0 -0
  432. data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/placeholder.png +0 -0
  433. data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/small_placeholder.png +0 -0
  434. data/spec/dummy/tmp/uploads/20130514-1349-12420-3840/thumb_placeholder.png +0 -0
  435. data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/normal_placeholder.png +0 -0
  436. data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/placeholder.png +0 -0
  437. data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/small_placeholder.png +0 -0
  438. data/spec/dummy/tmp/uploads/20130514-1349-12420-4800/thumb_placeholder.png +0 -0
  439. data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/normal_placeholder.png +0 -0
  440. data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/placeholder.png +0 -0
  441. data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/small_placeholder.png +0 -0
  442. data/spec/dummy/tmp/uploads/20130514-1349-12420-6878/thumb_placeholder.png +0 -0
  443. data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/normal_placeholder.png +0 -0
  444. data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/placeholder.png +0 -0
  445. data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/small_placeholder.png +0 -0
  446. data/spec/dummy/tmp/uploads/20130514-1349-12420-7145/thumb_placeholder.png +0 -0
  447. data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/normal_placeholder.png +0 -0
  448. data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/placeholder.png +0 -0
  449. data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/small_placeholder.png +0 -0
  450. data/spec/dummy/tmp/uploads/20130514-1349-12420-7187/thumb_placeholder.png +0 -0
  451. data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/normal_placeholder.png +0 -0
  452. data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/placeholder.png +0 -0
  453. data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/small_placeholder.png +0 -0
  454. data/spec/dummy/tmp/uploads/20130514-1349-12420-7499/thumb_placeholder.png +0 -0
  455. data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/normal_placeholder.png +0 -0
  456. data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/placeholder.png +0 -0
  457. data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/small_placeholder.png +0 -0
  458. data/spec/dummy/tmp/uploads/20130515-1904-24025-2789/thumb_placeholder.png +0 -0
  459. data/spec/factories/blocks.rb +1 -0
  460. data/spec/factories/keyframes.rb +8 -0
  461. data/spec/factories/layer.rb +33 -0
  462. data/spec/features/blocks/create_spec.rb +8 -5
  463. data/spec/features/blocks/delete_spec.rb +2 -2
  464. data/spec/features/blocks/edit_spec.rb +29 -7
  465. data/spec/features/blocks/index_spec.rb +15 -0
  466. data/spec/features/blocks/show_spec.rb +19 -5
  467. data/spec/features/layers/animation_layers/create_spec.rb +27 -0
  468. data/spec/features/layers/animation_layers/edit_spec.rb +27 -0
  469. data/spec/features/layers/embed_layers/create_spec.rb +25 -0
  470. data/spec/features/layers/embed_layers/edit_spec.rb +28 -0
  471. data/spec/features/layers/image_layers/create_spec.rb +8 -5
  472. data/spec/features/layers/image_layers/delete_spec.rb +3 -4
  473. data/spec/features/layers/image_layers/edit_spec.rb +34 -6
  474. data/spec/features/layers/paragraph_layers/create_spec.rb +27 -0
  475. data/spec/features/layers/paragraph_layers/edit_spec.rb +31 -0
  476. data/spec/features/layers/text_layers/create_spec.rb +29 -0
  477. data/spec/features/layers/text_layers/edit_spec.rb +29 -0
  478. data/spec/features/logout_spec.rb +12 -0
  479. data/spec/features/pages/edit_spec.rb +74 -0
  480. data/spec/features/pages/show_spec.rb +32 -0
  481. data/spec/models/animation_layer_spec.rb +46 -0
  482. data/spec/models/block_spec.rb +18 -0
  483. data/spec/models/embed_layer_spec.rb +21 -0
  484. data/spec/models/end_state_keyframe_spec.rb +18 -0
  485. data/spec/models/image_layer_spec.rb +19 -0
  486. data/spec/models/keyframe_spec.rb +185 -0
  487. data/spec/models/layer_spec.rb +147 -0
  488. data/spec/models/page_spec.rb +57 -7
  489. data/spec/models/paragraph_layer_spec.rb +44 -0
  490. data/spec/models/start_state_keyframe_spec.rb +18 -0
  491. data/spec/models/target_state_keyframe_spec.rb +18 -0
  492. data/spec/models/text_layer_spec.rb +56 -0
  493. data/spec/placeholder.png +0 -0
  494. data/spec/spec_helper.rb +4 -1
  495. data/spec/support/lets.rb +17 -6
  496. data/spec/validators/css_name_validator_spec.rb +34 -0
  497. data/spec/view_objects/animation_layer_view_object_spec.rb +77 -0
  498. data/spec/view_objects/image_layer_view_object_spec.rb +13 -0
  499. data/spec/view_objects/keyframe_view_object_spec.rb +119 -0
  500. data/spec/view_objects/layer_view_object_spec.rb +57 -0
  501. data/spec/view_objects/paragraph_layer_view_object_spec.rb +23 -0
  502. data/spec/view_objects/text_layer_view_object_spec.rb +33 -0
  503. data/vendor/assets/javascripts/jquery-1.8.3.min.js +2 -0
  504. data/vendor/assets/javascripts/jquery.easing.1.3.js +205 -0
  505. data/vendor/assets/javascripts/jquery.quicksand.js +443 -0
  506. data/vendor/assets/javascripts/scroll-startstop.events.jquery.js +69 -0
  507. data/vendor/assets/javascripts/skrollr.ie.min.js +2 -0
  508. data/vendor/assets/javascripts/skrollr.min.js +2 -0
  509. data/vendor/assets/javascripts/skrollr.mobile.min.js +2 -0
  510. metadata +816 -101
  511. data/app/views/layouts/flms/application.html.erb +0 -14
  512. data/db/migrate/20130312220011_create_flms_layers.rb +0 -13
  513. data/db/migrate/20130313002421_add_image_to_layers.rb +0 -5
  514. data/spec/dummy/tmp/pids/server.pid +0 -1
  515. data/spec/factories/image_layer.rb +0 -6
  516. data/spec/features/blocks/activating_blocks_spec.rb +0 -18
@@ -1,7 +1,7 @@
1
1
  !!! 5
2
2
  %html
3
3
  %head
4
- %title XYZ sample app
4
+ %title FLMS sample app
5
5
 
6
6
  %body
7
7
  %p.notice= notice
@@ -34,4 +34,5 @@ Dummy::Application.configure do
34
34
 
35
35
  # Expands the lines which load the assets
36
36
  config.assets.debug = true
37
+
37
38
  end
@@ -64,4 +64,5 @@ Dummy::Application.configure do
64
64
  # Log the query plan for queries taking more than this (works
65
65
  # with SQLite, MySQL, and PostgreSQL)
66
66
  # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+
67
68
  end
@@ -34,4 +34,5 @@ Dummy::Application.configure do
34
34
 
35
35
  # Print deprecation notices to the stderr
36
36
  config.active_support.deprecation = :stderr
37
+
37
38
  end
@@ -1 +1,2 @@
1
1
  Flms.application_name = 'Dummy'
2
+
@@ -0,0 +1,12 @@
1
+ development:
2
+ bucket:
3
+ access_key_id:
4
+ secret_access_key:
5
+ staging:
6
+ bucket:
7
+ access_key_id:
8
+ secret_access_key:
9
+ production:
10
+ bucket:
11
+ access_key_id:
12
+ secret_access_key:
@@ -0,0 +1,12 @@
1
+ development:
2
+ bucket:
3
+ access_key_id:
4
+ secret_access_key:
5
+ staging:
6
+ bucket:
7
+ access_key_id:
8
+ secret_access_key:
9
+ production:
10
+ bucket:
11
+ access_key_id:
12
+ secret_access_key:
@@ -11,10 +11,12 @@
11
11
  #
12
12
  # It's strongly recommended to check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(:version => 20130313002421) do
14
+ ActiveRecord::Schema.define(:version => 20130327183815) do
15
15
 
16
16
  create_table "flms_blocks", :force => true do |t|
17
17
  t.string "name"
18
+ t.string "title"
19
+ t.string "thumbnail"
18
20
  t.datetime "created_at", :null => false
19
21
  t.datetime "updated_at", :null => false
20
22
  end
@@ -31,14 +33,47 @@ ActiveRecord::Schema.define(:version => 20130313002421) do
31
33
  add_index "flms_blocks_pages", ["block_id"], :name => "index_flms_blocks_pages_on_block_id"
32
34
  add_index "flms_blocks_pages", ["page_id"], :name => "index_flms_blocks_pages_on_page_id"
33
35
 
36
+ create_table "flms_keyframes", :force => true do |t|
37
+ t.datetime "created_at", :null => false
38
+ t.datetime "updated_at", :null => false
39
+ t.integer "layer_id"
40
+ t.string "type"
41
+ t.integer "scroll_start"
42
+ t.integer "scroll_duration"
43
+ t.float "width"
44
+ t.float "height"
45
+ t.float "position_x"
46
+ t.float "position_y"
47
+ t.float "margin_left", :default => 0.0, :null => false
48
+ t.float "margin_top", :default => 0.0, :null => false
49
+ t.float "opacity"
50
+ t.float "scale"
51
+ t.float "blur"
52
+ end
53
+
34
54
  create_table "flms_layers", :force => true do |t|
35
55
  t.string "name"
36
- t.integer "block_id"
37
- t.integer "ordering"
38
56
  t.string "type"
39
- t.datetime "created_at", :null => false
40
- t.datetime "updated_at", :null => false
57
+ t.integer "block_id"
58
+ t.float "width"
59
+ t.float "height"
60
+ t.string "z_index", :default => "0", :null => false
61
+ t.string "image_display_mode", :default => "cover"
62
+ t.boolean "dom_remove", :default => true, :null => false
63
+ t.boolean "active", :default => true
41
64
  t.string "image"
65
+ t.string "text"
66
+ t.float "font_size"
67
+ t.string "color"
68
+ t.string "header"
69
+ t.text "body"
70
+ t.text "embed_code"
71
+ t.integer "frame_rate"
72
+ t.integer "frame_count"
73
+ t.integer "image_width"
74
+ t.integer "image_height"
75
+ t.datetime "created_at", :null => false
76
+ t.datetime "updated_at", :null => false
42
77
  end
43
78
 
44
79
  add_index "flms_layers", ["block_id"], :name => "index_flms_layers_on_block_id"
Binary file
@@ -83607,3 +83607,4379 @@ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
83607
83607
 
83608
83608
  Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-15 17:33:27 -0700
83609
83609
  Served asset /flms/admin.js - 304 Not Modified (0ms)
83610
+ Connecting to database specified by database.yml
83611
+ Connecting to database specified by database.yml
83612
+
83613
+
83614
+ Started GET "/" for 127.0.0.1 at 2013-03-18 10:31:16 -0700
83615
+ Processing by HomeController#index as HTML
83616
+ Rendered home/index.html.haml (3.0ms)
83617
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
83618
+
83619
+
83620
+ Started GET "/flms/login" for 127.0.0.1 at 2013-03-18 10:31:20 -0700
83621
+ Processing by Flms::SessionsController#new as HTML
83622
+ Flms::User Load (0.4ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83623
+ Redirected to http://localhost:3000/flms/pages
83624
+ Filter chain halted as :require_no_authentication rendered or redirected
83625
+ Completed 302 Found in 73ms (ActiveRecord: 2.4ms)
83626
+
83627
+
83628
+ Started GET "/flms/pages" for 127.0.0.1 at 2013-03-18 10:31:20 -0700
83629
+ Processing by Flms::PagesController#index as HTML
83630
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83631
+ Flms::Page Load (0.4ms) SELECT "flms_pages".* FROM "flms_pages" 
83632
+ Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (3.1ms)
83633
+ Compiled flms/blocks/index.css (223ms) (pid 723)
83634
+ Compiled flms/blocks/show.css (1ms) (pid 723)
83635
+ Compiled flms/home.css (2ms) (pid 723)
83636
+ Compiled flms/layout.css (1ms) (pid 723)
83637
+ Compiled flms/login.css (3ms) (pid 723)
83638
+ Compiled jquery-ui.css (0ms) (pid 723)
83639
+ Compiled bootstrap.css (0ms) (pid 723)
83640
+ Compiled bootstrapSwitch.css (0ms) (pid 723)
83641
+ Compiled flms/admin.css (304ms) (pid 723)
83642
+ Compiled jquery.js (1ms) (pid 723)
83643
+ Compiled jquery_ujs.js (0ms) (pid 723)
83644
+ Compiled jquery-ui.js (5ms) (pid 723)
83645
+ Compiled modularity/tools/string_tools.js (107ms) (pid 723)
83646
+ Compiled modularity/modularity.js (400ms) (pid 723)
83647
+ Compiled flms/blocks/index/block.js (112ms) (pid 723)
83648
+ Compiled flms/blocks/index/block_list.js (113ms) (pid 723)
83649
+ Compiled flms/blocks/index/index.js (123ms) (pid 723)
83650
+ Compiled flms/bootstrap.js (0ms) (pid 723)
83651
+ Compiled flms/layout.js (108ms) (pid 723)
83652
+ Compiled bootstrapSwitch.js (0ms) (pid 723)
83653
+ Compiled flms/admin.js (959ms) (pid 723)
83654
+ Completed 200 OK in 1390ms (Views: 1384.3ms | ActiveRecord: 0.8ms)
83655
+
83656
+
83657
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:21 -0700
83658
+ Served asset /flms/blocks/index.css - 200 OK (3ms)
83659
+
83660
+
83661
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:21 -0700
83662
+ Served asset /flms/blocks/show.css - 200 OK (4ms)
83663
+
83664
+
83665
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:21 -0700
83666
+ Served asset /flms/home.css - 200 OK (2ms)
83667
+
83668
+
83669
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83670
+ Served asset /flms/login.css - 200 OK (2ms)
83671
+
83672
+
83673
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83674
+ Served asset /flms/layout.css - 200 OK (1ms)
83675
+
83676
+
83677
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83678
+ Served asset /jquery-ui.css - 200 OK (2ms)
83679
+
83680
+
83681
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83682
+ Served asset /bootstrap.css - 200 OK (3ms)
83683
+
83684
+
83685
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83686
+ Served asset /bootstrapSwitch.css - 200 OK (1ms)
83687
+
83688
+
83689
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83690
+ Served asset /flms/admin.css - 200 OK (9ms)
83691
+
83692
+
83693
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83694
+ Served asset /jquery.js - 304 Not Modified (2ms)
83695
+
83696
+
83697
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83698
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
83699
+
83700
+
83701
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83702
+ Served asset /jquery-ui.js - 200 OK (5ms)
83703
+
83704
+
83705
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83706
+ Served asset /modularity/modularity.js - 304 Not Modified (4ms)
83707
+
83708
+
83709
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83710
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (1ms)
83711
+
83712
+
83713
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83714
+ Served asset /flms/blocks/index/block.js - 200 OK (2ms)
83715
+
83716
+
83717
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83718
+ Served asset /flms/blocks/index/block_list.js - 200 OK (4ms)
83719
+
83720
+
83721
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83722
+ Served asset /flms/blocks/index/index.js - 200 OK (1ms)
83723
+
83724
+
83725
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83726
+ Served asset /flms/bootstrap.js - 200 OK (1ms)
83727
+
83728
+
83729
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83730
+ Served asset /flms/layout.js - 200 OK (2ms)
83731
+
83732
+
83733
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83734
+ Served asset /bootstrapSwitch.js - 200 OK (1ms)
83735
+
83736
+
83737
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83738
+ Served asset /flms/admin.js - 200 OK (47ms)
83739
+
83740
+
83741
+ Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83742
+ Served asset /glyphicons-halflings.png - 304 Not Modified (4ms)
83743
+
83744
+
83745
+ Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-03-18 10:31:22 -0700
83746
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (4ms)
83747
+
83748
+
83749
+ Started GET "/flms/pages/home/blocks" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
83750
+ Processing by Flms::BlocksController#index as HTML
83751
+ Parameters: {"page_id"=>"home"}
83752
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83753
+ Flms::Page Load (0.5ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
83754
+ Flms::BlocksPage Load (0.9ms) SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 2 ORDER BY ordering
83755
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1, 2, 3)
83756
+ Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (43.6ms)
83757
+ Completed 200 OK in 55ms (Views: 51.6ms | ActiveRecord: 2.1ms)
83758
+
83759
+
83760
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
83761
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
83762
+
83763
+
83764
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
83765
+ Served asset /jquery.js - 304 Not Modified (0ms)
83766
+
83767
+
83768
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
83769
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
83770
+
83771
+
83772
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:31 -0700
83773
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
83774
+
83775
+
83776
+ Started GET "/flms/pages/home/blocks/1/edit" for 127.0.0.1 at 2013-03-18 10:31:37 -0700
83777
+ Processing by Flms::BlocksController#edit as HTML
83778
+ Parameters: {"page_id"=>"home", "id"=>"1"}
83779
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83780
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
83781
+ Flms::Block Load (0.2ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
83782
+ Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (5.9ms)
83783
+ Rendered /Users/kevin/flms/app/views/flms/blocks/edit.html.haml within layouts/flms/admin (10.7ms)
83784
+ Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.4ms)
83785
+
83786
+
83787
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
83788
+ Served asset /jquery.js - 304 Not Modified (0ms)
83789
+
83790
+
83791
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
83792
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
83793
+
83794
+
83795
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
83796
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
83797
+
83798
+
83799
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:38 -0700
83800
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
83801
+
83802
+
83803
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
83804
+ Processing by Flms::BlocksController#show as HTML
83805
+ Parameters: {"page_id"=>"home", "id"=>"1"}
83806
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83807
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
83808
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
83809
+ Flms::Layer Load (0.8ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
83810
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (98.0ms)
83811
+ Completed 200 OK in 149ms (Views: 145.7ms | ActiveRecord: 1.4ms)
83812
+
83813
+
83814
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
83815
+ Served asset /jquery.js - 304 Not Modified (0ms)
83816
+
83817
+
83818
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
83819
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
83820
+
83821
+
83822
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
83823
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
83824
+
83825
+
83826
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
83827
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
83828
+
83829
+
83830
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:42 -0700
83831
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
83832
+
83833
+
83834
+ Started GET "/flms/pages/home/blocks/1/image_layers/6/edit" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
83835
+ Processing by Flms::ImageLayersController#edit as HTML
83836
+ Parameters: {"page_id"=>"home", "block_id"=>"1", "id"=>"6"}
83837
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83838
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
83839
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
83840
+ Flms::ImageLayer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."type" IN ('Flms::ImageLayer') AND "flms_layers"."id" = ? LIMIT 1 [["id", "6"]]
83841
+ Rendered /Users/kevin/flms/app/views/flms/image_layers/_form.html.haml (6.8ms)
83842
+ Rendered /Users/kevin/flms/app/views/flms/image_layers/edit.html.haml within layouts/flms/admin (9.1ms)
83843
+ Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.5ms)
83844
+
83845
+
83846
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
83847
+ Served asset /jquery.js - 304 Not Modified (0ms)
83848
+
83849
+
83850
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
83851
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
83852
+
83853
+
83854
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
83855
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
83856
+
83857
+
83858
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:47 -0700
83859
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
83860
+
83861
+
83862
+ Started GET "/flms/users" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
83863
+ Processing by Flms::UsersController#index as HTML
83864
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83865
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users"
83866
+ Rendered /Users/kevin/flms/app/views/flms/users/index.html.haml within layouts/flms/admin (2.8ms)
83867
+ Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.3ms)
83868
+
83869
+
83870
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
83871
+ Served asset /jquery.js - 304 Not Modified (0ms)
83872
+
83873
+
83874
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
83875
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
83876
+
83877
+
83878
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
83879
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
83880
+
83881
+
83882
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
83883
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
83884
+
83885
+
83886
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:31:51 -0700
83887
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
83888
+ Connecting to database specified by database.yml
83889
+
83890
+
83891
+ Started GET "/flms/login" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83892
+ Processing by Flms::SessionsController#new as HTML
83893
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83894
+ Redirected to http://localhost:3000/flms/pages
83895
+ Filter chain halted as :require_no_authentication rendered or redirected
83896
+ Completed 302 Found in 30ms (ActiveRecord: 1.2ms)
83897
+
83898
+
83899
+ Started GET "/flms/pages" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83900
+ Processing by Flms::PagesController#index as HTML
83901
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
83902
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" 
83903
+ Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (3.6ms)
83904
+ Completed 200 OK in 91ms (Views: 85.3ms | ActiveRecord: 0.4ms)
83905
+
83906
+
83907
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83908
+ Served asset /flms/blocks/index.css - 304 Not Modified (2ms)
83909
+
83910
+
83911
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83912
+ Served asset /flms/blocks/show.css - 304 Not Modified (3ms)
83913
+
83914
+
83915
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83916
+ Served asset /flms/layout.css - 304 Not Modified (2ms)
83917
+
83918
+
83919
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83920
+ Served asset /flms/home.css - 304 Not Modified (3ms)
83921
+
83922
+
83923
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83924
+ Served asset /flms/login.css - 304 Not Modified (4ms)
83925
+
83926
+
83927
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83928
+ Served asset /jquery-ui.css - 304 Not Modified (2ms)
83929
+
83930
+
83931
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83932
+ Served asset /bootstrapSwitch.css - 304 Not Modified (2ms)
83933
+
83934
+
83935
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83936
+ Served asset /bootstrap.css - 304 Not Modified (2ms)
83937
+
83938
+
83939
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83940
+ Served asset /flms/admin.css - 304 Not Modified (10ms)
83941
+
83942
+
83943
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:16 -0700
83944
+ Served asset /jquery.js - 304 Not Modified (35ms)
83945
+
83946
+
83947
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83948
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
83949
+
83950
+
83951
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83952
+ Served asset /jquery-ui.js - 304 Not Modified (3ms)
83953
+
83954
+
83955
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83956
+ Served asset /modularity/modularity.js - 304 Not Modified (6ms)
83957
+
83958
+
83959
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83960
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (1ms)
83961
+
83962
+
83963
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83964
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (1ms)
83965
+
83966
+
83967
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83968
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (2ms)
83969
+
83970
+
83971
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83972
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (1ms)
83973
+
83974
+
83975
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83976
+ Served asset /flms/bootstrap.js - 304 Not Modified (2ms)
83977
+
83978
+
83979
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83980
+ Served asset /flms/layout.js - 304 Not Modified (1ms)
83981
+
83982
+
83983
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83984
+ Served asset /flms/admin.js - 304 Not Modified (10ms)
83985
+
83986
+
83987
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83988
+ Served asset /bootstrapSwitch.js - 304 Not Modified (1ms)
83989
+
83990
+
83991
+ Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83992
+ Served asset /glyphicons-halflings.png - 304 Not Modified (2ms)
83993
+
83994
+
83995
+ Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-03-18 10:57:17 -0700
83996
+ Served asset /glyphicons-halflings-white.png - 304 Not Modified (2ms)
83997
+
83998
+
83999
+ Started GET "/flms/pages/home/blocks" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84000
+ Processing by Flms::BlocksController#index as HTML
84001
+ Parameters: {"page_id"=>"home"}
84002
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84003
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84004
+ Flms::BlocksPage Load (0.1ms) SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 2 ORDER BY ordering
84005
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1, 2, 3)
84006
+ Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (34.1ms)
84007
+ Completed 200 OK in 44ms (Views: 42.1ms | ActiveRecord: 0.9ms)
84008
+
84009
+
84010
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84011
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
84012
+
84013
+
84014
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84015
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
84016
+
84017
+
84018
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84019
+ Served asset /flms/login.css - 304 Not Modified (0ms)
84020
+
84021
+
84022
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84023
+ Served asset /flms/home.css - 304 Not Modified (0ms)
84024
+
84025
+
84026
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84027
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
84028
+
84029
+
84030
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84031
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
84032
+
84033
+
84034
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84035
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84036
+
84037
+
84038
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84039
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
84040
+
84041
+
84042
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84043
+ Served asset /flms/admin.css - 304 Not Modified (0ms)
84044
+
84045
+
84046
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84047
+ Served asset /jquery.js - 304 Not Modified (0ms)
84048
+
84049
+
84050
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84051
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
84052
+
84053
+
84054
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84055
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
84056
+
84057
+
84058
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84059
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
84060
+
84061
+
84062
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84063
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
84064
+
84065
+
84066
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84067
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
84068
+
84069
+
84070
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84071
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
84072
+
84073
+
84074
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84075
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
84076
+
84077
+
84078
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84079
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
84080
+
84081
+
84082
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84083
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
84084
+
84085
+
84086
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84087
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
84088
+
84089
+
84090
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:22 -0700
84091
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
84092
+
84093
+
84094
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-18 10:57:36 -0700
84095
+ Processing by Flms::BlocksController#show as HTML
84096
+ Parameters: {"page_id"=>"home", "id"=>"1"}
84097
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84098
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84099
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
84100
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
84101
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (81.9ms)
84102
+ Completed 200 OK in 129ms (Views: 126.5ms | ActiveRecord: 0.7ms)
84103
+
84104
+
84105
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84106
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
84107
+
84108
+
84109
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84110
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
84111
+
84112
+
84113
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84114
+ Served asset /flms/home.css - 304 Not Modified (0ms)
84115
+
84116
+
84117
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84118
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
84119
+
84120
+
84121
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84122
+ Served asset /flms/login.css - 304 Not Modified (0ms)
84123
+
84124
+
84125
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84126
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
84127
+
84128
+
84129
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84130
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84131
+
84132
+
84133
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84134
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
84135
+
84136
+
84137
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84138
+ Served asset /flms/admin.css - 304 Not Modified (0ms)
84139
+
84140
+
84141
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84142
+ Served asset /jquery.js - 304 Not Modified (0ms)
84143
+
84144
+
84145
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84146
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
84147
+
84148
+
84149
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84150
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
84151
+
84152
+
84153
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84154
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
84155
+
84156
+
84157
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84158
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
84159
+
84160
+
84161
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84162
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
84163
+
84164
+
84165
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84166
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
84167
+
84168
+
84169
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84170
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
84171
+
84172
+
84173
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84174
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
84175
+
84176
+
84177
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84178
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
84179
+
84180
+
84181
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84182
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
84183
+
84184
+
84185
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-18 10:57:37 -0700
84186
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
84187
+ Connecting to database specified by database.yml
84188
+
84189
+
84190
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:00 -0700
84191
+ Processing by Flms::BlocksController#show as HTML
84192
+ Parameters: {"page_id"=>"home", "id"=>"1"}
84193
+ Flms::User Load (0.6ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84194
+ Flms::Page Load (0.6ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84195
+ Flms::Block Load (0.5ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
84196
+ Flms::Layer Load (0.6ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
84197
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (161.9ms)
84198
+ Compiled flms/blocks/index.css (318ms) (pid 1100)
84199
+ Compiled flms/blocks/show.css (1ms) (pid 1100)
84200
+ Compiled flms/home.css (3ms) (pid 1100)
84201
+ Compiled flms/layout.css (3ms) (pid 1100)
84202
+ Compiled flms/login.css (5ms) (pid 1100)
84203
+ Compiled jquery-ui.css (0ms) (pid 1100)
84204
+ Compiled bootstrap.css (0ms) (pid 1100)
84205
+ Compiled bootstrapSwitch.css (0ms) (pid 1100)
84206
+ Compiled flms/admin.css (384ms) (pid 1100)
84207
+ Compiled jquery.js (2ms) (pid 1100)
84208
+ Compiled jquery_ujs.js (0ms) (pid 1100)
84209
+ Compiled jquery-ui.js (44ms) (pid 1100)
84210
+ Compiled modularity/tools/string_tools.js (156ms) (pid 1100)
84211
+ Compiled modularity/modularity.js (491ms) (pid 1100)
84212
+ Compiled flms/blocks/index/block.js (214ms) (pid 1100)
84213
+ Compiled flms/blocks/index/block_list.js (125ms) (pid 1100)
84214
+ Compiled flms/blocks/index/index.js (198ms) (pid 1100)
84215
+ Compiled flms/bootstrap.js (0ms) (pid 1100)
84216
+ Compiled flms/layout.js (145ms) (pid 1100)
84217
+ Compiled bootstrapSwitch.js (0ms) (pid 1100)
84218
+ Compiled flms/admin.js (1300ms) (pid 1100)
84219
+ Completed 200 OK in 2274ms (Views: 2156.3ms | ActiveRecord: 5.4ms)
84220
+
84221
+
84222
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:02 -0700
84223
+ Processing by Flms::BlocksController#show as HTML
84224
+ Parameters: {"page_id"=>"home", "id"=>"1"}
84225
+ Flms::User Load (0.3ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84226
+ Flms::Page Load (0.2ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84227
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
84228
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
84229
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (3.0ms)
84230
+ Completed 200 OK in 124ms (Views: 120.0ms | ActiveRecord: 0.7ms)
84231
+
84232
+
84233
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84234
+ Served asset /flms/blocks/index.css - 304 Not Modified (4ms)
84235
+
84236
+
84237
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84238
+ Served asset /flms/home.css - 304 Not Modified (49ms)
84239
+
84240
+
84241
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84242
+ Served asset /flms/layout.css - 304 Not Modified (2ms)
84243
+
84244
+
84245
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84246
+ Served asset /flms/blocks/show.css - 304 Not Modified (4ms)
84247
+
84248
+
84249
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84250
+ Served asset /flms/login.css - 304 Not Modified (2ms)
84251
+
84252
+
84253
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84254
+ Served asset /jquery-ui.css - 304 Not Modified (1ms)
84255
+
84256
+
84257
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84258
+ Served asset /bootstrap.css - 200 OK (3ms)
84259
+
84260
+
84261
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84262
+ Served asset /bootstrapSwitch.css - 304 Not Modified (4ms)
84263
+
84264
+
84265
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84266
+ Served asset /flms/admin.css - 304 Not Modified (10ms)
84267
+
84268
+
84269
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84270
+ Served asset /jquery.js - 304 Not Modified (1ms)
84271
+
84272
+
84273
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84274
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
84275
+
84276
+
84277
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84278
+ Served asset /jquery-ui.js - 304 Not Modified (4ms)
84279
+
84280
+
84281
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84282
+ Served asset /modularity/modularity.js - 304 Not Modified (4ms)
84283
+
84284
+
84285
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84286
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (2ms)
84287
+
84288
+
84289
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84290
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (2ms)
84291
+
84292
+
84293
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84294
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (2ms)
84295
+
84296
+
84297
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84298
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (2ms)
84299
+
84300
+
84301
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84302
+ Served asset /flms/bootstrap.js - 304 Not Modified (1ms)
84303
+
84304
+
84305
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84306
+ Served asset /flms/layout.js - 304 Not Modified (1ms)
84307
+
84308
+
84309
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84310
+ Served asset /bootstrapSwitch.js - 304 Not Modified (38ms)
84311
+
84312
+
84313
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:03 -0700
84314
+ Served asset /flms/admin.js - 304 Not Modified (11ms)
84315
+
84316
+
84317
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:40 -0700
84318
+ Processing by Flms::BlocksController#show as HTML
84319
+ Parameters: {"page_id"=>"home", "id"=>"1"}
84320
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84321
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84322
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
84323
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
84324
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
84325
+ Compiled bootstrap.css (1146ms) (pid 1100)
84326
+ Compiled flms/admin.css (1156ms) (pid 1100)
84327
+ Completed 200 OK in 1324ms (Views: 1322.2ms | ActiveRecord: 0.4ms)
84328
+
84329
+
84330
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84331
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
84332
+
84333
+
84334
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84335
+ Served asset /flms/home.css - 304 Not Modified (0ms)
84336
+
84337
+
84338
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84339
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
84340
+
84341
+
84342
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84343
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
84344
+
84345
+
84346
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84347
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
84348
+
84349
+
84350
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84351
+ Served asset /flms/login.css - 304 Not Modified (0ms)
84352
+
84353
+
84354
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84355
+ Served asset /bootstrap.css - 200 OK (3ms)
84356
+
84357
+
84358
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84359
+ Served asset /flms/admin.css - 304 Not Modified (13ms)
84360
+
84361
+
84362
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84363
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
84364
+
84365
+
84366
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84367
+ Served asset /jquery.js - 304 Not Modified (0ms)
84368
+
84369
+
84370
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84371
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
84372
+
84373
+
84374
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84375
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
84376
+
84377
+
84378
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84379
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
84380
+
84381
+
84382
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84383
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
84384
+
84385
+
84386
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84387
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
84388
+
84389
+
84390
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84391
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
84392
+
84393
+
84394
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84395
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
84396
+
84397
+
84398
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84399
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
84400
+
84401
+
84402
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84403
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
84404
+
84405
+
84406
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84407
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
84408
+
84409
+
84410
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:41 -0700
84411
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
84412
+
84413
+
84414
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84415
+ Processing by Flms::BlocksController#show as HTML
84416
+ Parameters: {"page_id"=>"home", "id"=>"1"}
84417
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84418
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84419
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
84420
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
84421
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
84422
+ Completed 200 OK in 104ms (Views: 101.8ms | ActiveRecord: 0.4ms)
84423
+
84424
+
84425
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84426
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
84427
+
84428
+
84429
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84430
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
84431
+
84432
+
84433
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84434
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
84435
+
84436
+
84437
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84438
+ Served asset /flms/login.css - 304 Not Modified (0ms)
84439
+
84440
+
84441
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84442
+ Served asset /flms/home.css - 304 Not Modified (0ms)
84443
+
84444
+
84445
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84446
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
84447
+
84448
+
84449
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84450
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84451
+
84452
+
84453
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84454
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
84455
+
84456
+
84457
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84458
+ Served asset /flms/admin.css - 304 Not Modified (0ms)
84459
+
84460
+
84461
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84462
+ Served asset /jquery.js - 304 Not Modified (0ms)
84463
+
84464
+
84465
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84466
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
84467
+
84468
+
84469
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84470
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
84471
+
84472
+
84473
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84474
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
84475
+
84476
+
84477
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84478
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
84479
+
84480
+
84481
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84482
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
84483
+
84484
+
84485
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84486
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
84487
+
84488
+
84489
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84490
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
84491
+
84492
+
84493
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84494
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
84495
+
84496
+
84497
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84498
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
84499
+
84500
+
84501
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84502
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
84503
+
84504
+
84505
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:43 -0700
84506
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
84507
+
84508
+
84509
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84510
+ Processing by Flms::BlocksController#show as HTML
84511
+ Parameters: {"page_id"=>"home", "id"=>"1"}
84512
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84513
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84514
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
84515
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
84516
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
84517
+ Completed 200 OK in 104ms (Views: 102.5ms | ActiveRecord: 0.4ms)
84518
+
84519
+
84520
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84521
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
84522
+
84523
+
84524
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84525
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
84526
+
84527
+
84528
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84529
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
84530
+
84531
+
84532
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84533
+ Served asset /flms/home.css - 304 Not Modified (0ms)
84534
+
84535
+
84536
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84537
+ Served asset /flms/login.css - 304 Not Modified (0ms)
84538
+
84539
+
84540
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84541
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
84542
+
84543
+
84544
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84545
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
84546
+
84547
+
84548
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84549
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84550
+
84551
+
84552
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84553
+ Served asset /flms/admin.css - 304 Not Modified (0ms)
84554
+
84555
+
84556
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84557
+ Served asset /jquery.js - 304 Not Modified (0ms)
84558
+
84559
+
84560
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84561
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
84562
+
84563
+
84564
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84565
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
84566
+
84567
+
84568
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84569
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
84570
+
84571
+
84572
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84573
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
84574
+
84575
+
84576
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84577
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
84578
+
84579
+
84580
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84581
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
84582
+
84583
+
84584
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84585
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
84586
+
84587
+
84588
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84589
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
84590
+
84591
+
84592
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84593
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
84594
+
84595
+
84596
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84597
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
84598
+
84599
+
84600
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:43:48 -0700
84601
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
84602
+
84603
+
84604
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 11:44:27 -0700
84605
+ Processing by Flms::BlocksController#show as HTML
84606
+ Parameters: {"page_id"=>"home", "id"=>"1"}
84607
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
84608
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
84609
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
84610
+ Flms::Layer Load (0.2ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
84611
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (3.3ms)
84612
+ Compiled bootstrap.css (1136ms) (pid 1100)
84613
+ Compiled flms/admin.css (4ms) (pid 1100)
84614
+ Completed 200 OK in 1313ms (Views: 1310.6ms | ActiveRecord: 0.5ms)
84615
+
84616
+
84617
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84618
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
84619
+
84620
+
84621
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84622
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
84623
+
84624
+
84625
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84626
+ Served asset /flms/home.css - 304 Not Modified (0ms)
84627
+
84628
+
84629
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84630
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
84631
+
84632
+
84633
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84634
+ Served asset /flms/login.css - 304 Not Modified (0ms)
84635
+
84636
+
84637
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84638
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
84639
+
84640
+
84641
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84642
+ Served asset /bootstrap.css - 200 OK (4ms)
84643
+
84644
+
84645
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84646
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
84647
+
84648
+
84649
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84650
+ Served asset /flms/admin.css - 304 Not Modified (12ms)
84651
+
84652
+
84653
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84654
+ Served asset /jquery.js - 304 Not Modified (0ms)
84655
+
84656
+
84657
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84658
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
84659
+
84660
+
84661
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84662
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
84663
+
84664
+
84665
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84666
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
84667
+
84668
+
84669
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84670
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
84671
+
84672
+
84673
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84674
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
84675
+
84676
+
84677
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84678
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
84679
+
84680
+
84681
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84682
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
84683
+
84684
+
84685
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84686
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
84687
+
84688
+
84689
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84690
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
84691
+
84692
+
84693
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84694
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
84695
+
84696
+
84697
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 11:44:28 -0700
84698
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
84699
+
84700
+
84701
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:43 -0700
84702
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84703
+
84704
+
84705
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:51 -0700
84706
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84707
+
84708
+
84709
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:44:52 -0700
84710
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84711
+ Connecting to database specified by database.yml
84712
+
84713
+
84714
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:03 -0700
84715
+ Served asset /bootstrap.css - 200 OK (3ms)
84716
+
84717
+
84718
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:04 -0700
84719
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84720
+
84721
+
84722
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:05 -0700
84723
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84724
+
84725
+
84726
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:06 -0700
84727
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84728
+
84729
+
84730
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:07 -0700
84731
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84732
+
84733
+
84734
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:45:59 -0700
84735
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84736
+
84737
+
84738
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:00 -0700
84739
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84740
+
84741
+
84742
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
84743
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84744
+
84745
+
84746
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
84747
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84748
+
84749
+
84750
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
84751
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84752
+
84753
+
84754
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
84755
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84756
+
84757
+
84758
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
84759
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84760
+
84761
+
84762
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:01 -0700
84763
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84764
+
84765
+
84766
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
84767
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84768
+
84769
+
84770
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
84771
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84772
+
84773
+
84774
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
84775
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84776
+
84777
+
84778
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
84779
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84780
+
84781
+
84782
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:46:02 -0700
84783
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84784
+
84785
+
84786
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:47:49 -0700
84787
+ Served asset /bootstrap.css - 304 Not Modified (1ms)
84788
+
84789
+
84790
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:47:50 -0700
84791
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84792
+
84793
+
84794
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:47:51 -0700
84795
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84796
+
84797
+
84798
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:32 -0700
84799
+ Compiled bootstrap.css (1309ms) (pid 1202)
84800
+ Served asset /bootstrap.css - 200 OK (1317ms)
84801
+
84802
+
84803
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
84804
+ Served asset /bootstrap.css - 200 OK (0ms)
84805
+
84806
+
84807
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
84808
+ Served asset /bootstrap.css - 200 OK (0ms)
84809
+
84810
+
84811
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
84812
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84813
+
84814
+
84815
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
84816
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84817
+
84818
+
84819
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:33 -0700
84820
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84821
+
84822
+
84823
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:34 -0700
84824
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84825
+
84826
+
84827
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:34 -0700
84828
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84829
+
84830
+
84831
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:35 -0700
84832
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84833
+
84834
+
84835
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:37 -0700
84836
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84837
+
84838
+
84839
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:49:39 -0700
84840
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84841
+
84842
+
84843
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:30 -0700
84844
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84845
+
84846
+
84847
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:48 -0700
84848
+ Compiled bootstrap.css (1147ms) (pid 1202)
84849
+ Served asset /bootstrap.css - 200 OK (1152ms)
84850
+
84851
+
84852
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:51 -0700
84853
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84854
+
84855
+
84856
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:50:54 -0700
84857
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84858
+
84859
+
84860
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:09 -0700
84861
+ Compiled bootstrap.css (1234ms) (pid 1202)
84862
+ Served asset /bootstrap.css - 304 Not Modified (1239ms)
84863
+
84864
+
84865
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:11 -0700
84866
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84867
+
84868
+
84869
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:12 -0700
84870
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84871
+
84872
+
84873
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:13 -0700
84874
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84875
+
84876
+
84877
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:13 -0700
84878
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84879
+
84880
+
84881
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:43 -0700
84882
+ Compiled bootstrap.css (1097ms) (pid 1202)
84883
+ Served asset /bootstrap.css - 200 OK (1103ms)
84884
+
84885
+
84886
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:44 -0700
84887
+ Served asset /bootstrap.css - 200 OK (0ms)
84888
+
84889
+
84890
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:45 -0700
84891
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84892
+
84893
+
84894
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:46 -0700
84895
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84896
+
84897
+
84898
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:46 -0700
84899
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84900
+
84901
+
84902
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:51 -0700
84903
+ Compiled bootstrap.css (1090ms) (pid 1202)
84904
+ Served asset /bootstrap.css - 200 OK (1095ms)
84905
+
84906
+
84907
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:53 -0700
84908
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84909
+
84910
+
84911
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:54 -0700
84912
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84913
+
84914
+
84915
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:51:55 -0700
84916
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84917
+
84918
+
84919
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:20 -0700
84920
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84921
+
84922
+
84923
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:22 -0700
84924
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84925
+
84926
+
84927
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:23 -0700
84928
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84929
+
84930
+
84931
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:52:23 -0700
84932
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84933
+
84934
+
84935
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:14 -0700
84936
+ Compiled bootstrap.css (1130ms) (pid 1202)
84937
+ Served asset /bootstrap.css - 200 OK (1134ms)
84938
+
84939
+
84940
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:39 -0700
84941
+ Compiled bootstrap.css (1111ms) (pid 1202)
84942
+ Served asset /bootstrap.css - 200 OK (1115ms)
84943
+
84944
+
84945
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:53 -0700
84946
+ Compiled bootstrap.css (1102ms) (pid 1202)
84947
+ Served asset /bootstrap.css - 200 OK (1106ms)
84948
+
84949
+
84950
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:53:58 -0700
84951
+ Compiled bootstrap.css (1095ms) (pid 1202)
84952
+ Served asset /bootstrap.css - 200 OK (1100ms)
84953
+
84954
+
84955
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:54:51 -0700
84956
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84957
+
84958
+
84959
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:54:52 -0700
84960
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84961
+
84962
+
84963
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 11:54:56 -0700
84964
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84965
+
84966
+
84967
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:43 -0700
84968
+ Compiled bootstrap.css (1240ms) (pid 1202)
84969
+ Served asset /bootstrap.css - 200 OK (1245ms)
84970
+
84971
+
84972
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:46 -0700
84973
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84974
+
84975
+
84976
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:47 -0700
84977
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84978
+
84979
+
84980
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:00:48 -0700
84981
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84982
+
84983
+
84984
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:01:35 -0700
84985
+ Compiled bootstrap.css (1156ms) (pid 1202)
84986
+ Served asset /bootstrap.css - 200 OK (1160ms)
84987
+
84988
+
84989
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:01:38 -0700
84990
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
84991
+
84992
+
84993
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:06:30 -0700
84994
+ Error compiling asset bootstrap.css:
84995
+ Sass::SyntaxError: Invalid CSS after "...icons-halflings": expected ";", was ".png;"
84996
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)
84997
+ Served asset /bootstrap.css - 500 Internal Server Error
84998
+
84999
+
85000
+
85001
+
85002
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:06:33 -0700
85003
+ Processing by Flms::BlocksController#show as HTML
85004
+ Parameters: {"page_id"=>"home", "id"=>"1"}
85005
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
85006
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
85007
+ Flms::Block Load (0.2ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
85008
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
85009
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (136.1ms)
85010
+ Completed 500 Internal Server Error in 601ms
85011
+
85012
+ ActionView::Template::Error (Invalid CSS after "...icons-halflings": expected ";", was ".png;"
85013
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)):
85014
+ 3: %head
85015
+ 4: %title #{Flms.application_name} administration
85016
+ 5: %meta{name:"viewport", content:"width=device-width, initial-scale=1.0"}
85017
+ 6: = stylesheet_link_tag 'flms/admin', media: 'all'
85018
+ 7: = csrf_meta_tags
85019
+ 8:
85020
+ 9: %body{class: "#{params[:controller].sub('/', ' ')} #{params[:action]}"}
85021
+ /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb:2288
85022
+ sass (3.2.7) lib/sass/scss/parser.rb:1148:in `expected'
85023
+ sass (3.2.7) lib/sass/scss/parser.rb:1084:in `expected'
85024
+ sass (3.2.7) lib/sass/scss/parser.rb:1079:in `tok!'
85025
+ sass (3.2.7) lib/sass/scss/parser.rb:586:in `block in declaration_or_ruleset'
85026
+ sass (3.2.7) lib/sass/scss/parser.rb:1122:in `call'
85027
+ sass (3.2.7) lib/sass/scss/parser.rb:1122:in `rethrow'
85028
+ sass (3.2.7) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset'
85029
+ sass (3.2.7) lib/sass/scss/parser.rb:554:in `block_child'
85030
+ sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
85031
+ sass (3.2.7) lib/sass/scss/parser.rb:535:in `block'
85032
+ sass (3.2.7) lib/sass/scss/parser.rb:529:in `ruleset'
85033
+ sass (3.2.7) lib/sass/scss/parser.rb:553:in `block_child'
85034
+ sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
85035
+ sass (3.2.7) lib/sass/scss/parser.rb:82:in `stylesheet'
85036
+ sass (3.2.7) lib/sass/scss/parser.rb:27:in `parse'
85037
+ sass (3.2.7) lib/sass/engine.rb:342:in `_to_tree'
85038
+ sass (3.2.7) lib/sass/engine.rb:315:in `_render'
85039
+ sass (3.2.7) lib/sass/engine.rb:262:in `render'
85040
+ tilt (1.3.6) lib/tilt/css.rb:24:in `evaluate'
85041
+ tilt (1.3.6) lib/tilt/template.rb:77:in `render'
85042
+ sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
85043
+ sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
85044
+ sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
85045
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
85046
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
85047
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
85048
+ sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
85049
+ sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
85050
+ sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
85051
+ sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
85052
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85053
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85054
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85055
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
85056
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
85057
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
85058
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
85059
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
85060
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
85061
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
85062
+ sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
85063
+ sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
85064
+ sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
85065
+ sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
85066
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85067
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85068
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85069
+ sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
85070
+ sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
85071
+ sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
85072
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85073
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85074
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85075
+ sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
85076
+ sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
85077
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
85078
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
85079
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
85080
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
85081
+ /Users/kevin/flms/app/views/layouts/flms/admin.html.haml:6:in `___sers_kevin_flms_app_views_layouts_flms_admin_html_haml___511405204905627849_70246932893120'
85082
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
85083
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
85084
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
85085
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
85086
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
85087
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
85088
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
85089
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
85090
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
85091
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
85092
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
85093
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
85094
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
85095
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
85096
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
85097
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
85098
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
85099
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
85100
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
85101
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
85102
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
85103
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
85104
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
85105
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
85106
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
85107
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
85108
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
85109
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
85110
+ activesupport (3.2.13) lib/active_support/callbacks.rb:436:in `_run__2229620767807028384__process_action__4105642151654813033__callbacks'
85111
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
85112
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
85113
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
85114
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
85115
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
85116
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
85117
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
85118
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
85119
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
85120
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
85121
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
85122
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
85123
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
85124
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
85125
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
85126
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
85127
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
85128
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
85129
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
85130
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
85131
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
85132
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
85133
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
85134
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
85135
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
85136
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
85137
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
85138
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
85139
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
85140
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
85141
+ warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
85142
+ warden (1.2.1) lib/warden/manager.rb:34:in `catch'
85143
+ warden (1.2.1) lib/warden/manager.rb:34:in `call'
85144
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
85145
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
85146
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
85147
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
85148
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
85149
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
85150
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
85151
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
85152
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
85153
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
85154
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
85155
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
85156
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2731571581320401520__call__2379152223963507546__callbacks'
85157
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
85158
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
85159
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
85160
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
85161
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
85162
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
85163
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
85164
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
85165
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
85166
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
85167
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
85168
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
85169
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
85170
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
85171
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
85172
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
85173
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
85174
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
85175
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
85176
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
85177
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
85178
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
85179
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
85180
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
85181
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
85182
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
85183
+
85184
+
85185
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
85186
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
85187
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.0ms)
85188
+
85189
+
85190
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:06:35 -0700
85191
+ Processing by Flms::BlocksController#show as HTML
85192
+ Parameters: {"page_id"=>"home", "id"=>"1"}
85193
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
85194
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
85195
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
85196
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
85197
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.2ms)
85198
+ Completed 500 Internal Server Error in 322ms
85199
+
85200
+ ActionView::Template::Error (Invalid CSS after "...icons-halflings": expected ";", was ".png;"
85201
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)):
85202
+ 3: %head
85203
+ 4: %title #{Flms.application_name} administration
85204
+ 5: %meta{name:"viewport", content:"width=device-width, initial-scale=1.0"}
85205
+ 6: = stylesheet_link_tag 'flms/admin', media: 'all'
85206
+ 7: = csrf_meta_tags
85207
+ 8:
85208
+ 9: %body{class: "#{params[:controller].sub('/', ' ')} #{params[:action]}"}
85209
+ /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb:2288
85210
+ sass (3.2.7) lib/sass/scss/parser.rb:1148:in `expected'
85211
+ sass (3.2.7) lib/sass/scss/parser.rb:1084:in `expected'
85212
+ sass (3.2.7) lib/sass/scss/parser.rb:1079:in `tok!'
85213
+ sass (3.2.7) lib/sass/scss/parser.rb:586:in `block in declaration_or_ruleset'
85214
+ sass (3.2.7) lib/sass/scss/parser.rb:1122:in `call'
85215
+ sass (3.2.7) lib/sass/scss/parser.rb:1122:in `rethrow'
85216
+ sass (3.2.7) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset'
85217
+ sass (3.2.7) lib/sass/scss/parser.rb:554:in `block_child'
85218
+ sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
85219
+ sass (3.2.7) lib/sass/scss/parser.rb:535:in `block'
85220
+ sass (3.2.7) lib/sass/scss/parser.rb:529:in `ruleset'
85221
+ sass (3.2.7) lib/sass/scss/parser.rb:553:in `block_child'
85222
+ sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
85223
+ sass (3.2.7) lib/sass/scss/parser.rb:82:in `stylesheet'
85224
+ sass (3.2.7) lib/sass/scss/parser.rb:27:in `parse'
85225
+ sass (3.2.7) lib/sass/engine.rb:342:in `_to_tree'
85226
+ sass (3.2.7) lib/sass/engine.rb:315:in `_render'
85227
+ sass (3.2.7) lib/sass/engine.rb:262:in `render'
85228
+ tilt (1.3.6) lib/tilt/css.rb:24:in `evaluate'
85229
+ tilt (1.3.6) lib/tilt/template.rb:77:in `render'
85230
+ sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
85231
+ sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
85232
+ sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
85233
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
85234
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
85235
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
85236
+ sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
85237
+ sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
85238
+ sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
85239
+ sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
85240
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85241
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85242
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85243
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
85244
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
85245
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
85246
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
85247
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
85248
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
85249
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
85250
+ sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
85251
+ sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
85252
+ sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
85253
+ sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
85254
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85255
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85256
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85257
+ sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
85258
+ sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
85259
+ sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
85260
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85261
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85262
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85263
+ sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
85264
+ sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
85265
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
85266
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
85267
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
85268
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
85269
+ /Users/kevin/flms/app/views/layouts/flms/admin.html.haml:6:in `___sers_kevin_flms_app_views_layouts_flms_admin_html_haml___511405204905627849_70246932893120'
85270
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
85271
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
85272
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
85273
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
85274
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
85275
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
85276
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
85277
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
85278
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
85279
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
85280
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
85281
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
85282
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
85283
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
85284
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
85285
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
85286
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
85287
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
85288
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
85289
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
85290
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
85291
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
85292
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
85293
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
85294
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
85295
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
85296
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
85297
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
85298
+ activesupport (3.2.13) lib/active_support/callbacks.rb:436:in `_run__2229620767807028384__process_action__4105642151654813033__callbacks'
85299
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
85300
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
85301
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
85302
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
85303
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
85304
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
85305
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
85306
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
85307
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
85308
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
85309
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
85310
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
85311
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
85312
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
85313
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
85314
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
85315
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
85316
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
85317
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
85318
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
85319
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
85320
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
85321
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
85322
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
85323
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
85324
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
85325
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
85326
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
85327
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
85328
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
85329
+ warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
85330
+ warden (1.2.1) lib/warden/manager.rb:34:in `catch'
85331
+ warden (1.2.1) lib/warden/manager.rb:34:in `call'
85332
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
85333
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
85334
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
85335
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
85336
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
85337
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
85338
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
85339
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
85340
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
85341
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
85342
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
85343
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
85344
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2731571581320401520__call__2379152223963507546__callbacks'
85345
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
85346
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
85347
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
85348
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
85349
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
85350
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
85351
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
85352
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
85353
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
85354
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
85355
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
85356
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
85357
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
85358
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
85359
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
85360
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
85361
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
85362
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
85363
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
85364
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
85365
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
85366
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
85367
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
85368
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
85369
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
85370
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
85371
+
85372
+
85373
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
85374
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
85375
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
85376
+
85377
+
85378
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:06 -0700
85379
+ Processing by Flms::BlocksController#show as HTML
85380
+ Parameters: {"page_id"=>"home", "id"=>"1"}
85381
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
85382
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
85383
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
85384
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
85385
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.6ms)
85386
+ Compiled bootstrap.css (1215ms) (pid 1202)
85387
+ Compiled flms/admin.css (1223ms) (pid 1202)
85388
+ Completed 200 OK in 1413ms (Views: 1410.6ms | ActiveRecord: 0.4ms)
85389
+
85390
+
85391
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85392
+ Served asset /flms/blocks/index.css - 200 OK (3ms)
85393
+
85394
+
85395
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85396
+ Served asset /flms/blocks/show.css - 200 OK (4ms)
85397
+
85398
+
85399
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85400
+ Served asset /flms/layout.css - 200 OK (1ms)
85401
+
85402
+
85403
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85404
+ Served asset /jquery-ui.css - 200 OK (1ms)
85405
+
85406
+
85407
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85408
+ Served asset /flms/home.css - 200 OK (38ms)
85409
+
85410
+
85411
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85412
+ Served asset /flms/login.css - 200 OK (2ms)
85413
+
85414
+
85415
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85416
+ Served asset /bootstrapSwitch.css - 200 OK (3ms)
85417
+
85418
+
85419
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85420
+ Served asset /flms/admin.css - 200 OK (9ms)
85421
+
85422
+
85423
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85424
+ Served asset /jquery.js - 200 OK (2ms)
85425
+
85426
+
85427
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85428
+ Served asset /jquery_ujs.js - 200 OK (1ms)
85429
+
85430
+
85431
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85432
+ Served asset /bootstrap.css - 200 OK (5ms)
85433
+
85434
+
85435
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85436
+ Served asset /jquery-ui.js - 200 OK (5ms)
85437
+
85438
+
85439
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85440
+ Served asset /modularity/modularity.js - 200 OK (4ms)
85441
+
85442
+
85443
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85444
+ Served asset /modularity/tools/string_tools.js - 200 OK (2ms)
85445
+
85446
+
85447
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85448
+ Served asset /flms/blocks/index/block.js - 200 OK (2ms)
85449
+
85450
+
85451
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:07 -0700
85452
+ Served asset /flms/blocks/index/block_list.js - 200 OK (2ms)
85453
+
85454
+
85455
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
85456
+ Served asset /flms/blocks/index/index.js - 200 OK (2ms)
85457
+
85458
+
85459
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
85460
+ Served asset /flms/bootstrap.js - 200 OK (1ms)
85461
+
85462
+
85463
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
85464
+ Served asset /flms/layout.js - 200 OK (1ms)
85465
+
85466
+
85467
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
85468
+ Served asset /bootstrapSwitch.js - 200 OK (2ms)
85469
+
85470
+
85471
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:08 -0700
85472
+ Served asset /flms/admin.js - 200 OK (52ms)
85473
+
85474
+
85475
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:10 -0700
85476
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
85477
+
85478
+
85479
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:24 -0700
85480
+ Compiled bootstrap.css (1228ms) (pid 1202)
85481
+ Served asset /bootstrap.css - 200 OK (1232ms)
85482
+
85483
+
85484
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:27 -0700
85485
+ Processing by Flms::BlocksController#show as HTML
85486
+ Parameters: {"page_id"=>"home", "id"=>"1"}
85487
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
85488
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
85489
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
85490
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
85491
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
85492
+ Compiled flms/admin.css (4ms) (pid 1202)
85493
+ Completed 200 OK in 167ms (Views: 165.0ms | ActiveRecord: 0.4ms)
85494
+
85495
+
85496
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85497
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
85498
+
85499
+
85500
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85501
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
85502
+
85503
+
85504
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85505
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
85506
+
85507
+
85508
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85509
+ Served asset /flms/home.css - 304 Not Modified (0ms)
85510
+
85511
+
85512
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85513
+ Served asset /flms/login.css - 304 Not Modified (0ms)
85514
+
85515
+
85516
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85517
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
85518
+
85519
+
85520
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85521
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
85522
+
85523
+
85524
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85525
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
85526
+
85527
+
85528
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85529
+ Served asset /flms/admin.css - 304 Not Modified (16ms)
85530
+
85531
+
85532
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85533
+ Served asset /jquery.js - 304 Not Modified (0ms)
85534
+
85535
+
85536
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85537
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
85538
+
85539
+
85540
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85541
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
85542
+
85543
+
85544
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85545
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
85546
+
85547
+
85548
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85549
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
85550
+
85551
+
85552
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85553
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
85554
+
85555
+
85556
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85557
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
85558
+
85559
+
85560
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85561
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
85562
+
85563
+
85564
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85565
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
85566
+
85567
+
85568
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85569
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
85570
+
85571
+
85572
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85573
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
85574
+
85575
+
85576
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85577
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
85578
+
85579
+
85580
+ Started GET "/assets/glyphicons-halflings" for 127.0.0.1 at 2013-03-19 12:07:28 -0700
85581
+ Served asset /glyphicons-halflings - 404 Not Found (2ms)
85582
+
85583
+ ActionController::RoutingError (No route matches [GET] "/assets/glyphicons-halflings"):
85584
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
85585
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
85586
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
85587
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
85588
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
85589
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
85590
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
85591
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
85592
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
85593
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
85594
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
85595
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
85596
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
85597
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
85598
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
85599
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
85600
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
85601
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
85602
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
85603
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
85604
+
85605
+
85606
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
85607
+
85608
+
85609
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85610
+ Processing by Flms::BlocksController#show as HTML
85611
+ Parameters: {"page_id"=>"home", "id"=>"1"}
85612
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
85613
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
85614
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
85615
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
85616
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
85617
+ Completed 200 OK in 111ms (Views: 108.7ms | ActiveRecord: 0.4ms)
85618
+
85619
+
85620
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85621
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
85622
+
85623
+
85624
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85625
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
85626
+
85627
+
85628
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85629
+ Served asset /flms/home.css - 304 Not Modified (0ms)
85630
+
85631
+
85632
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85633
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
85634
+
85635
+
85636
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85637
+ Served asset /flms/login.css - 304 Not Modified (0ms)
85638
+
85639
+
85640
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85641
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
85642
+
85643
+
85644
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85645
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
85646
+
85647
+
85648
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85649
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
85650
+
85651
+
85652
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85653
+ Served asset /flms/admin.css - 304 Not Modified (0ms)
85654
+
85655
+
85656
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85657
+ Served asset /jquery.js - 304 Not Modified (0ms)
85658
+
85659
+
85660
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85661
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
85662
+
85663
+
85664
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:29 -0700
85665
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
85666
+
85667
+
85668
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85669
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
85670
+
85671
+
85672
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85673
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
85674
+
85675
+
85676
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85677
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
85678
+
85679
+
85680
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85681
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
85682
+
85683
+
85684
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85685
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
85686
+
85687
+
85688
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85689
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
85690
+
85691
+
85692
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85693
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
85694
+
85695
+
85696
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85697
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
85698
+
85699
+
85700
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:30 -0700
85701
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
85702
+
85703
+
85704
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:32 -0700
85705
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
85706
+
85707
+
85708
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:54 -0700
85709
+ Compiled bootstrap.css (1192ms) (pid 1202)
85710
+ Served asset /bootstrap.css - 200 OK (1196ms)
85711
+
85712
+
85713
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:07:57 -0700
85714
+ Processing by Flms::BlocksController#show as HTML
85715
+ Parameters: {"page_id"=>"home", "id"=>"1"}
85716
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
85717
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
85718
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
85719
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
85720
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
85721
+ Compiled flms/admin.css (4ms) (pid 1202)
85722
+ Completed 200 OK in 167ms (Views: 165.4ms | ActiveRecord: 0.4ms)
85723
+
85724
+
85725
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85726
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
85727
+
85728
+
85729
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85730
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
85731
+
85732
+
85733
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85734
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
85735
+
85736
+
85737
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85738
+ Served asset /flms/home.css - 304 Not Modified (0ms)
85739
+
85740
+
85741
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85742
+ Served asset /flms/login.css - 304 Not Modified (0ms)
85743
+
85744
+
85745
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85746
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
85747
+
85748
+
85749
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85750
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
85751
+
85752
+
85753
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85754
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
85755
+
85756
+
85757
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85758
+ Served asset /flms/admin.css - 304 Not Modified (13ms)
85759
+
85760
+
85761
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85762
+ Served asset /jquery.js - 304 Not Modified (0ms)
85763
+
85764
+
85765
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85766
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
85767
+
85768
+
85769
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85770
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
85771
+
85772
+
85773
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85774
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
85775
+
85776
+
85777
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85778
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
85779
+
85780
+
85781
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85782
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
85783
+
85784
+
85785
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85786
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
85787
+
85788
+
85789
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85790
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
85791
+
85792
+
85793
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85794
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
85795
+
85796
+
85797
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85798
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
85799
+
85800
+
85801
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85802
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
85803
+
85804
+
85805
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85806
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
85807
+
85808
+
85809
+ Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-19 12:07:58 -0700
85810
+ Served asset /glyphicons-halflings.png - 200 OK (6ms)
85811
+
85812
+
85813
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:38 -0700
85814
+ Error compiling asset bootstrap.css:
85815
+ Sass::SyntaxError: Invalid CSS after "...halflings-white": expected ";", was ".png;"
85816
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)
85817
+ Served asset /bootstrap.css - 500 Internal Server Error
85818
+
85819
+
85820
+
85821
+
85822
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:42 -0700
85823
+ Processing by Flms::BlocksController#show as HTML
85824
+ Parameters: {"page_id"=>"home", "id"=>"1"}
85825
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
85826
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
85827
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
85828
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
85829
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.2ms)
85830
+ Completed 500 Internal Server Error in 371ms
85831
+
85832
+ ActionView::Template::Error (Invalid CSS after "...halflings-white": expected ";", was ".png;"
85833
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb)):
85834
+ 3: %head
85835
+ 4: %title #{Flms.application_name} administration
85836
+ 5: %meta{name:"viewport", content:"width=device-width, initial-scale=1.0"}
85837
+ 6: = stylesheet_link_tag 'flms/admin', media: 'all'
85838
+ 7: = csrf_meta_tags
85839
+ 8:
85840
+ 9: %body{class: "#{params[:controller].sub('/', ' ')} #{params[:action]}"}
85841
+ /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss.erb:2310
85842
+ sass (3.2.7) lib/sass/scss/parser.rb:1148:in `expected'
85843
+ sass (3.2.7) lib/sass/scss/parser.rb:1084:in `expected'
85844
+ sass (3.2.7) lib/sass/scss/parser.rb:1079:in `tok!'
85845
+ sass (3.2.7) lib/sass/scss/parser.rb:586:in `block in declaration_or_ruleset'
85846
+ sass (3.2.7) lib/sass/scss/parser.rb:1122:in `call'
85847
+ sass (3.2.7) lib/sass/scss/parser.rb:1122:in `rethrow'
85848
+ sass (3.2.7) lib/sass/scss/parser.rb:592:in `declaration_or_ruleset'
85849
+ sass (3.2.7) lib/sass/scss/parser.rb:554:in `block_child'
85850
+ sass (3.2.7) lib/sass/scss/parser.rb:543:in `block_contents'
85851
+ sass (3.2.7) lib/sass/scss/parser.rb:535:in `block'
85852
+ sass (3.2.7) lib/sass/scss/parser.rb:529:in `ruleset'
85853
+ sass (3.2.7) lib/sass/scss/parser.rb:553:in `block_child'
85854
+ sass (3.2.7) lib/sass/scss/parser.rb:546:in `block_contents'
85855
+ sass (3.2.7) lib/sass/scss/parser.rb:82:in `stylesheet'
85856
+ sass (3.2.7) lib/sass/scss/parser.rb:27:in `parse'
85857
+ sass (3.2.7) lib/sass/engine.rb:342:in `_to_tree'
85858
+ sass (3.2.7) lib/sass/engine.rb:315:in `_render'
85859
+ sass (3.2.7) lib/sass/engine.rb:262:in `render'
85860
+ tilt (1.3.6) lib/tilt/css.rb:24:in `evaluate'
85861
+ tilt (1.3.6) lib/tilt/template.rb:77:in `render'
85862
+ sprockets (2.2.2) lib/sprockets/context.rb:193:in `block in evaluate'
85863
+ sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
85864
+ sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
85865
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
85866
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
85867
+ sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
85868
+ sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
85869
+ sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
85870
+ sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
85871
+ sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
85872
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85873
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85874
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85875
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:44:in `block in init_with'
85876
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:37:in `map'
85877
+ sprockets (2.2.2) lib/sprockets/processed_asset.rb:37:in `init_with'
85878
+ sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
85879
+ sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
85880
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85881
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85882
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85883
+ sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
85884
+ sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
85885
+ sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
85886
+ sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
85887
+ sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
85888
+ sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
85889
+ sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
85890
+ sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
85891
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
85892
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:44:in `block in stylesheet_link_tag'
85893
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `collect'
85894
+ actionpack (3.2.13) lib/sprockets/helpers/rails_helper.rb:43:in `stylesheet_link_tag'
85895
+ /Users/kevin/flms/app/views/layouts/flms/admin.html.haml:6:in `___sers_kevin_flms_app_views_layouts_flms_admin_html_haml___511405204905627849_70246932893120'
85896
+ actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
85897
+ activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
85898
+ actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
85899
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
85900
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
85901
+ actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
85902
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
85903
+ actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
85904
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
85905
+ actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
85906
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
85907
+ actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
85908
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
85909
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
85910
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
85911
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
85912
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
85913
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
85914
+ activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
85915
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
85916
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
85917
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
85918
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
85919
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
85920
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
85921
+ actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
85922
+ actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
85923
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
85924
+ activesupport (3.2.13) lib/active_support/callbacks.rb:436:in `_run__2229620767807028384__process_action__4105642151654813033__callbacks'
85925
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
85926
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
85927
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
85928
+ actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
85929
+ actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
85930
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
85931
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
85932
+ activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
85933
+ activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
85934
+ actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
85935
+ actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
85936
+ activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
85937
+ actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
85938
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
85939
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
85940
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
85941
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
85942
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
85943
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
85944
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
85945
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
85946
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
85947
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
85948
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
85949
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
85950
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
85951
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
85952
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
85953
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
85954
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
85955
+ warden (1.2.1) lib/warden/manager.rb:35:in `block in call'
85956
+ warden (1.2.1) lib/warden/manager.rb:34:in `catch'
85957
+ warden (1.2.1) lib/warden/manager.rb:34:in `call'
85958
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
85959
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
85960
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
85961
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
85962
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
85963
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
85964
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
85965
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
85966
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
85967
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
85968
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
85969
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
85970
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2731571581320401520__call__2379152223963507546__callbacks'
85971
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
85972
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
85973
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
85974
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
85975
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
85976
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
85977
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
85978
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
85979
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
85980
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
85981
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
85982
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
85983
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
85984
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
85985
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
85986
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
85987
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
85988
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
85989
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
85990
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
85991
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
85992
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
85993
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
85994
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
85995
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
85996
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
85997
+
85998
+
85999
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
86000
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
86001
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms)
86002
+
86003
+
86004
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:56 -0700
86005
+ Processing by Flms::BlocksController#show as HTML
86006
+ Parameters: {"page_id"=>"home", "id"=>"1"}
86007
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
86008
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
86009
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
86010
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
86011
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
86012
+ Compiled bootstrap.css (1189ms) (pid 1202)
86013
+ Compiled flms/admin.css (4ms) (pid 1202)
86014
+ Completed 200 OK in 1361ms (Views: 1358.6ms | ActiveRecord: 0.4ms)
86015
+
86016
+
86017
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86018
+ Processing by Flms::BlocksController#show as HTML
86019
+ Parameters: {"page_id"=>"home", "id"=>"1"}
86020
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
86021
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
86022
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
86023
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
86024
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
86025
+ Completed 200 OK in 106ms (Views: 104.2ms | ActiveRecord: 0.4ms)
86026
+
86027
+
86028
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86029
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
86030
+
86031
+
86032
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86033
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
86034
+
86035
+
86036
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86037
+ Served asset /flms/login.css - 304 Not Modified (0ms)
86038
+
86039
+
86040
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86041
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
86042
+
86043
+
86044
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86045
+ Served asset /flms/home.css - 304 Not Modified (0ms)
86046
+
86047
+
86048
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86049
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
86050
+
86051
+
86052
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86053
+ Served asset /bootstrap.css - 200 OK (4ms)
86054
+
86055
+
86056
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86057
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
86058
+
86059
+
86060
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:08:57 -0700
86061
+ Served asset /flms/admin.css - 304 Not Modified (49ms)
86062
+
86063
+
86064
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86065
+ Served asset /jquery.js - 304 Not Modified (0ms)
86066
+
86067
+
86068
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86069
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
86070
+
86071
+
86072
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86073
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
86074
+
86075
+
86076
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86077
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
86078
+
86079
+
86080
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86081
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
86082
+
86083
+
86084
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86085
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
86086
+
86087
+
86088
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86089
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
86090
+
86091
+
86092
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86093
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
86094
+
86095
+
86096
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86097
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
86098
+
86099
+
86100
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86101
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
86102
+
86103
+
86104
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86105
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
86106
+
86107
+
86108
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86109
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
86110
+
86111
+
86112
+ Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-03-19 12:08:58 -0700
86113
+ Served asset /glyphicons-halflings.png - 304 Not Modified (2ms)
86114
+
86115
+
86116
+ Started GET "/flms/pages/home/blocks/1" for 127.0.0.1 at 2013-03-19 12:08:59 -0700
86117
+ Processing by Flms::BlocksController#show as HTML
86118
+ Parameters: {"page_id"=>"home", "id"=>"1"}
86119
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
86120
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'home' LIMIT 1
86121
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = ? LIMIT 1 [["id", "1"]]
86122
+ Flms::Layer Load (0.1ms) SELECT "flms_layers".* FROM "flms_layers" WHERE "flms_layers"."block_id" = 1
86123
+ Rendered /Users/kevin/flms/app/views/flms/blocks/show.html.haml within layouts/flms/admin (2.1ms)
86124
+ Completed 200 OK in 108ms (Views: 106.1ms | ActiveRecord: 0.4ms)
86125
+
86126
+
86127
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86128
+ Served asset /flms/blocks/index.css - 304 Not Modified (0ms)
86129
+
86130
+
86131
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86132
+ Served asset /flms/blocks/show.css - 304 Not Modified (0ms)
86133
+
86134
+
86135
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86136
+ Served asset /flms/home.css - 304 Not Modified (0ms)
86137
+
86138
+
86139
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86140
+ Served asset /flms/layout.css - 304 Not Modified (0ms)
86141
+
86142
+
86143
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86144
+ Served asset /flms/login.css - 304 Not Modified (0ms)
86145
+
86146
+
86147
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86148
+ Served asset /jquery-ui.css - 304 Not Modified (0ms)
86149
+
86150
+
86151
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86152
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86153
+
86154
+
86155
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86156
+ Served asset /bootstrapSwitch.css - 304 Not Modified (0ms)
86157
+
86158
+
86159
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86160
+ Served asset /flms/admin.css - 304 Not Modified (0ms)
86161
+
86162
+
86163
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86164
+ Served asset /jquery.js - 304 Not Modified (0ms)
86165
+
86166
+
86167
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86168
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
86169
+
86170
+
86171
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86172
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
86173
+
86174
+
86175
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86176
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
86177
+
86178
+
86179
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86180
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
86181
+
86182
+
86183
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86184
+ Served asset /flms/blocks/index/block.js - 304 Not Modified (0ms)
86185
+
86186
+
86187
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86188
+ Served asset /flms/blocks/index/block_list.js - 304 Not Modified (0ms)
86189
+
86190
+
86191
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86192
+ Served asset /flms/blocks/index/index.js - 304 Not Modified (0ms)
86193
+
86194
+
86195
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86196
+ Served asset /flms/bootstrap.js - 304 Not Modified (0ms)
86197
+
86198
+
86199
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86200
+ Served asset /flms/layout.js - 304 Not Modified (0ms)
86201
+
86202
+
86203
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86204
+ Served asset /bootstrapSwitch.js - 304 Not Modified (0ms)
86205
+
86206
+
86207
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-03-19 12:09:00 -0700
86208
+ Served asset /flms/admin.js - 304 Not Modified (0ms)
86209
+
86210
+
86211
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:01 -0700
86212
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86213
+
86214
+
86215
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:33 -0700
86216
+ Compiled bootstrap.css (1208ms) (pid 1202)
86217
+ Served asset /bootstrap.css - 200 OK (1258ms)
86218
+
86219
+
86220
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:09:48 -0700
86221
+ Compiled bootstrap.css (1222ms) (pid 1202)
86222
+ Served asset /bootstrap.css - 200 OK (1227ms)
86223
+
86224
+
86225
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 12:11:50 -0700
86226
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86227
+
86228
+
86229
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-03-19 15:16:28 -0700
86230
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86231
+ Connecting to database specified by database.yml
86232
+ Connecting to database specified by database.yml
86233
+  (1.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86234
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
86235
+ Migrating to FlmsCreatePages (20130216032241)
86236
+ Migrating to CreateFlmsBlocks (20130302011705)
86237
+ Migrating to CreateFlmsBlocksPages (20130302015459)
86238
+ Migrating to CreateFlmsLayers (20130312220011)
86239
+ Migrating to AddImageToLayers (20130313002421)
86240
+ Migrating to CreateFlmsKeyframes (20130327183815)
86241
+  (0.1ms) select sqlite_version(*)
86242
+  (0.0ms) begin transaction
86243
+  (0.4ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float)
86244
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130327183815')
86245
+  (0.8ms) commit transaction
86246
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86247
+ Connecting to database specified by database.yml
86248
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86249
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
86250
+ Migrating to FlmsCreatePages (20130216032241)
86251
+ Migrating to CreateFlmsBlocks (20130302011705)
86252
+ Migrating to CreateFlmsBlocksPages (20130302015459)
86253
+ Migrating to CreateFlmsLayers (20130312220011)
86254
+ Migrating to AddImageToLayers (20130313002421)
86255
+ Migrating to CreateFlmsKeyframes (20130327183815)
86256
+  (0.0ms) select sqlite_version(*)
86257
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86258
+ Connecting to database specified by database.yml
86259
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86260
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
86261
+ Migrating to FlmsCreatePages (20130216032241)
86262
+ Migrating to CreateFlmsBlocks (20130302011705)
86263
+ Migrating to CreateFlmsBlocksPages (20130302015459)
86264
+ Migrating to CreateFlmsLayers (20130312220011)
86265
+ Migrating to AddImageToLayers (20130313002421)
86266
+ Migrating to CreateFlmsKeyframes (20130327183815)
86267
+  (0.0ms) select sqlite_version(*)
86268
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86269
+ Connecting to database specified by database.yml
86270
+  (0.1ms) select sqlite_version(*)
86271
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
86272
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
86273
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
86274
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
86275
+  (0.0ms) begin transaction
86276
+  (0.4ms) CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86277
+  (0.3ms) CREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")
86278
+  (0.1ms) CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
86279
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130208224914')
86280
+  (0.7ms) commit transaction
86281
+ Migrating to FlmsCreatePages (20130216032241)
86282
+  (0.0ms) begin transaction
86283
+  (0.3ms) CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86284
+  (0.1ms) CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
86285
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130216032241')
86286
+  (0.9ms) commit transaction
86287
+ Migrating to CreateFlmsBlocks (20130302011705)
86288
+  (0.0ms) begin transaction
86289
+  (0.3ms) CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
86290
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130302011705')
86291
+  (0.4ms) commit transaction
86292
+ Migrating to CreateFlmsBlocksPages (20130302015459)
86293
+  (0.0ms) begin transaction
86294
+  (0.3ms) CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
86295
+  (0.1ms) CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
86296
+  (0.1ms) CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
86297
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130302015459')
86298
+  (0.5ms) commit transaction
86299
+ Migrating to CreateFlmsLayers (20130312220011)
86300
+  (0.0ms) begin transaction
86301
+  (0.3ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "ordering" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
86302
+  (0.1ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
86303
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130312220011')
86304
+  (0.6ms) commit transaction
86305
+ Migrating to AddImageToLayers (20130313002421)
86306
+  (0.0ms) begin transaction
86307
+  (0.3ms) ALTER TABLE "flms_layers" ADD "image" varchar(255)
86308
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130313002421')
86309
+  (0.5ms) commit transaction
86310
+ Migrating to CreateFlmsKeyframes (20130327183815)
86311
+  (0.0ms) begin transaction
86312
+  (0.3ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float)
86313
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130327183815')
86314
+  (1.0ms) commit transaction
86315
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86316
+ Connecting to database specified by database.yml
86317
+  (1.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86318
+  (0.2ms) select sqlite_version(*)
86319
+  (1.0ms) CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
86320
+  (0.9ms) CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86321
+  (0.8ms) CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
86322
+  (1.0ms) CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
86323
+  (0.7ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float) 
86324
+  (1.0ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "ordering" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255))
86325
+  (0.8ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
86326
+  (0.6ms) CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86327
+  (0.7ms) CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
86328
+  (1.2ms) CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86329
+  (0.8ms) CREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")
86330
+  (0.8ms) CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
86331
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
86332
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
86333
+  (0.1ms) SELECT version FROM "schema_migrations"
86334
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130327183815')
86335
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130208224914')
86336
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130216032241')
86337
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130302011705')
86338
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130302015459')
86339
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130312220011')
86340
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130313002421')
86341
+ Connecting to database specified by database.yml
86342
+
86343
+
86344
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 10:10:36 -0700
86345
+ Processing by HomeController#index as HTML
86346
+ Parameters: {"q"=>"cof"}
86347
+ Rendered home/index.html.haml (3.8ms)
86348
+ Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.0ms)
86349
+
86350
+
86351
+ Started GET "/" for 127.0.0.1 at 2013-04-09 10:10:53 -0700
86352
+ Processing by HomeController#index as HTML
86353
+ Rendered home/index.html.haml (0.1ms)
86354
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
86355
+
86356
+
86357
+ Started GET "/admin" for 127.0.0.1 at 2013-04-09 10:11:01 -0700
86358
+
86359
+ ActionController::RoutingError (No route matches [GET] "/admin"):
86360
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
86361
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
86362
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
86363
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
86364
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
86365
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
86366
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
86367
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
86368
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
86369
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
86370
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
86371
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
86372
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
86373
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
86374
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
86375
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
86376
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
86377
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
86378
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
86379
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
86380
+
86381
+
86382
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
86383
+
86384
+
86385
+ Started GET "/flms/login" for 127.0.0.1 at 2013-04-09 10:11:06 -0700
86386
+ Processing by Flms::SessionsController#new as HTML
86387
+ Flms::User Load (0.6ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
86388
+ Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (2.6ms)
86389
+ Compiled flms/blocks/index.css (164ms) (pid 29208)
86390
+ Compiled flms/blocks/show.css (1ms) (pid 29208)
86391
+ Compiled flms/home.css (3ms) (pid 29208)
86392
+ Compiled flms/layout.css (2ms) (pid 29208)
86393
+ Compiled flms/login.css (3ms) (pid 29208)
86394
+ Compiled jquery-ui.css (0ms) (pid 29208)
86395
+ Compiled bootstrap.css (0ms) (pid 29208)
86396
+ Compiled bootstrapSwitch.css (0ms) (pid 29208)
86397
+ Compiled flms/admin.css (245ms) (pid 29208)
86398
+ Compiled jquery.js (40ms) (pid 29208)
86399
+ Compiled jquery_ujs.js (0ms) (pid 29208)
86400
+ Compiled jquery-ui.js (5ms) (pid 29208)
86401
+ Compiled modularity/modularity.js (189ms) (pid 29208)
86402
+ Compiled flms/blocks/index/block.js (118ms) (pid 29208)
86403
+ Compiled flms/blocks/index/block_list.js (120ms) (pid 29208)
86404
+ Compiled flms/blocks/index/index.js (130ms) (pid 29208)
86405
+ Compiled flms/bootstrap.js (0ms) (pid 29208)
86406
+ Compiled flms/layout.js (113ms) (pid 29208)
86407
+ Compiled bootstrapSwitch.js (0ms) (pid 29208)
86408
+ Compiled flms/admin.js (806ms) (pid 29208)
86409
+ Completed 200 OK in 1181ms (Views: 1166.2ms | ActiveRecord: 2.7ms)
86410
+
86411
+
86412
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86413
+ Served asset /flms/blocks/index.css - 200 OK (2ms)
86414
+
86415
+
86416
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86417
+ Served asset /flms/blocks/show.css - 200 OK (2ms)
86418
+
86419
+
86420
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86421
+ Served asset /flms/layout.css - 200 OK (5ms)
86422
+
86423
+
86424
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86425
+ Served asset /flms/home.css - 200 OK (1ms)
86426
+
86427
+
86428
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86429
+ Served asset /flms/login.css - 200 OK (1ms)
86430
+
86431
+
86432
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86433
+ Served asset /bootstrap.css - 200 OK (2ms)
86434
+
86435
+
86436
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86437
+ Served asset /jquery-ui.css - 200 OK (2ms)
86438
+
86439
+
86440
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86441
+ Served asset /bootstrapSwitch.css - 200 OK (2ms)
86442
+
86443
+
86444
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86445
+ Served asset /flms/admin.css - 200 OK (8ms)
86446
+
86447
+
86448
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86449
+ Served asset /jquery.js - 304 Not Modified (1ms)
86450
+
86451
+
86452
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86453
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
86454
+
86455
+
86456
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86457
+ Served asset /jquery-ui.js - 304 Not Modified (4ms)
86458
+
86459
+
86460
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86461
+ Served asset /modularity/modularity.js - 200 OK (3ms)
86462
+
86463
+
86464
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86465
+ Served asset /flms/blocks/index/block.js - 200 OK (3ms)
86466
+
86467
+
86468
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86469
+ Served asset /flms/blocks/index/block_list.js - 200 OK (3ms)
86470
+
86471
+
86472
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86473
+ Served asset /flms/blocks/index/index.js - 200 OK (3ms)
86474
+
86475
+
86476
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86477
+ Served asset /flms/bootstrap.js - 200 OK (1ms)
86478
+
86479
+
86480
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86481
+ Served asset /flms/layout.js - 200 OK (1ms)
86482
+
86483
+
86484
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86485
+ Served asset /bootstrapSwitch.js - 200 OK (1ms)
86486
+
86487
+
86488
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-04-09 10:11:07 -0700
86489
+ Served asset /flms/admin.js - 200 OK (56ms)
86490
+
86491
+
86492
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:12 -0700
86493
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86494
+
86495
+
86496
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:27 -0700
86497
+ Compiled bootstrap.css (0ms) (pid 29208)
86498
+ Served asset /bootstrap.css - 200 OK (6ms)
86499
+
86500
+
86501
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:11:44 -0700
86502
+ Compiled bootstrap.css (1121ms) (pid 29208)
86503
+ Served asset /bootstrap.css - 200 OK (1129ms)
86504
+
86505
+
86506
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:13:03 -0700
86507
+ Error compiling asset bootstrap.css:
86508
+ Sass::SyntaxError: Invalid CSS after "...kground-image: ": expected expression (e.g. 1px, bold), was "<%= image_url "..."
86509
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.scss)
86510
+ Served asset /bootstrap.css - 500 Internal Server Error
86511
+
86512
+
86513
+
86514
+
86515
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:13:16 -0700
86516
+ Error compiling asset bootstrap.css:
86517
+ NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadad768c68>
86518
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86519
+ Served asset /bootstrap.css - 500 Internal Server Error
86520
+
86521
+
86522
+
86523
+
86524
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:16 -0700
86525
+ Error compiling asset bootstrap.css:
86526
+ NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadae048d38>
86527
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86528
+ Served asset /bootstrap.css - 500 Internal Server Error
86529
+
86530
+
86531
+
86532
+
86533
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:17 -0700
86534
+ Error compiling asset bootstrap.css:
86535
+ NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadae5838c0>
86536
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86537
+ Served asset /bootstrap.css - 500 Internal Server Error
86538
+
86539
+
86540
+
86541
+
86542
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:46 -0700
86543
+ Error compiling asset bootstrap.css:
86544
+ NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadae512c88>
86545
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86546
+ Served asset /bootstrap.css - 500 Internal Server Error
86547
+
86548
+
86549
+
86550
+
86551
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 10:14:47 -0700
86552
+ Error compiling asset bootstrap.css:
86553
+ NoMethodError: undefined method `image_url' for #<#<Class:0x007fadad32d360>:0x007fadaba35f10>
86554
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86555
+ Served asset /bootstrap.css - 500 Internal Server Error
86556
+
86557
+
86558
+
86559
+
86560
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:18:42 -0700
86561
+ Error compiling asset bootstrap.css:
86562
+ SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
86563
+ ..."; _erbout.concat(( image-url "/glyphicons-halflings.png" )....
86564
+ ... ^
86565
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86566
+ Served asset /bootstrap.css - 500 Internal Server Error
86567
+
86568
+
86569
+
86570
+
86571
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:18:55 -0700
86572
+ Error compiling asset bootstrap.css:
86573
+ SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
86574
+ ..."; _erbout.concat(( asset-url "/glyphicons-halflings.png" )....
86575
+ ... ^
86576
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86577
+ Served asset /bootstrap.css - 500 Internal Server Error
86578
+
86579
+
86580
+
86581
+
86582
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 11:19:42 -0700
86583
+ Processing by HomeController#index as HTML
86584
+ Parameters: {"q"=>"cof"}
86585
+ Rendered home/index.html.haml (0.2ms)
86586
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
86587
+
86588
+
86589
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:23:15 -0700
86590
+ Error compiling asset bootstrap.css:
86591
+ SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
86592
+ ..."; _erbout.concat(( asset-url "/glyphicons-halflings.png", i...
86593
+ ... ^
86594
+ /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected ',', expecting ')'
86595
+ ...rl "/glyphicons-halflings.png", image ).to_s); _erbout.conca...
86596
+ ... ^
86597
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86598
+ Served asset /bootstrap.css - 500 Internal Server Error
86599
+
86600
+
86601
+
86602
+
86603
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:30:38 -0700
86604
+ Error compiling asset bootstrap.css:
86605
+ SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
86606
+ ..."; _erbout.concat(( asset-url "/glyphicons-halflings.png", i...
86607
+ ... ^
86608
+ /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected ',', expecting ')'
86609
+ ...rl "/glyphicons-halflings.png", image ).to_s); _erbout.conca...
86610
+ ... ^
86611
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86612
+ Served asset /bootstrap.css - 500 Internal Server Error
86613
+
86614
+
86615
+
86616
+
86617
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 11:30:38 -0700
86618
+ Error compiling asset bootstrap.css:
86619
+ SyntaxError: /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
86620
+ ..."; _erbout.concat(( asset-url "/glyphicons-halflings.png", i...
86621
+ ... ^
86622
+ /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb:2286: syntax error, unexpected ',', expecting ')'
86623
+ ...rl "/glyphicons-halflings.png", image ).to_s); _erbout.conca...
86624
+ ... ^
86625
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86626
+ Served asset /bootstrap.css - 500 Internal Server Error
86627
+
86628
+
86629
+
86630
+
86631
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:04:16 -0700
86632
+ Error compiling asset bootstrap.css:
86633
+ NameError: undefined local variable or method `image' for #<#<Class:0x007fadad32d360>:0x007fadb283dfa8>
86634
+ (in /Users/kevin/flms/vendor/assets/stylesheets/bootstrap.css.erb)
86635
+ Served asset /bootstrap.css - 500 Internal Server Error
86636
+
86637
+
86638
+
86639
+
86640
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 13:04:24 -0700
86641
+ Processing by HomeController#index as HTML
86642
+ Parameters: {"q"=>"cof"}
86643
+ Rendered home/index.html.haml (0.1ms)
86644
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
86645
+
86646
+
86647
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:04:30 -0700
86648
+ Compiled bootstrap.css (105ms) (pid 29208)
86649
+ Served asset /bootstrap.css - 200 OK (111ms)
86650
+
86651
+
86652
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:18 -0700
86653
+ Compiled bootstrap.css (105ms) (pid 29208)
86654
+ Served asset /bootstrap.css - 200 OK (147ms)
86655
+
86656
+
86657
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:22 -0700
86658
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86659
+
86660
+
86661
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:27 -0700
86662
+ Compiled bootstrap.css (104ms) (pid 29208)
86663
+ Served asset /bootstrap.css - 200 OK (109ms)
86664
+
86665
+
86666
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:36 -0700
86667
+ Compiled bootstrap.css (106ms) (pid 29208)
86668
+ Served asset /bootstrap.css - 200 OK (111ms)
86669
+
86670
+
86671
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:47 -0700
86672
+ Compiled bootstrap.css (103ms) (pid 29208)
86673
+ Served asset /bootstrap.css - 200 OK (108ms)
86674
+
86675
+
86676
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:05:51 -0700
86677
+ Compiled bootstrap.css (105ms) (pid 29208)
86678
+ Served asset /bootstrap.css - 200 OK (110ms)
86679
+
86680
+
86681
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:13 -0700
86682
+ Compiled bootstrap.css (107ms) (pid 29208)
86683
+ Served asset /bootstrap.css - 200 OK (113ms)
86684
+
86685
+
86686
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:23 -0700
86687
+ Compiled bootstrap.css (105ms) (pid 29208)
86688
+ Served asset /bootstrap.css - 304 Not Modified (110ms)
86689
+
86690
+
86691
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:28 -0700
86692
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86693
+
86694
+
86695
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:29 -0700
86696
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86697
+
86698
+
86699
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-09 13:06:30 -0700
86700
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86701
+
86702
+
86703
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-09 14:30:03 -0700
86704
+ Processing by HomeController#index as HTML
86705
+ Parameters: {"q"=>"cof"}
86706
+ Rendered home/index.html.haml (0.1ms)
86707
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
86708
+ Connecting to database specified by database.yml
86709
+
86710
+
86711
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-10 13:00:13 -0700
86712
+ Processing by HomeController#index as HTML
86713
+ Parameters: {"q"=>"cof"}
86714
+ Rendered home/index.html.haml (15.2ms)
86715
+ Completed 200 OK in 97ms (Views: 76.5ms | ActiveRecord: 0.0ms)
86716
+
86717
+
86718
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 10:35:58 -0700
86719
+ Processing by HomeController#index as HTML
86720
+ Parameters: {"q"=>"cof"}
86721
+ Rendered home/index.html.haml (0.1ms)
86722
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
86723
+
86724
+
86725
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 11:42:25 -0700
86726
+ Processing by HomeController#index as HTML
86727
+ Parameters: {"q"=>"cof"}
86728
+ Rendered home/index.html.haml (0.1ms)
86729
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
86730
+
86731
+
86732
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 13:02:18 -0700
86733
+ Processing by HomeController#index as HTML
86734
+ Parameters: {"q"=>"cof"}
86735
+ Rendered home/index.html.haml (0.1ms)
86736
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
86737
+
86738
+
86739
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 14:45:14 -0700
86740
+ Processing by HomeController#index as HTML
86741
+ Parameters: {"q"=>"cof"}
86742
+ Rendered home/index.html.haml (0.1ms)
86743
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
86744
+
86745
+
86746
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 16:33:16 -0700
86747
+ Processing by HomeController#index as HTML
86748
+ Parameters: {"q"=>"cof"}
86749
+ Rendered home/index.html.haml (0.1ms)
86750
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
86751
+
86752
+
86753
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-11 20:12:13 -0700
86754
+ Processing by HomeController#index as HTML
86755
+ Parameters: {"q"=>"cof"}
86756
+ Rendered home/index.html.haml (0.2ms)
86757
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
86758
+
86759
+
86760
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-12 11:48:57 -0700
86761
+ Processing by HomeController#index as HTML
86762
+ Parameters: {"q"=>"cof"}
86763
+ Rendered home/index.html.haml (15.2ms)
86764
+ Completed 200 OK in 86ms (Views: 68.3ms | ActiveRecord: 0.0ms)
86765
+
86766
+
86767
+ Started GET "/?q=cof" for 127.0.0.1 at 2013-04-12 13:02:43 -0700
86768
+ Processing by HomeController#index as HTML
86769
+ Parameters: {"q"=>"cof"}
86770
+ Rendered home/index.html.haml (0.3ms)
86771
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
86772
+
86773
+
86774
+ Started GET "/flms/login" for 127.0.0.1 at 2013-04-12 16:42:30 -0700
86775
+ Processing by Flms::SessionsController#new as HTML
86776
+ Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (15.9ms)
86777
+ Compiled flms/admin.css (157ms) (pid 29208)
86778
+ Completed 200 OK in 479ms (Views: 468.2ms | ActiveRecord: 0.0ms)
86779
+
86780
+
86781
+ Started GET "/assets/flms/blocks/index.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86782
+ Served asset /flms/blocks/index.css - 200 OK (0ms)
86783
+
86784
+
86785
+ Started GET "/assets/flms/blocks/show.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86786
+ Served asset /flms/blocks/show.css - 200 OK (0ms)
86787
+
86788
+
86789
+ Started GET "/assets/flms/home.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86790
+ Served asset /flms/home.css - 200 OK (0ms)
86791
+
86792
+
86793
+ Started GET "/assets/flms/login.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86794
+ Served asset /flms/login.css - 200 OK (0ms)
86795
+
86796
+
86797
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86798
+ Served asset /jquery-ui.css - 200 OK (0ms)
86799
+
86800
+
86801
+ Started GET "/assets/flms/layout.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86802
+ Served asset /flms/layout.css - 200 OK (0ms)
86803
+
86804
+
86805
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86806
+ Served asset /flms/admin.css - 200 OK (114ms)
86807
+
86808
+
86809
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86810
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
86811
+
86812
+
86813
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86814
+ Served asset /jquery_ujs.js - 200 OK (0ms)
86815
+
86816
+
86817
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86818
+ Served asset /jquery-ui.js - 200 OK (0ms)
86819
+
86820
+
86821
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86822
+ Served asset /jquery.js - 200 OK (0ms)
86823
+
86824
+
86825
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86826
+ Served asset /bootstrapSwitch.css - 200 OK (0ms)
86827
+
86828
+
86829
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86830
+ Served asset /modularity/modularity.js - 200 OK (0ms)
86831
+
86832
+
86833
+ Started GET "/assets/flms/blocks/index/block.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86834
+ Served asset /flms/blocks/index/block.js - 200 OK (0ms)
86835
+
86836
+
86837
+ Started GET "/assets/flms/blocks/index/block_list.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86838
+ Served asset /flms/blocks/index/block_list.js - 200 OK (0ms)
86839
+
86840
+
86841
+ Started GET "/assets/flms/bootstrap.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86842
+ Served asset /flms/bootstrap.js - 200 OK (0ms)
86843
+
86844
+
86845
+ Started GET "/assets/flms/blocks/index/index.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86846
+ Served asset /flms/blocks/index/index.js - 200 OK (0ms)
86847
+
86848
+
86849
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86850
+ Served asset /flms/admin.js - 200 OK (0ms)
86851
+
86852
+
86853
+ Started GET "/assets/flms/layout.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86854
+ Served asset /flms/layout.js - 200 OK (0ms)
86855
+
86856
+
86857
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-04-12 16:42:31 -0700
86858
+ Served asset /bootstrapSwitch.js - 200 OK (0ms)
86859
+ Connecting to database specified by database.yml
86860
+  (3.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86861
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
86862
+ Migrating to FlmsCreatePages (20130216032241)
86863
+ Migrating to CreateFlmsBlocks (20130302011705)
86864
+ Migrating to CreateFlmsBlocksPages (20130302015459)
86865
+ Migrating to CreateFlmsLayers (20130312220011)
86866
+ Migrating to AddImageToLayers (20130313002421)
86867
+ Migrating to CreateFlmsKeyframes (20130327183815)
86868
+ Migrating to RemoveOrderingFromLayers (20130404201756)
86869
+  (0.4ms) select sqlite_version(*)
86870
+  (0.0ms) begin transaction
86871
+  (0.5ms) CREATE TEMPORARY TABLE "altered_flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "ordering" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255))
86872
+  (0.1ms) CREATE INDEX "temp_index_altered_flms_layers_on_block_id" ON "altered_flms_layers" ("block_id")
86873
+  (0.4ms) SELECT * FROM "flms_layers"
86874
+  (1.6ms) DROP TABLE "flms_layers"
86875
+  (0.1ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255))
86876
+  (0.1ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
86877
+  (0.0ms) SELECT * FROM "altered_flms_layers"
86878
+  (0.3ms) DROP TABLE "altered_flms_layers"
86879
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130404201756')
86880
+  (0.9ms) commit transaction
86881
+ Migrating to AddTextLayers (20130415185500)
86882
+  (0.0ms) begin transaction
86883
+  (0.7ms) ALTER TABLE "flms_layers" ADD "text" varchar(255)
86884
+  (0.1ms) ALTER TABLE "flms_layers" ADD "font_size" float
86885
+  (0.1ms) ALTER TABLE "flms_layers" ADD "color" varchar(255)
86886
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130415185500')
86887
+  (0.7ms) commit transaction
86888
+ Migrating to StoreSizeInLayers (20130417210408)
86889
+  (0.0ms) begin transaction
86890
+  (0.3ms) ALTER TABLE "flms_layers" ADD "width" float
86891
+  (0.1ms) ALTER TABLE "flms_layers" ADD "height" float
86892
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130417210408')
86893
+  (0.6ms) commit transaction
86894
+ Migrating to StoreMarginInKeyframes (20130418191643)
86895
+  (0.0ms) begin transaction
86896
+  (0.3ms) ALTER TABLE "flms_keyframes" ADD "margin_left" float DEFAULT 0
86897
+  (0.1ms) ALTER TABLE "flms_keyframes" ADD "margin_top" float DEFAULT 0
86898
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130418191643')
86899
+  (0.8ms) commit transaction
86900
+ Migrating to LayersRemoveFromDom (20130418222016)
86901
+  (0.0ms) begin transaction
86902
+  (0.3ms) ALTER TABLE "flms_layers" ADD "dom_remove" boolean DEFAULT 't'
86903
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130418222016')
86904
+  (0.8ms) commit transaction
86905
+ Migrating to AddParagraphLayers (20130422193150)
86906
+  (0.0ms) begin transaction
86907
+  (0.3ms) ALTER TABLE "flms_layers" ADD "header" varchar(255)
86908
+  (0.1ms) ALTER TABLE "flms_layers" ADD "body" varchar(255)
86909
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130422193150')
86910
+  (0.6ms) commit transaction
86911
+ Migrating to LayersHaveZValue (20130426171058)
86912
+  (0.0ms) begin transaction
86913
+  (0.3ms) ALTER TABLE "flms_layers" ADD "z_index" varchar(255) DEFAULT '0' NOT NULL
86914
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130426171058')
86915
+  (0.9ms) commit transaction
86916
+ Migrating to AddEmbedCodeToLayers (20130430224538)
86917
+  (0.0ms) begin transaction
86918
+  (0.3ms) ALTER TABLE "flms_layers" ADD "embed_code" varchar(255)
86919
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130430224538')
86920
+  (0.5ms) commit transaction
86921
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86922
+ Connecting to database specified by database.yml
86923
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86924
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
86925
+ Migrating to FlmsCreatePages (20130216032241)
86926
+ Migrating to CreateFlmsBlocks (20130302011705)
86927
+ Migrating to CreateFlmsBlocksPages (20130302015459)
86928
+ Migrating to CreateFlmsLayers (20130312220011)
86929
+ Migrating to AddImageToLayers (20130313002421)
86930
+ Migrating to CreateFlmsKeyframes (20130327183815)
86931
+ Migrating to RemoveOrderingFromLayers (20130404201756)
86932
+ Migrating to AddTextLayers (20130415185500)
86933
+ Migrating to StoreSizeInLayers (20130417210408)
86934
+ Migrating to StoreMarginInKeyframes (20130418191643)
86935
+ Migrating to LayersRemoveFromDom (20130418222016)
86936
+ Migrating to AddParagraphLayers (20130422193150)
86937
+ Migrating to LayersHaveZValue (20130426171058)
86938
+ Migrating to AddEmbedCodeToLayers (20130430224538)
86939
+  (0.1ms) select sqlite_version(*)
86940
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86941
+ Connecting to database specified by database.yml
86942
+  (1.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
86943
+  (0.4ms) select sqlite_version(*)
86944
+  (0.9ms) DROP TABLE "flms_blocks"
86945
+  (0.7ms) CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86946
+  (0.8ms) DROP TABLE "flms_blocks_pages"
86947
+  (0.8ms) CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86948
+  (0.7ms) CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
86949
+  (1.1ms) CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
86950
+  (1.0ms) DROP TABLE "flms_keyframes"
86951
+  (0.8ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0)
86952
+  (0.9ms) DROP TABLE "flms_layers"
86953
+  (0.8ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" varchar(255), "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255))
86954
+  (0.7ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
86955
+  (0.6ms) DROP TABLE "flms_pages"
86956
+  (0.6ms) CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
86957
+  (0.8ms) CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
86958
+  (1.0ms) DROP TABLE "flms_users"
86959
+  (0.8ms) CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
86960
+  (0.6ms) CREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")
86961
+  (0.7ms) CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
86962
+  (0.1ms) SELECT version FROM "schema_migrations"
86963
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130430224538')
86964
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130404201756')
86965
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130415185500')
86966
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130417210408')
86967
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20130418191643')
86968
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130418222016')
86969
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130422193150')
86970
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130426171058')
86971
+ Connecting to database specified by database.yml
86972
+
86973
+
86974
+ Started GET "/" for 127.0.0.1 at 2013-05-06 10:34:35 -0700
86975
+ Processing by HomeController#index as HTML
86976
+ Rendered home/index.html.haml (2.3ms)
86977
+ Completed 200 OK in 47ms (Views: 47.2ms | ActiveRecord: 0.0ms)
86978
+
86979
+
86980
+ Started GET "/admin" for 127.0.0.1 at 2013-05-06 10:34:46 -0700
86981
+
86982
+ ActionController::RoutingError (No route matches [GET] "/admin"):
86983
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
86984
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
86985
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
86986
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
86987
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
86988
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
86989
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
86990
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
86991
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
86992
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
86993
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
86994
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
86995
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
86996
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
86997
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
86998
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
86999
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
87000
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
87001
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
87002
+ /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
87003
+
87004
+
87005
+ Rendered /Users/kevin/.rbenv/versions/1.9.3-p327-perf/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
87006
+
87007
+
87008
+ Started GET "/flms/login" for 127.0.0.1 at 2013-05-06 10:34:49 -0700
87009
+ Processing by Flms::SessionsController#new as HTML
87010
+ Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (2.7ms)
87011
+ Compiled flms/admin/blocks/show.css (195ms) (pid 5810)
87012
+ Compiled flms/admin/home.css (5ms) (pid 5810)
87013
+ Compiled flms/admin/layers/form.css (1ms) (pid 5810)
87014
+ Compiled flms/admin/layout.css (4ms) (pid 5810)
87015
+ Compiled flms/admin/login.css (10ms) (pid 5810)
87016
+ Compiled flms/admin/pages/edit.css (5ms) (pid 5810)
87017
+ Compiled jquery-ui.css (0ms) (pid 5810)
87018
+ Compiled bootstrap.css (0ms) (pid 5810)
87019
+ Compiled bootstrapSwitch.css (0ms) (pid 5810)
87020
+ Compiled flms/admin.css (248ms) (pid 5810)
87021
+ Compiled jquery.js (1ms) (pid 5810)
87022
+ Compiled jquery_ujs.js (0ms) (pid 5810)
87023
+ Compiled jquery-ui.js (5ms) (pid 5810)
87024
+ Compiled modularity/tools/string_tools.js (136ms) (pid 5810)
87025
+ Compiled modularity/modularity.js (409ms) (pid 5810)
87026
+ Compiled flms/admin/bootstrap.js (0ms) (pid 5810)
87027
+ Compiled flms/admin/layout.js (137ms) (pid 5810)
87028
+ Compiled flms/admin/pages/edit/block.js (188ms) (pid 5810)
87029
+ Compiled flms/admin/pages/edit/block_list.js (141ms) (pid 5810)
87030
+ Compiled flms/admin/pages/edit/edit.js (151ms) (pid 5810)
87031
+ Compiled bootstrapSwitch.js (0ms) (pid 5810)
87032
+ Compiled flms/admin.js (1153ms) (pid 5810)
87033
+ Completed 200 OK in 1602ms (Views: 1600.9ms | ActiveRecord: 0.0ms)
87034
+
87035
+
87036
+ Started GET "/assets/flms/admin/blocks/show.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87037
+ Served asset /flms/admin/blocks/show.css - 200 OK (4ms)
87038
+
87039
+
87040
+ Started GET "/assets/flms/admin/home.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87041
+ Served asset /flms/admin/home.css - 200 OK (2ms)
87042
+
87043
+
87044
+ Started GET "/assets/flms/admin/layers/form.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87045
+ Served asset /flms/admin/layers/form.css - 200 OK (2ms)
87046
+
87047
+
87048
+ Started GET "/assets/flms/admin/login.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87049
+ Served asset /flms/admin/login.css - 200 OK (2ms)
87050
+
87051
+
87052
+ Started GET "/assets/flms/admin/layout.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87053
+ Served asset /flms/admin/layout.css - 200 OK (2ms)
87054
+
87055
+
87056
+ Started GET "/assets/flms/admin/pages/edit.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87057
+ Served asset /flms/admin/pages/edit.css - 200 OK (2ms)
87058
+
87059
+
87060
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87061
+ Served asset /jquery-ui.css - 200 OK (3ms)
87062
+
87063
+
87064
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87065
+ Served asset /bootstrap.css - 200 OK (4ms)
87066
+
87067
+
87068
+ Started GET "/assets/bootstrapSwitch.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87069
+ Served asset /bootstrapSwitch.css - 200 OK (2ms)
87070
+
87071
+
87072
+ Started GET "/assets/flms/admin.css?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87073
+ Served asset /flms/admin.css - 200 OK (10ms)
87074
+
87075
+
87076
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87077
+ Served asset /jquery.js - 304 Not Modified (2ms)
87078
+
87079
+
87080
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87081
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
87082
+
87083
+
87084
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87085
+ Served asset /jquery-ui.js - 304 Not Modified (5ms)
87086
+
87087
+
87088
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87089
+ Served asset /modularity/modularity.js - 304 Not Modified (6ms)
87090
+
87091
+
87092
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87093
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (1ms)
87094
+
87095
+
87096
+ Started GET "/assets/flms/admin/bootstrap.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87097
+ Served asset /flms/admin/bootstrap.js - 200 OK (2ms)
87098
+
87099
+
87100
+ Started GET "/assets/flms/admin/layout.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87101
+ Served asset /flms/admin/layout.js - 200 OK (3ms)
87102
+
87103
+
87104
+ Started GET "/assets/flms/admin/pages/edit/block.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87105
+ Served asset /flms/admin/pages/edit/block.js - 200 OK (1ms)
87106
+
87107
+
87108
+ Started GET "/assets/flms/admin/pages/edit/block_list.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87109
+ Served asset /flms/admin/pages/edit/block_list.js - 200 OK (2ms)
87110
+
87111
+
87112
+ Started GET "/assets/flms/admin/pages/edit/edit.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87113
+ Served asset /flms/admin/pages/edit/edit.js - 200 OK (2ms)
87114
+
87115
+
87116
+ Started GET "/assets/bootstrapSwitch.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:50 -0700
87117
+ Served asset /bootstrapSwitch.js - 200 OK (2ms)
87118
+
87119
+
87120
+ Started GET "/assets/flms/admin.js?body=1" for 127.0.0.1 at 2013-05-06 10:34:51 -0700
87121
+ Served asset /flms/admin.js - 200 OK (14ms)
87122
+
87123
+
87124
+ Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
87125
+ Processing by Flms::SessionsController#create as HTML
87126
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87127
+ Flms::User Load (0.5ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
87128
+ Completed 401 Unauthorized in 11ms
87129
+ Processing by Flms::SessionsController#new as HTML
87130
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87131
+ Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (1.3ms)
87132
+ Completed 200 OK in 166ms (Views: 165.3ms | ActiveRecord: 0.0ms)
87133
+
87134
+
87135
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
87136
+ Served asset /jquery.js - 304 Not Modified (0ms)
87137
+
87138
+
87139
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
87140
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87141
+
87142
+
87143
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
87144
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87145
+
87146
+
87147
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
87148
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87149
+
87150
+
87151
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:36 -0700
87152
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87153
+
87154
+
87155
+ Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:35:39 -0700
87156
+ Processing by Flms::SessionsController#create as HTML
87157
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87158
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
87159
+ Completed 401 Unauthorized in 1ms
87160
+ Processing by Flms::SessionsController#new as HTML
87161
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87162
+ Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (1.1ms)
87163
+ Completed 200 OK in 165ms (Views: 165.1ms | ActiveRecord: 0.0ms)
87164
+
87165
+
87166
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
87167
+ Served asset /jquery.js - 304 Not Modified (0ms)
87168
+
87169
+
87170
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
87171
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87172
+
87173
+
87174
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
87175
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87176
+
87177
+
87178
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
87179
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87180
+
87181
+
87182
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:40 -0700
87183
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87184
+
87185
+
87186
+ Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
87187
+ Processing by Flms::SessionsController#create as HTML
87188
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87189
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
87190
+ Completed 401 Unauthorized in 1ms
87191
+ Processing by Flms::SessionsController#new as HTML
87192
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87193
+ Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (0.9ms)
87194
+ Completed 200 OK in 154ms (Views: 153.5ms | ActiveRecord: 0.0ms)
87195
+
87196
+
87197
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
87198
+ Served asset /jquery.js - 304 Not Modified (0ms)
87199
+
87200
+
87201
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
87202
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87203
+
87204
+
87205
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
87206
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87207
+
87208
+
87209
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
87210
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87211
+
87212
+
87213
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:35:43 -0700
87214
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87215
+ Connecting to database specified by database.yml
87216
+ Connecting to database specified by database.yml
87217
+  (0.0ms) begin transaction
87218
+ Flms::User Exists (1.6ms) SELECT 1 AS one FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
87219
+  (0.0ms) rollback transaction
87220
+
87221
+
87222
+ Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
87223
+ Processing by Flms::SessionsController#create as HTML
87224
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87225
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
87226
+ Completed 401 Unauthorized in 1ms
87227
+ Processing by Flms::SessionsController#new as HTML
87228
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87229
+ Rendered /Users/kevin/flms/app/views/flms/sessions/new.html.haml within layouts/flms/admin_login (1.1ms)
87230
+ Completed 200 OK in 158ms (Views: 157.4ms | ActiveRecord: 0.0ms)
87231
+
87232
+
87233
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
87234
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87235
+
87236
+
87237
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
87238
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87239
+
87240
+
87241
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
87242
+ Served asset /jquery.js - 304 Not Modified (0ms)
87243
+
87244
+
87245
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
87246
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87247
+
87248
+
87249
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
87250
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87251
+
87252
+
87253
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:36:51 -0700
87254
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87255
+ Connecting to database specified by database.yml
87256
+  (0.1ms) begin transaction
87257
+ Flms::User Exists (1.7ms) SELECT 1 AS one FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
87258
+ Binary data inserted for `string` type on column `encrypted_password`
87259
+ SQL (4.3ms) INSERT INTO "flms_users" ("created_at", "current_sign_in_at", "current_sign_in_ip", "email", "encrypted_password", "last_sign_in_at", "last_sign_in_ip", "remember_created_at", "reset_password_sent_at", "reset_password_token", "sign_in_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Mon, 06 May 2013 17:37:01 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "kevin.goslar@originate.com"], ["encrypted_password", "$2a$10$GmHvWm4YPL/M6qYyEbzSuuwtPjvn9mQcyPH/0vGkMlrm1U/kBcikG"], ["last_sign_in_at", nil], ["last_sign_in_ip", nil], ["remember_created_at", nil], ["reset_password_sent_at", nil], ["reset_password_token", nil], ["sign_in_count", 0], ["updated_at", Mon, 06 May 2013 17:37:01 UTC +00:00]]
87260
+  (1.0ms) commit transaction
87261
+
87262
+
87263
+ Started POST "/flms/login" for 127.0.0.1 at 2013-05-06 10:37:06 -0700
87264
+ Processing by Flms::SessionsController#create as HTML
87265
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "user"=>{"email"=>"kevin.goslar@originate.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
87266
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."email" = 'kevin.goslar@originate.com' LIMIT 1
87267
+  (0.1ms) begin transaction
87268
+  (0.4ms) UPDATE "flms_users" SET "last_sign_in_at" = '2013-05-06 17:37:06.799179', "current_sign_in_at" = '2013-05-06 17:37:06.799179', "last_sign_in_ip" = '127.0.0.1', "current_sign_in_ip" = '127.0.0.1', "sign_in_count" = 1, "updated_at" = '2013-05-06 17:37:06.800200' WHERE "flms_users"."id" = 1
87269
+  (1.3ms) commit transaction
87270
+ Redirected to http://localhost:3000/flms/pages
87271
+ Completed 302 Found in 89ms (ActiveRecord: 0.0ms)
87272
+
87273
+
87274
+ Started GET "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:06 -0700
87275
+ Processing by Flms::PagesController#index as HTML
87276
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87277
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages"
87278
+ Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (2.6ms)
87279
+ Completed 200 OK in 164ms (Views: 161.7ms | ActiveRecord: 0.4ms)
87280
+
87281
+
87282
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87283
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87284
+
87285
+
87286
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87287
+ Served asset /jquery.js - 304 Not Modified (0ms)
87288
+
87289
+
87290
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87291
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87292
+
87293
+
87294
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87295
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87296
+
87297
+
87298
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87299
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87300
+
87301
+
87302
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87303
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87304
+
87305
+
87306
+ Started GET "/assets/glyphicons-halflings.png" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87307
+ Served asset /glyphicons-halflings.png - 200 OK (3ms)
87308
+
87309
+
87310
+ Started GET "/assets/glyphicons-halflings-white.png" for 127.0.0.1 at 2013-05-06 10:37:07 -0700
87311
+ Served asset /glyphicons-halflings-white.png - 200 OK (3ms)
87312
+
87313
+
87314
+ Started GET "/flms/pages/new" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
87315
+ Processing by Flms::PagesController#new as HTML
87316
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87317
+ Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (6.2ms)
87318
+ Rendered /Users/kevin/flms/app/views/flms/pages/new.html.haml within layouts/flms/admin (10.1ms)
87319
+ Completed 200 OK in 174ms (Views: 125.7ms | ActiveRecord: 0.2ms)
87320
+
87321
+
87322
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
87323
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87324
+
87325
+
87326
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
87327
+ Served asset /jquery.js - 304 Not Modified (0ms)
87328
+
87329
+
87330
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
87331
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87332
+
87333
+
87334
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
87335
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87336
+
87337
+
87338
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
87339
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87340
+
87341
+
87342
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:09 -0700
87343
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87344
+
87345
+
87346
+ Started POST "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87347
+ Processing by Flms::PagesController#create as HTML
87348
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "page"=>{"title"=>"page1", "url"=>"oeu"}, "commit"=>"Create Page"}
87349
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87350
+  (0.1ms) begin transaction
87351
+ SQL (0.5ms) INSERT INTO "flms_pages" ("created_at", "title", "updated_at", "url") VALUES (?, ?, ?, ?) [["created_at", Mon, 06 May 2013 17:37:16 UTC +00:00], ["title", "page1"], ["updated_at", Mon, 06 May 2013 17:37:16 UTC +00:00], ["url", "oeu"]]
87352
+  (0.6ms) commit transaction
87353
+ Redirected to http://localhost:3000/flms/pages
87354
+ Completed 302 Found in 5ms (ActiveRecord: 1.3ms)
87355
+
87356
+
87357
+ Started GET "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87358
+ Processing by Flms::PagesController#index as HTML
87359
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87360
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" 
87361
+ Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (1.0ms)
87362
+ Completed 200 OK in 118ms (Views: 116.3ms | ActiveRecord: 0.2ms)
87363
+
87364
+
87365
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87366
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87367
+
87368
+
87369
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87370
+ Served asset /jquery.js - 304 Not Modified (0ms)
87371
+
87372
+
87373
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87374
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87375
+
87376
+
87377
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87378
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87379
+
87380
+
87381
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87382
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87383
+
87384
+
87385
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:16 -0700
87386
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87387
+
87388
+
87389
+ Started GET "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
87390
+ Processing by Flms::BlocksController#index as HTML
87391
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87392
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" 
87393
+ Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (4.7ms)
87394
+ Completed 200 OK in 166ms (Views: 162.8ms | ActiveRecord: 0.6ms)
87395
+
87396
+
87397
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
87398
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87399
+
87400
+
87401
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
87402
+ Served asset /jquery.js - 304 Not Modified (0ms)
87403
+
87404
+
87405
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
87406
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87407
+
87408
+
87409
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
87410
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87411
+
87412
+
87413
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
87414
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87415
+
87416
+
87417
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:19 -0700
87418
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87419
+
87420
+
87421
+ Started GET "/flms/blocks/new" for 127.0.0.1 at 2013-05-06 10:37:20 -0700
87422
+ Processing by Flms::BlocksController#new as HTML
87423
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87424
+ Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (5.1ms)
87425
+ Rendered /Users/kevin/flms/app/views/flms/blocks/new.html.haml within layouts/flms/admin (7.0ms)
87426
+ Completed 200 OK in 168ms (Views: 163.8ms | ActiveRecord: 0.2ms)
87427
+
87428
+
87429
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:20 -0700
87430
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87431
+
87432
+
87433
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
87434
+ Served asset /jquery.js - 304 Not Modified (0ms)
87435
+
87436
+
87437
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
87438
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87439
+
87440
+
87441
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
87442
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87443
+
87444
+
87445
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
87446
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87447
+
87448
+
87449
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:21 -0700
87450
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87451
+
87452
+
87453
+ Started POST "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
87454
+ Processing by Flms::BlocksController#create as HTML
87455
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"name"=>"block 1"}, "commit"=>"Create Block"}
87456
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87457
+  (0.0ms) begin transaction
87458
+  (0.0ms) rollback transaction
87459
+ Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (2.3ms)
87460
+ Rendered /Users/kevin/flms/app/views/flms/blocks/new.html.haml within layouts/flms/admin (3.1ms)
87461
+ Completed 200 OK in 169ms (Views: 166.4ms | ActiveRecord: 0.3ms)
87462
+
87463
+
87464
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
87465
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87466
+
87467
+
87468
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
87469
+ Served asset /jquery.js - 304 Not Modified (0ms)
87470
+
87471
+
87472
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
87473
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87474
+
87475
+
87476
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
87477
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87478
+
87479
+
87480
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
87481
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87482
+
87483
+
87484
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:24 -0700
87485
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87486
+
87487
+
87488
+ Started POST "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87489
+ Processing by Flms::BlocksController#create as HTML
87490
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"name"=>"block1"}, "commit"=>"Create Block"}
87491
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87492
+  (0.0ms) begin transaction
87493
+ SQL (0.3ms) INSERT INTO "flms_blocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 06 May 2013 17:37:28 UTC +00:00], ["name", "block1"], ["updated_at", Mon, 06 May 2013 17:37:28 UTC +00:00]]
87494
+  (0.6ms) commit transaction
87495
+ Redirected to http://localhost:3000/flms/blocks
87496
+ Completed 302 Found in 4ms (ActiveRecord: 1.1ms)
87497
+
87498
+
87499
+ Started GET "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87500
+ Processing by Flms::BlocksController#index as HTML
87501
+ Flms::User Load (0.3ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87502
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" 
87503
+ Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (1.4ms)
87504
+ Completed 200 OK in 162ms (Views: 160.2ms | ActiveRecord: 0.4ms)
87505
+
87506
+
87507
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87508
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87509
+
87510
+
87511
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87512
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87513
+
87514
+
87515
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87516
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87517
+
87518
+
87519
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87520
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87521
+
87522
+
87523
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87524
+ Served asset /jquery.js - 304 Not Modified (0ms)
87525
+
87526
+
87527
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:28 -0700
87528
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87529
+
87530
+
87531
+ Started GET "/flms/blocks/new" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
87532
+ Processing by Flms::BlocksController#new as HTML
87533
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87534
+ Rendered /Users/kevin/flms/app/views/flms/blocks/_form.html.haml (2.1ms)
87535
+ Rendered /Users/kevin/flms/app/views/flms/blocks/new.html.haml within layouts/flms/admin (3.1ms)
87536
+ Completed 200 OK in 167ms (Views: 166.1ms | ActiveRecord: 0.2ms)
87537
+
87538
+
87539
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
87540
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87541
+
87542
+
87543
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
87544
+ Served asset /jquery.js - 304 Not Modified (0ms)
87545
+
87546
+
87547
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
87548
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87549
+
87550
+
87551
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
87552
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87553
+
87554
+
87555
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
87556
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87557
+
87558
+
87559
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:30 -0700
87560
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87561
+
87562
+
87563
+ Started POST "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:33 -0700
87564
+ Processing by Flms::BlocksController#create as HTML
87565
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"name"=>"block2"}, "commit"=>"Create Block"}
87566
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87567
+  (0.0ms) begin transaction
87568
+ SQL (0.3ms) INSERT INTO "flms_blocks" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Mon, 06 May 2013 17:37:33 UTC +00:00], ["name", "block2"], ["updated_at", Mon, 06 May 2013 17:37:33 UTC +00:00]]
87569
+  (2.2ms) commit transaction
87570
+ Redirected to http://localhost:3000/flms/blocks
87571
+ Completed 302 Found in 5ms (ActiveRecord: 2.7ms)
87572
+
87573
+
87574
+ Started GET "/flms/blocks" for 127.0.0.1 at 2013-05-06 10:37:33 -0700
87575
+ Processing by Flms::BlocksController#index as HTML
87576
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87577
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks"
87578
+ Rendered /Users/kevin/flms/app/views/flms/blocks/index.html.haml within layouts/flms/admin (2.0ms)
87579
+ Completed 200 OK in 164ms (Views: 162.8ms | ActiveRecord: 0.3ms)
87580
+
87581
+
87582
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
87583
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87584
+
87585
+
87586
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
87587
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87588
+
87589
+
87590
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
87591
+ Served asset /jquery.js - 304 Not Modified (0ms)
87592
+
87593
+
87594
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
87595
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87596
+
87597
+
87598
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
87599
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87600
+
87601
+
87602
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:34 -0700
87603
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87604
+
87605
+
87606
+ Started GET "/flms/pages" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
87607
+ Processing by Flms::PagesController#index as HTML
87608
+ Flms::User Load (0.1ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87609
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages"
87610
+ Rendered /Users/kevin/flms/app/views/flms/pages/index.html.haml within layouts/flms/admin (0.9ms)
87611
+ Completed 200 OK in 114ms (Views: 112.4ms | ActiveRecord: 0.2ms)
87612
+
87613
+
87614
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
87615
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87616
+
87617
+
87618
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
87619
+ Served asset /jquery.js - 304 Not Modified (0ms)
87620
+
87621
+
87622
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
87623
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87624
+
87625
+
87626
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
87627
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87628
+
87629
+
87630
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
87631
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87632
+
87633
+
87634
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:37:58 -0700
87635
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87636
+
87637
+
87638
+ Started GET "/flms/pages/oeu/edit" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
87639
+ Processing by Flms::PagesController#edit as HTML
87640
+ Parameters: {"id"=>"oeu"}
87641
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87642
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
87643
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" 
87644
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" INNER JOIN "flms_blocks_pages" ON "flms_blocks"."id" = "flms_blocks_pages"."block_id" WHERE "flms_blocks_pages"."page_id" = 1
87645
+ Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (1.9ms)
87646
+ Flms::BlocksPage Load (0.1ms) SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 1 ORDER BY ordering
87647
+ Rendered /Users/kevin/flms/app/views/flms/pages/_block_list.html.haml (6.6ms)
87648
+ Rendered /Users/kevin/flms/app/views/flms/pages/_add_block.html.haml (2.6ms)
87649
+ Rendered /Users/kevin/flms/app/views/flms/pages/edit.html.haml within layouts/flms/admin (14.4ms)
87650
+ Completed 200 OK in 192ms (Views: 166.7ms | ActiveRecord: 0.8ms)
87651
+
87652
+
87653
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
87654
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87655
+
87656
+
87657
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
87658
+ Served asset /jquery.js - 304 Not Modified (0ms)
87659
+
87660
+
87661
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
87662
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87663
+
87664
+
87665
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
87666
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87667
+
87668
+
87669
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
87670
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87671
+
87672
+
87673
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:00 -0700
87674
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87675
+
87676
+
87677
+ Started PUT "/flms/pages/oeu/add_block" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87678
+ Processing by Flms::PagesController#add_block as HTML
87679
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"id"=>"1"}, "commit"=>"Add", "page_id"=>"oeu"}
87680
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87681
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" IS NULL LIMIT 1
87682
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
87683
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = 1 LIMIT 1
87684
+  (0.0ms) begin transaction
87685
+ SQL (0.5ms) INSERT INTO "flms_blocks_pages" ("active", "block_id", "created_at", "ordering", "page_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["active", nil], ["block_id", 1], ["created_at", Mon, 06 May 2013 17:38:03 UTC +00:00], ["ordering", nil], ["page_id", 1], ["updated_at", Mon, 06 May 2013 17:38:03 UTC +00:00]]
87686
+  (2.0ms) commit transaction
87687
+ Redirected to http://localhost:3000/flms/pages/oeu/edit
87688
+ Completed 302 Found in 17ms (ActiveRecord: 2.9ms)
87689
+
87690
+
87691
+ Started GET "/flms/pages/oeu/edit" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87692
+ Processing by Flms::PagesController#edit as HTML
87693
+ Parameters: {"id"=>"oeu"}
87694
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87695
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
87696
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" 
87697
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" INNER JOIN "flms_blocks_pages" ON "flms_blocks"."id" = "flms_blocks_pages"."block_id" WHERE "flms_blocks_pages"."page_id" = 1
87698
+ Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (2.3ms)
87699
+ Flms::BlocksPage Load (0.2ms) SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 1 ORDER BY ordering
87700
+ Flms::Block Load (0.2ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1)
87701
+ Rendered /Users/kevin/flms/app/views/flms/pages/_block_list.html.haml (6.1ms)
87702
+ Rendered /Users/kevin/flms/app/views/flms/pages/_add_block.html.haml (1.4ms)
87703
+ Rendered /Users/kevin/flms/app/views/flms/pages/edit.html.haml within layouts/flms/admin (12.2ms)
87704
+ Completed 200 OK in 175ms (Views: 170.7ms | ActiveRecord: 1.0ms)
87705
+
87706
+
87707
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87708
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87709
+
87710
+
87711
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87712
+ Served asset /jquery.js - 304 Not Modified (0ms)
87713
+
87714
+
87715
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87716
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87717
+
87718
+
87719
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87720
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87721
+
87722
+
87723
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87724
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87725
+
87726
+
87727
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:03 -0700
87728
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87729
+
87730
+
87731
+ Started PUT "/flms/pages/oeu/add_block" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87732
+ Processing by Flms::PagesController#add_block as HTML
87733
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"s4DMvE93KVaHsKXVv9Ji7tDWjTZryjFh4xPHfInwZ30=", "block"=>{"id"=>"2"}, "commit"=>"Add", "page_id"=>"oeu"}
87734
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87735
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" IS NULL LIMIT 1
87736
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
87737
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" = 2 LIMIT 1
87738
+  (0.0ms) begin transaction
87739
+ SQL (0.3ms) INSERT INTO "flms_blocks_pages" ("active", "block_id", "created_at", "ordering", "page_id", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["active", nil], ["block_id", 2], ["created_at", Mon, 06 May 2013 17:38:05 UTC +00:00], ["ordering", nil], ["page_id", 1], ["updated_at", Mon, 06 May 2013 17:38:05 UTC +00:00]]
87740
+  (2.3ms) commit transaction
87741
+ Redirected to http://localhost:3000/flms/pages/oeu/edit
87742
+ Completed 302 Found in 7ms (ActiveRecord: 3.2ms)
87743
+
87744
+
87745
+ Started GET "/flms/pages/oeu/edit" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87746
+ Processing by Flms::PagesController#edit as HTML
87747
+ Parameters: {"id"=>"oeu"}
87748
+ Flms::User Load (0.2ms) SELECT "flms_users".* FROM "flms_users" WHERE "flms_users"."id" = 1 LIMIT 1
87749
+ Flms::Page Load (0.1ms) SELECT "flms_pages".* FROM "flms_pages" WHERE "flms_pages"."url" = 'oeu' LIMIT 1
87750
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks"
87751
+ Flms::Block Load (0.1ms) SELECT "flms_blocks".* FROM "flms_blocks" INNER JOIN "flms_blocks_pages" ON "flms_blocks"."id" = "flms_blocks_pages"."block_id" WHERE "flms_blocks_pages"."page_id" = 1
87752
+ Rendered /Users/kevin/flms/app/views/flms/pages/_form.html.haml (2.1ms)
87753
+ Flms::BlocksPage Load (0.1ms) SELECT "flms_blocks_pages".* FROM "flms_blocks_pages" WHERE "flms_blocks_pages"."page_id" = 1 ORDER BY ordering
87754
+ Flms::Block Load (0.2ms) SELECT "flms_blocks".* FROM "flms_blocks" WHERE "flms_blocks"."id" IN (1, 2)
87755
+ Rendered /Users/kevin/flms/app/views/flms/pages/_block_list.html.haml (4.2ms)
87756
+ Rendered /Users/kevin/flms/app/views/flms/pages/_add_block.html.haml (1.4ms)
87757
+ Rendered /Users/kevin/flms/app/views/flms/pages/edit.html.haml within layouts/flms/admin (10.1ms)
87758
+ Completed 200 OK in 176ms (Views: 173.4ms | ActiveRecord: 0.8ms)
87759
+
87760
+
87761
+ Started GET "/assets/bootstrap.css?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87762
+ Served asset /bootstrap.css - 304 Not Modified (0ms)
87763
+
87764
+
87765
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87766
+ Served asset /jquery.js - 304 Not Modified (0ms)
87767
+
87768
+
87769
+ Started GET "/assets/modularity/tools/string_tools.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87770
+ Served asset /modularity/tools/string_tools.js - 304 Not Modified (0ms)
87771
+
87772
+
87773
+ Started GET "/assets/modularity/modularity.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87774
+ Served asset /modularity/modularity.js - 304 Not Modified (0ms)
87775
+
87776
+
87777
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87778
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
87779
+
87780
+
87781
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-06 10:38:05 -0700
87782
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
87783
+ Connecting to database specified by database.yml
87784
+ Connecting to database specified by database.yml
87785
+  (4.7ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87786
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
87787
+ Migrating to FlmsCreatePages (20130216032241)
87788
+ Migrating to CreateFlmsBlocks (20130302011705)
87789
+ Migrating to CreateFlmsBlocksPages (20130302015459)
87790
+ Migrating to CreateFlmsLayers (20130312220011)
87791
+ Migrating to AddImageToLayers (20130313002421)
87792
+ Migrating to CreateFlmsKeyframes (20130327183815)
87793
+ Migrating to RemoveOrderingFromLayers (20130404201756)
87794
+ Migrating to AddTextLayers (20130415185500)
87795
+ Migrating to StoreSizeInLayers (20130417210408)
87796
+ Migrating to StoreMarginInKeyframes (20130418191643)
87797
+ Migrating to LayersRemoveFromDom (20130418222016)
87798
+ Migrating to AddParagraphLayers (20130422193150)
87799
+ Migrating to LayersHaveZValue (20130426171058)
87800
+ Migrating to AddEmbedCodeToLayers (20130430224538)
87801
+ Migrating to MakeParagraphLayerBodyText (20130506204547)
87802
+  (0.1ms) select sqlite_version(*)
87803
+  (0.0ms) begin transaction
87804
+  (1.0ms) CREATE TEMPORARY TABLE "altered_flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" varchar(255), "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255))
87805
+  (0.1ms) CREATE INDEX "temp_index_altered_flms_layers_on_block_id" ON "altered_flms_layers" ("block_id")
87806
+  (3.1ms) SELECT * FROM "flms_layers"
87807
+  (8.3ms) DROP TABLE "flms_layers"
87808
+  (0.2ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255))
87809
+  (0.1ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
87810
+  (0.1ms) SELECT * FROM "altered_flms_layers"
87811
+  (0.6ms) DROP TABLE "altered_flms_layers"
87812
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130506204547')
87813
+  (1.2ms) commit transaction
87814
+ Migrating to AddActiveToFlmsLayers (20130506232533)
87815
+  (0.0ms) begin transaction
87816
+  (0.9ms) ALTER TABLE "flms_layers" ADD "active" boolean DEFAULT 't'
87817
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130506232533')
87818
+  (0.8ms) commit transaction
87819
+ Migrating to RemoveSizeLimitForEmbedCode (20130507222721)
87820
+  (0.0ms) begin transaction
87821
+  (0.2ms) CREATE TEMPORARY TABLE "altered_flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" varchar(255), "active" boolean DEFAULT 't') 
87822
+  (0.1ms) CREATE INDEX "temp_index_altered_flms_layers_on_block_id" ON "altered_flms_layers" ("block_id")
87823
+  (0.1ms) SELECT * FROM "flms_layers"
87824
+  (0.3ms) DROP TABLE "flms_layers"
87825
+  (0.1ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't') 
87826
+  (0.1ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
87827
+  (0.0ms) SELECT * FROM "altered_flms_layers"
87828
+  (0.1ms) DROP TABLE "altered_flms_layers"
87829
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130507222721')
87830
+  (0.8ms) commit transaction
87831
+ Migrating to AddImageDisplayModeToImageLayer (20130508002138)
87832
+  (0.0ms) begin transaction
87833
+  (0.3ms) ALTER TABLE "flms_layers" ADD "image_display_mode" varchar(255) DEFAULT 'cover'
87834
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130508002138')
87835
+  (0.8ms) commit transaction
87836
+ Migrating to AddAnimationAttributes (20130508174355)
87837
+  (0.0ms) begin transaction
87838
+  (0.3ms) ALTER TABLE "flms_layers" ADD "frame_rate" integer
87839
+  (0.1ms) ALTER TABLE "flms_layers" ADD "frame_count" integer
87840
+  (0.1ms) ALTER TABLE "flms_layers" ADD "image_width" integer
87841
+  (0.1ms) ALTER TABLE "flms_layers" ADD "image_height" integer
87842
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130508174355')
87843
+  (0.7ms) commit transaction
87844
+ Migrating to AddThumbnailToBlock (20130508234709)
87845
+  (0.0ms) begin transaction
87846
+  (0.2ms) ALTER TABLE "flms_blocks" ADD "thumbnail" varchar(255)
87847
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130508234709')
87848
+  (0.7ms) commit transaction
87849
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
87850
+ Connecting to database specified by database.yml
87851
+ Connecting to database specified by database.yml
87852
+  (0.1ms) select sqlite_version(*)
87853
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
87854
+ Connecting to database specified by database.yml
87855
+  (1.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87856
+  (0.3ms) select sqlite_version(*)
87857
+  (1.1ms) CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255)) 
87858
+  (0.8ms) CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87859
+  (0.8ms) CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
87860
+  (0.8ms) CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
87861
+  (0.9ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) 
87862
+  (1.1ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
87863
+  (0.8ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
87864
+  (0.6ms) CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87865
+  (0.6ms) CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
87866
+  (0.7ms) CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87867
+  (0.6ms) CREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")
87868
+  (0.6ms) CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
87869
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
87870
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
87871
+  (0.1ms) SELECT version FROM "schema_migrations"
87872
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20130508234709')
87873
+ Connecting to database specified by database.yml
87874
+  (1.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87875
+  (0.2ms) select sqlite_version(*)
87876
+  (2.6ms) CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255)) 
87877
+  (0.8ms) CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87878
+  (1.0ms) CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
87879
+  (0.8ms) CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
87880
+  (1.2ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) 
87881
+  (1.1ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
87882
+  (1.0ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
87883
+  (0.7ms) CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87884
+  (0.6ms) CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
87885
+  (0.9ms) CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87886
+  (0.8ms) CREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")
87887
+  (0.6ms) CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
87888
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
87889
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
87890
+  (0.1ms) SELECT version FROM "schema_migrations"
87891
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20130508234709')
87892
+ Connecting to database specified by database.yml
87893
+  (1.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87894
+  (0.3ms) select sqlite_version(*)
87895
+  (2.9ms) CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255)) 
87896
+  (0.8ms) CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87897
+  (0.7ms) CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
87898
+  (0.6ms) CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
87899
+  (0.8ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) 
87900
+  (0.7ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
87901
+  (0.6ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
87902
+  (0.7ms) CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87903
+  (0.6ms) CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
87904
+  (0.8ms) CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87905
+  (0.6ms) CREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")
87906
+  (0.7ms) CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
87907
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
87908
+  (0.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
87909
+  (0.1ms) SELECT version FROM "schema_migrations"
87910
+  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20130508234709')
87911
+ Connecting to database specified by database.yml
87912
+  (4.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87913
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
87914
+ Migrating to FlmsCreatePages (20130216032241)
87915
+ Migrating to CreateFlmsBlocks (20130302011705)
87916
+ Migrating to CreateFlmsBlocksPages (20130302015459)
87917
+ Migrating to CreateFlmsLayers (20130312220011)
87918
+ Migrating to AddImageToLayers (20130313002421)
87919
+ Migrating to CreateFlmsKeyframes (20130327183815)
87920
+ Migrating to RemoveOrderingFromLayers (20130404201756)
87921
+ Migrating to AddTextLayers (20130415185500)
87922
+ Migrating to StoreSizeInLayers (20130417210408)
87923
+ Migrating to StoreMarginInKeyframes (20130418191643)
87924
+ Migrating to LayersRemoveFromDom (20130418222016)
87925
+ Migrating to AddParagraphLayers (20130422193150)
87926
+ Migrating to LayersHaveZValue (20130426171058)
87927
+ Migrating to AddEmbedCodeToLayers (20130430224538)
87928
+ Migrating to MakeParagraphLayerBodyText (20130506204547)
87929
+ Migrating to AddActiveToFlmsLayers (20130506232533)
87930
+ Migrating to RemoveSizeLimitForEmbedCode (20130507222721)
87931
+ Migrating to AddImageDisplayModeToImageLayer (20130508002138)
87932
+ Migrating to AddAnimationAttributes (20130508174355)
87933
+ Migrating to AddThumbnailToBlock (20130508234709)
87934
+ Migrating to TitleForBlocks (20130514202128)
87935
+  (0.1ms) select sqlite_version(*)
87936
+  (0.0ms) begin transaction
87937
+  (0.5ms) ALTER TABLE "flms_blocks" ADD "title" varchar(255)
87938
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130514202128')
87939
+  (0.6ms) commit transaction
87940
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87941
+ Connecting to database specified by database.yml
87942
+  (4.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87943
+  (0.2ms) select sqlite_version(*)
87944
+  (1.0ms) CREATE TABLE "flms_blocks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "thumbnail" varchar(255), "title" varchar(255)) 
87945
+  (1.1ms) CREATE TABLE "flms_blocks_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "block_id" integer, "page_id" integer, "ordering" integer, "active" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87946
+  (0.7ms) CREATE INDEX "index_flms_blocks_pages_on_block_id" ON "flms_blocks_pages" ("block_id")
87947
+  (0.7ms) CREATE INDEX "index_flms_blocks_pages_on_page_id" ON "flms_blocks_pages" ("page_id")
87948
+  (1.2ms) CREATE TABLE "flms_keyframes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "layer_id" integer, "type" varchar(255), "scroll_start" integer, "scroll_duration" integer, "width" float, "height" float, "position_x" float, "position_y" float, "opacity" float, "scale" float, "blur" float, "margin_left" float DEFAULT 0.0, "margin_top" float DEFAULT 0.0) 
87949
+  (0.8ms) CREATE TABLE "flms_layers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "block_id" integer, "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "image" varchar(255), "text" varchar(255), "font_size" float, "color" varchar(255), "width" float, "height" float, "dom_remove" boolean DEFAULT 't', "header" varchar(255), "body" text, "z_index" varchar(255) DEFAULT '0' NOT NULL, "embed_code" text, "active" boolean DEFAULT 't', "image_display_mode" varchar(255) DEFAULT 'cover', "frame_rate" integer, "frame_count" integer, "image_width" integer, "image_height" integer)
87950
+  (0.9ms) CREATE INDEX "index_flms_layers_on_block_id" ON "flms_layers" ("block_id")
87951
+  (0.9ms) CREATE TABLE "flms_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "url" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87952
+  (0.9ms) CREATE INDEX "index_flms_pages_on_url" ON "flms_pages" ("url")
87953
+  (1.1ms) CREATE TABLE "flms_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255) DEFAULT '' NOT NULL, "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
87954
+  (0.7ms) CREATE UNIQUE INDEX "index_flms_users_on_email" ON "flms_users" ("email")
87955
+  (0.9ms) CREATE UNIQUE INDEX "index_flms_users_on_reset_password_token" ON "flms_users" ("reset_password_token")
87956
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
87957
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
87958
+  (0.1ms) SELECT version FROM "schema_migrations"
87959
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20130514202128')
87960
+ Connecting to database specified by database.yml
87961
+  (4.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87962
+ Migrating to FlmsDeviseCreateUsers (20130208224914)
87963
+ Migrating to FlmsCreatePages (20130216032241)
87964
+ Migrating to CreateFlmsBlocks (20130302011705)
87965
+ Migrating to CreateFlmsBlocksPages (20130302015459)
87966
+ Migrating to CreateFlmsLayers (20130312220011)
87967
+ Migrating to AddImageToLayers (20130313002421)
87968
+ Migrating to CreateFlmsKeyframes (20130327183815)
87969
+ Migrating to RemoveOrderingFromLayers (20130404201756)
87970
+ Migrating to AddTextLayers (20130415185500)
87971
+ Migrating to StoreSizeInLayers (20130417210408)
87972
+ Migrating to StoreMarginInKeyframes (20130418191643)
87973
+ Migrating to LayersRemoveFromDom (20130418222016)
87974
+ Migrating to AddParagraphLayers (20130422193150)
87975
+ Migrating to LayersHaveZValue (20130426171058)
87976
+ Migrating to AddEmbedCodeToLayers (20130430224538)
87977
+ Migrating to MakeParagraphLayerBodyText (20130506204547)
87978
+ Migrating to AddActiveToFlmsLayers (20130506232533)
87979
+ Migrating to RemoveSizeLimitForEmbedCode (20130507222721)
87980
+ Migrating to AddImageDisplayModeToImageLayer (20130508002138)
87981
+ Migrating to AddAnimationAttributes (20130508174355)
87982
+ Migrating to AddThumbnailToBlock (20130508234709)
87983
+ Migrating to TitleForBlocks (20130514202128)
87984
+  (0.1ms) select sqlite_version(*)
87985
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"