ecm_cms_core 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (280) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/app/admin/ecm/ecm_core/folders.rb +46 -0
  5. data/app/admin/ecm/ecm_core/templates.rb +57 -0
  6. data/app/controllers/ecm/cms_core/page_controller.rb +55 -0
  7. data/app/controllers/page_controller.rb +2 -0
  8. data/app/helpers/ecm/cms_core_helper.rb +48 -0
  9. data/app/models/ecm/cms_core/folder.rb +65 -0
  10. data/app/models/ecm/cms_core/template.rb +150 -0
  11. data/config/locales/ecm.cms_core.de.yml +22 -0
  12. data/config/locales/ecm.cms_core.en.yml +22 -0
  13. data/config/locales/ecm.cms_core.folder.de.yml +13 -0
  14. data/config/locales/ecm.cms_core.folder.en.yml +13 -0
  15. data/config/locales/ecm.cms_core.forms.de.yml +8 -0
  16. data/config/locales/ecm.cms_core.template.de.yml +21 -0
  17. data/config/locales/ecm.cms_core.template.en.yml +21 -0
  18. data/db/migrate/001_create_ecm_cms_core_folders.rb +16 -0
  19. data/db/migrate/002_create_ecm_cms_core_templates.rb +19 -0
  20. data/lib/ecm/cms_core/engine.rb +25 -0
  21. data/lib/ecm/cms_core/version.rb +5 -0
  22. data/lib/ecm_cms_core.rb +13 -0
  23. data/lib/generators/ecm/cms_core/active_admin/active_admin_generator.rb +16 -0
  24. data/lib/generators/ecm/cms_core/active_admin/templates/folders.rb +44 -0
  25. data/lib/generators/ecm/cms_core/active_admin/templates/templates.rb +52 -0
  26. data/lib/generators/ecm/cms_core/controller/controller_generator.rb +15 -0
  27. data/lib/generators/ecm/cms_core/controller/templates/page_controller.rb +3 -0
  28. data/lib/generators/ecm/cms_core/install/install_generator.rb +34 -0
  29. data/lib/generators/ecm/cms_core/locales/locales_generator.rb +17 -0
  30. data/lib/generators/ecm/cms_core/locales/templates/ecm.cms-core.de.yml +48 -0
  31. data/lib/generators/ecm/cms_core/locales/templates/ecm.cms-core.en.yml +48 -0
  32. data/lib/generators/ecm/cms_core/migrations/migrations_generator.rb +28 -0
  33. data/lib/generators/ecm/cms_core/migrations/templates/create_ecm_cms_core_folders.rb +20 -0
  34. data/lib/generators/ecm/cms_core/migrations/templates/create_ecm_cms_core_templates.rb +23 -0
  35. data/lib/generators/ecm/cms_core/models/models_generator.rb +16 -0
  36. data/lib/generators/ecm/cms_core/models/templates/folder.rb +58 -0
  37. data/lib/generators/ecm/cms_core/models/templates/template.rb +127 -0
  38. data/lib/generators/ecm/cms_core/routes/routes_generator.rb +18 -0
  39. data/lib/generators/ecm/cms_core/routes/templates/routes.rb +14 -0
  40. data/lib/tasks/ecm_cms_core_tasks.rake +4 -0
  41. data/test/dummy/README.rdoc +261 -0
  42. data/test/dummy/Rakefile +7 -0
  43. data/test/dummy/app/admin/dashboards.rb +44 -0
  44. data/test/dummy/app/assets/javascripts/active_admin.js +1 -0
  45. data/test/dummy/app/assets/javascripts/application.js +15 -0
  46. data/test/dummy/app/assets/stylesheets/active_admin.css.scss +6 -0
  47. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  48. data/test/dummy/app/controllers/application_controller.rb +3 -0
  49. data/test/dummy/app/controllers/frontend_controller.rb +5 -0
  50. data/test/dummy/app/helpers/application_helper.rb +2 -0
  51. data/test/dummy/app/models/admin_user.rb +11 -0
  52. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  53. data/test/dummy/config/application.rb +60 -0
  54. data/test/dummy/config/boot.rb +10 -0
  55. data/test/dummy/config/database.yml +25 -0
  56. data/test/dummy/config/environment.rb +5 -0
  57. data/test/dummy/config/environments/development.rb +37 -0
  58. data/test/dummy/config/environments/production.rb +67 -0
  59. data/test/dummy/config/environments/test.rb +37 -0
  60. data/test/dummy/config/initializers/active_admin.rb +133 -0
  61. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  62. data/test/dummy/config/initializers/devise.rb +232 -0
  63. data/test/dummy/config/initializers/inflections.rb +15 -0
  64. data/test/dummy/config/initializers/mime_types.rb +5 -0
  65. data/test/dummy/config/initializers/secret_token.rb +7 -0
  66. data/test/dummy/config/initializers/session_store.rb +8 -0
  67. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  68. data/test/dummy/config/locales/admin_user.de.yml +16 -0
  69. data/test/dummy/config/locales/devise.en.yml +58 -0
  70. data/test/dummy/config/locales/ecm.admin.de.yml +5 -0
  71. data/test/dummy/config/locales/en.yml +5 -0
  72. data/test/dummy/config/routes.rb +75 -0
  73. data/test/dummy/config.ru +4 -0
  74. data/test/dummy/db/development.sqlite3 +0 -0
  75. data/test/dummy/db/migrate/20120622191421_devise_create_admin_users.rb +49 -0
  76. data/test/dummy/db/migrate/20120622211430_create_admin_notes.rb +17 -0
  77. data/test/dummy/db/migrate/20120622211431_move_admin_notes_to_comments.rb +25 -0
  78. data/test/dummy/db/migrate/20120622211432_create_ecm_cms_core_folders.ecm_cms_core_engine.rb +17 -0
  79. data/test/dummy/db/migrate/20120622211433_create_ecm_cms_core_templates.ecm_cms_core_engine.rb +20 -0
  80. data/test/dummy/db/schema.rb +78 -0
  81. data/test/dummy/lib/i18n_controller.rb +13 -0
  82. data/test/dummy/log/development.log +3914 -0
  83. data/test/dummy/public/404.html +26 -0
  84. data/test/dummy/public/422.html +26 -0
  85. data/test/dummy/public/500.html +25 -0
  86. data/test/dummy/public/favicon.ico +0 -0
  87. data/test/dummy/script/rails +6 -0
  88. data/test/dummy/test/fixtures/admin_users.yml +11 -0
  89. data/test/dummy/test/unit/admin_user_test.rb +7 -0
  90. data/test/dummy/tmp/cache/assets/C18/0B0/sprockets%2F35b3b1439378240b7f536115a153938b +0 -0
  91. data/test/dummy/tmp/cache/assets/C71/090/sprockets%2F931c90486b551252ac56132ab76b3d24 +0 -0
  92. data/test/dummy/tmp/cache/assets/C77/210/sprockets%2Ff90b51d7105d6180b8164f81f4018e40 +0 -0
  93. data/test/dummy/tmp/cache/assets/C7A/1D0/sprockets%2F0189934c63685d1fb1126608daf1425a +0 -0
  94. data/test/dummy/tmp/cache/assets/C86/B30/sprockets%2F85e65103906606f93dcb5680baf75803 +0 -0
  95. data/test/dummy/tmp/cache/assets/C88/8B0/sprockets%2F6680b99d2ee676651202ae63a78c4632 +0 -0
  96. data/test/dummy/tmp/cache/assets/CAD/7E0/sprockets%2F935781681cef3fc00956d32115cdd521 +0 -0
  97. data/test/dummy/tmp/cache/assets/CB0/2A0/sprockets%2F3481651900e045da49fced159c2c9814 +0 -0
  98. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  99. data/test/dummy/tmp/cache/assets/CDB/040/sprockets%2Fc732474e67003a4eb840eb44c5ca9385 +0 -0
  100. data/test/dummy/tmp/cache/assets/CDD/E00/sprockets%2Fb2e579afe803008df59253c7710ad551 +0 -0
  101. data/test/dummy/tmp/cache/assets/CEA/0A0/sprockets%2Ff1bd29507924f5fa43fb777b0d681295 +0 -0
  102. data/test/dummy/tmp/cache/assets/CF3/0B0/sprockets%2F0052f1e917b02a5ad4b2ca961221a8f4 +0 -0
  103. data/test/dummy/tmp/cache/assets/CFD/150/sprockets%2Fdb3d5b419b4002d3340c24b493d8bb95 +0 -0
  104. data/test/dummy/tmp/cache/assets/D08/3C0/sprockets%2Fbe501c50446a7f55d74e3d4a7920bb56 +0 -0
  105. data/test/dummy/tmp/cache/assets/D0A/5C0/sprockets%2Fb89637e3b60cf2ddbb055339f23a8421 +0 -0
  106. data/test/dummy/tmp/cache/assets/D0E/A90/sprockets%2Fc50f8f2a758b0942172763af9a33b0ef +0 -0
  107. data/test/dummy/tmp/cache/assets/D1B/200/sprockets%2Fee63896e56c8fa545d2a92d3145a760d +0 -0
  108. data/test/dummy/tmp/cache/assets/D2E/DE0/sprockets%2F7668bdc951df66f9d93210ed7689bb57 +0 -0
  109. data/test/dummy/tmp/cache/assets/D30/D00/sprockets%2F506e8247250c45c101b1f6cefe7b22fb +0 -0
  110. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  111. data/test/dummy/tmp/cache/assets/D38/540/sprockets%2F86e1ad844bc9df4491a2a52b870421db +0 -0
  112. data/test/dummy/tmp/cache/assets/D3A/240/sprockets%2Fbd5ec81e43457436f38d6f2e21eb311b +0 -0
  113. data/test/dummy/tmp/cache/assets/D3D/B50/sprockets%2F60f3b6e7ec4196f82f701a039db5a55a +0 -0
  114. data/test/dummy/tmp/cache/assets/D46/720/sprockets%2Fef62800e7785cd1f7f7d7edb3960000e +0 -0
  115. data/test/dummy/tmp/cache/assets/D48/640/sprockets%2F9f4f18d910b678b1d0777e04cdaf6f24 +0 -0
  116. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  117. data/test/dummy/tmp/cache/assets/D59/D70/sprockets%2Fed9f0de1b65ae8d7ef89087c83728461 +0 -0
  118. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  119. data/test/dummy/tmp/cache/assets/D5B/860/sprockets%2F79ae2a01f99104da404ed31a8fea230d +0 -0
  120. data/test/dummy/tmp/cache/assets/D5D/6B0/sprockets%2F690ac8bc288fe688ce9d76121687c8bf +0 -0
  121. data/test/dummy/tmp/cache/assets/D5F/AE0/sprockets%2F6057dd9be3e736fad88777c09689bfe1 +0 -0
  122. data/test/dummy/tmp/cache/assets/D6B/E60/sprockets%2Ff93ae30e51558cab50c5867ffa4a714a +0 -0
  123. data/test/dummy/tmp/cache/assets/D7F/600/sprockets%2Fafd454e9dc29d3ce8f5fc810465219f6 +0 -0
  124. data/test/dummy/tmp/cache/assets/D84/500/sprockets%2Fe598c3010e9ff8a9fc930e84eb2b8f38 +0 -0
  125. data/test/dummy/tmp/cache/assets/D93/4C0/sprockets%2F857ecd2092cee11f740b3cf2e373ad2a +0 -0
  126. data/test/dummy/tmp/cache/assets/D96/0A0/sprockets%2F115d14ce48fada6837943c0e5b0a8eda +0 -0
  127. data/test/dummy/tmp/cache/assets/D97/060/sprockets%2F16cc3664c109be5b82c1521e4fe1fdfe +0 -0
  128. data/test/dummy/tmp/cache/assets/D9A/7F0/sprockets%2Fa9dc360a17e439e63ada3f389e053cda +0 -0
  129. data/test/dummy/tmp/cache/assets/D9C/4F0/sprockets%2Ffd36b6361b4bd8d3425f9aa35ff53dc1 +0 -0
  130. data/test/dummy/tmp/cache/assets/DAB/5A0/sprockets%2F2da87e72599a04cc89c8beec9218dd1a +0 -0
  131. data/test/dummy/tmp/cache/assets/DAC/1E0/sprockets%2Faf6be87981984ebc9b4f70a346dbea42 +0 -0
  132. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  133. data/test/dummy/tmp/cache/assets/DDE/420/sprockets%2Ffb8b186d5bf0307f86f65fc787d2adeb +0 -0
  134. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  135. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_all.css.scssc +0 -0
  136. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_buttons.css.scssc +0 -0
  137. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_gradients.css.scssc +0 -0
  138. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_icons.css.scssc +0 -0
  139. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_reset.css.scssc +0 -0
  140. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_rounded.css.scssc +0 -0
  141. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_sections.css.scssc +0 -0
  142. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_shadows.css.scssc +0 -0
  143. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_typography.scssc +0 -0
  144. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_utilities.scssc +0 -0
  145. data/test/dummy/tmp/cache/sass/0149e15b7f61f5a238cd1c4ab956828760d53144/_variables.css.scssc +0 -0
  146. data/test/dummy/tmp/cache/sass/025ab9f29cb4b11e07ac4b96733b80e57356376f/_dashboard.scssc +0 -0
  147. data/test/dummy/tmp/cache/sass/025ab9f29cb4b11e07ac4b96733b80e57356376f/_logged_out.scssc +0 -0
  148. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_all.css.scssc +0 -0
  149. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_buttons.css.scssc +0 -0
  150. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_gradients.css.scssc +0 -0
  151. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_icons.css.scssc +0 -0
  152. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_reset.css.scssc +0 -0
  153. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_rounded.css.scssc +0 -0
  154. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_sections.css.scssc +0 -0
  155. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_shadows.css.scssc +0 -0
  156. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_typography.scssc +0 -0
  157. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_utilities.scssc +0 -0
  158. data/test/dummy/tmp/cache/sass/0a3ebe071aa41297ff474bfea40b9ed55813ab31/_variables.css.scssc +0 -0
  159. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_batch_actions.css.scssc +0 -0
  160. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_blank_slates.scssc +0 -0
  161. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_breadcrumbs.scssc +0 -0
  162. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_buttons.scssc +0 -0
  163. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_columns.scssc +0 -0
  164. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_comments.css.scssc +0 -0
  165. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_date_picker.css.scssc +0 -0
  166. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_flash_messages.css.scssc +0 -0
  167. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_grid.scssc +0 -0
  168. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_links.scssc +0 -0
  169. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_pagination.scssc +0 -0
  170. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_panels.scssc +0 -0
  171. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_popovers.css.scssc +0 -0
  172. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_scopes.scssc +0 -0
  173. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_status_tags.scssc +0 -0
  174. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_table_tools.css.scssc +0 -0
  175. data/test/dummy/tmp/cache/sass/0db19bf6a4f34e09dc67d80432c747832dda1113/_tables.css.scssc +0 -0
  176. data/test/dummy/tmp/cache/sass/0f4e444537b0131df87c384df649d22afd80ac5a/_dashboard.scssc +0 -0
  177. data/test/dummy/tmp/cache/sass/0f4e444537b0131df87c384df649d22afd80ac5a/_logged_out.scssc +0 -0
  178. data/test/dummy/tmp/cache/sass/1c415517c309043503f3cb2f5eca65b0c9760f76/active_admin.css.scssc +0 -0
  179. data/test/dummy/tmp/cache/sass/34122bbb9d39040bce83b198dfa3e2499be58cd0/_bourbon.scssc +0 -0
  180. data/test/dummy/tmp/cache/sass/34df7e5f74ec615651dab1b9694e84563b724cb5/_base.css.scssc +0 -0
  181. data/test/dummy/tmp/cache/sass/34df7e5f74ec615651dab1b9694e84563b724cb5/_forms.css.scssc +0 -0
  182. data/test/dummy/tmp/cache/sass/34df7e5f74ec615651dab1b9694e84563b724cb5/_header.css.scssc +0 -0
  183. data/test/dummy/tmp/cache/sass/34df7e5f74ec615651dab1b9694e84563b724cb5/_mixins.css.scssc +0 -0
  184. data/test/dummy/tmp/cache/sass/34df7e5f74ec615651dab1b9694e84563b724cb5/_typography.css.scssc +0 -0
  185. data/test/dummy/tmp/cache/sass/4330ed9682443ec12b5cc9718d9ca0f970e72645/_base.css.scssc +0 -0
  186. data/test/dummy/tmp/cache/sass/4330ed9682443ec12b5cc9718d9ca0f970e72645/_forms.css.scssc +0 -0
  187. data/test/dummy/tmp/cache/sass/4330ed9682443ec12b5cc9718d9ca0f970e72645/_header.css.scssc +0 -0
  188. data/test/dummy/tmp/cache/sass/4330ed9682443ec12b5cc9718d9ca0f970e72645/_mixins.css.scssc +0 -0
  189. data/test/dummy/tmp/cache/sass/4330ed9682443ec12b5cc9718d9ca0f970e72645/_typography.css.scssc +0 -0
  190. data/test/dummy/tmp/cache/sass/4330ed9682443ec12b5cc9718d9ca0f970e72645/print.css.scssc +0 -0
  191. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_button.scssc +0 -0
  192. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_clearfix.scssc +0 -0
  193. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_font-face.scssc +0 -0
  194. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_font-family.scssc +0 -0
  195. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_hide-text.scssc +0 -0
  196. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_html5-input-types.scssc +0 -0
  197. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_position.scssc +0 -0
  198. data/test/dummy/tmp/cache/sass/521b993c9acd187272527f2007471941399e49e7/_timing-functions.scssc +0 -0
  199. data/test/dummy/tmp/cache/sass/5a8f06dfcf99c0436939674b51a4e9800b2066e8/_footer.scssc +0 -0
  200. data/test/dummy/tmp/cache/sass/5a8f06dfcf99c0436939674b51a4e9800b2066e8/_main_structure.scssc +0 -0
  201. data/test/dummy/tmp/cache/sass/5a8f06dfcf99c0436939674b51a4e9800b2066e8/_title_bar.scssc +0 -0
  202. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_animation.scssc +0 -0
  203. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_appearance.scssc +0 -0
  204. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_background-image.scssc +0 -0
  205. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_background-size.scssc +0 -0
  206. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_border-image.scssc +0 -0
  207. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_border-radius.scssc +0 -0
  208. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_box-shadow.scssc +0 -0
  209. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_box-sizing.scssc +0 -0
  210. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_columns.scssc +0 -0
  211. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_flex-box.scssc +0 -0
  212. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_inline-block.scssc +0 -0
  213. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_linear-gradient.scssc +0 -0
  214. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_prefixer.scssc +0 -0
  215. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_radial-gradient.scssc +0 -0
  216. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_transform.scssc +0 -0
  217. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_transition.scssc +0 -0
  218. data/test/dummy/tmp/cache/sass/686dc179041c7d3a972dc3ec33726e7ae1e4ab05/_user-select.scssc +0 -0
  219. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_blank_slates.scssc +0 -0
  220. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_breadcrumbs.scssc +0 -0
  221. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_buttons.scssc +0 -0
  222. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_columns.scssc +0 -0
  223. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_comments.css.scssc +0 -0
  224. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_date_picker.css.scssc +0 -0
  225. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_flash_messages.css.scssc +0 -0
  226. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_grid.scssc +0 -0
  227. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_links.scssc +0 -0
  228. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_pagination.scssc +0 -0
  229. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_panels.scssc +0 -0
  230. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_scopes.scssc +0 -0
  231. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_status_tags.scssc +0 -0
  232. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_table_tools.css.scssc +0 -0
  233. data/test/dummy/tmp/cache/sass/799f94dffbb29370035dd8035c06b45b72790fc5/_tables.css.scssc +0 -0
  234. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_deprecated-webkit-gradient.scssc +0 -0
  235. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_flex-grid.scssc +0 -0
  236. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_grid-width.scssc +0 -0
  237. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_linear-gradient.scssc +0 -0
  238. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_modular-scale.scssc +0 -0
  239. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_radial-gradient.scssc +0 -0
  240. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_render-gradients.scssc +0 -0
  241. data/test/dummy/tmp/cache/sass/972efe55173f6628b13c5cb56b5b0f9b84985155/_tint-shade.scssc +0 -0
  242. data/test/dummy/tmp/cache/sass/a6e19f0ba7c994b5cd1f8fcd2ef7cb5a62017be7/_bourbon.scssc +0 -0
  243. data/test/dummy/tmp/cache/sass/a86a1245039dd9da2b0a1422db19889ca592daee/_footer.scssc +0 -0
  244. data/test/dummy/tmp/cache/sass/a86a1245039dd9da2b0a1422db19889ca592daee/_main_structure.scssc +0 -0
  245. data/test/dummy/tmp/cache/sass/a86a1245039dd9da2b0a1422db19889ca592daee/_title_bar.scssc +0 -0
  246. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_animation.scssc +0 -0
  247. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_appearance.scssc +0 -0
  248. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_background-image.scssc +0 -0
  249. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_background-size.scssc +0 -0
  250. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_border-image.scssc +0 -0
  251. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_border-radius.scssc +0 -0
  252. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_box-shadow.scssc +0 -0
  253. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_box-sizing.scssc +0 -0
  254. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_columns.scssc +0 -0
  255. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_flex-box.scssc +0 -0
  256. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_inline-block.scssc +0 -0
  257. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_linear-gradient.scssc +0 -0
  258. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_radial-gradient.scssc +0 -0
  259. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_transform.scssc +0 -0
  260. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_transition.scssc +0 -0
  261. data/test/dummy/tmp/cache/sass/c572ddc25b7a57596b711c26460dab735895a907/_user-select.scssc +0 -0
  262. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_deprecated-webkit-gradient.scssc +0 -0
  263. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_flex-grid.scssc +0 -0
  264. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_grid-width.scssc +0 -0
  265. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_linear-gradient.scssc +0 -0
  266. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_modular-scale.scssc +0 -0
  267. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_radial-gradient.scssc +0 -0
  268. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_render-gradients.scssc +0 -0
  269. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_tint-shade.scssc +0 -0
  270. data/test/dummy/tmp/cache/sass/eab4ec523f2b3fe0ce62881e5ddde80ea26c42ed/_transition-property-name.scssc +0 -0
  271. data/test/dummy/tmp/cache/sass/ecba858b902d0403d7e616a9f9672a7729dd00f2/_button.scssc +0 -0
  272. data/test/dummy/tmp/cache/sass/ecba858b902d0403d7e616a9f9672a7729dd00f2/_clearfix.scssc +0 -0
  273. data/test/dummy/tmp/cache/sass/ecba858b902d0403d7e616a9f9672a7729dd00f2/_font-family.scssc +0 -0
  274. data/test/dummy/tmp/cache/sass/ecba858b902d0403d7e616a9f9672a7729dd00f2/_html5-input-types.scssc +0 -0
  275. data/test/dummy/tmp/cache/sass/ecba858b902d0403d7e616a9f9672a7729dd00f2/_position.scssc +0 -0
  276. data/test/dummy/tmp/cache/sass/ecba858b902d0403d7e616a9f9672a7729dd00f2/_timing-functions.scssc +0 -0
  277. data/test/dummy/tmp/pids/server.pid +1 -0
  278. data/test/ecm_cms_core_test.rb +7 -0
  279. data/test/test_helper.rb +15 -0
  280. metadata +669 -0
@@ -0,0 +1,3914 @@
1
+
2
+
3
+ Started GET "/de" for 192.168.0.37 at 2012-04-04 14:23:43 +0200
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/de"):
6
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
8
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
9
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
10
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
12
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
13
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
14
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
15
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
16
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
17
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
18
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
19
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
20
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
21
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
22
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
23
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
24
+
25
+
26
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.6ms)
27
+
28
+
29
+ Started GET "/de" for 192.168.0.37 at 2012-04-04 14:25:23 +0200
30
+
31
+ ActionController::RoutingError (uninitialized constant PageController):
32
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
33
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
34
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
35
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
36
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
37
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
38
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
39
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
40
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
41
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
42
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
43
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
44
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
45
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
46
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
47
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
48
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
49
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
50
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
51
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
52
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
53
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
54
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__764387037__call__609163984__callbacks'
55
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
56
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
57
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
58
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
59
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
60
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
61
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
62
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
63
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
64
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
65
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
66
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
67
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
68
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
69
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
70
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
71
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
72
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
73
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
74
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
75
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
76
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
77
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
78
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
79
+
80
+
81
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
82
+
83
+
84
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:25:46 +0200
85
+
86
+ ActionController::RoutingError (uninitialized constant PageController):
87
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
88
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
89
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
90
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
91
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
92
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
93
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
94
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
95
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
96
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
97
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
98
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
99
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
100
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
101
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
102
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
103
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
104
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
105
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
106
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
107
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
108
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
109
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__764387037__call__609163984__callbacks'
110
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
111
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
112
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
113
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
114
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
115
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
116
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
117
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
118
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
119
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
120
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
121
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
122
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
123
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
124
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
125
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
126
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
127
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
128
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
129
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
130
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
131
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
132
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
133
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
134
+
135
+
136
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
137
+
138
+
139
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:26:35 +0200
140
+
141
+ ActionController::RoutingError (uninitialized constant PageController):
142
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
143
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
144
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
145
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
146
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
147
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
148
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
149
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
150
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
151
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
152
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
153
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
154
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
155
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
156
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
157
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
158
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
159
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
160
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
161
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
162
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
163
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
164
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__764387037__call__609163984__callbacks'
165
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
166
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
167
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
168
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
169
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
170
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
171
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
172
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
173
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
174
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
175
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
176
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
177
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
178
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
179
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
180
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
181
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
182
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
183
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
184
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
185
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
186
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
187
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
188
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
189
+
190
+
191
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
192
+
193
+
194
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:28:22 +0200
195
+
196
+ ActionController::RoutingError (uninitialized constant PageController):
197
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
198
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
199
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
200
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
201
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
202
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
203
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
204
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
205
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
206
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
207
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
208
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
209
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
210
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
211
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
212
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
213
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
214
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
215
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
216
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
217
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
218
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
219
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__190418011__call__991138086__callbacks'
220
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
221
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
222
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
223
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
224
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
225
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
226
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
227
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
228
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
229
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
230
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
231
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
232
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
233
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
234
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
235
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
236
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
237
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
238
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
239
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
240
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
241
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
242
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
243
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
244
+
245
+
246
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.4ms)
247
+
248
+
249
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:28:25 +0200
250
+
251
+ ActionController::RoutingError (uninitialized constant PageController):
252
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
253
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
254
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
255
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
256
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
257
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
258
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
259
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
260
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
261
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
262
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
263
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
264
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
265
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
266
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
267
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
268
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
269
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
270
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
271
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
272
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
273
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
274
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__190418011__call__991138086__callbacks'
275
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
276
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
277
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
278
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
279
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
280
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
281
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
282
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
283
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
284
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
285
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
286
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
287
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
288
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
289
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
290
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
291
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
292
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
293
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
294
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
295
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
296
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
297
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
298
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
299
+
300
+
301
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
302
+
303
+
304
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:29:01 +0200
305
+
306
+ ActionController::RoutingError (uninitialized constant Ecm):
307
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
308
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
309
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
310
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
311
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
312
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
313
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
314
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
315
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
316
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
317
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
318
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
319
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
320
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
321
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
322
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
323
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
324
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
325
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
326
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
327
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
328
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
329
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__190418011__call__991138086__callbacks'
330
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
331
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
332
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
333
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
334
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
335
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
336
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
337
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
338
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
339
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
340
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
341
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
342
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
343
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
344
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
345
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
346
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
347
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
348
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
349
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
350
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
351
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
352
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
353
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
354
+
355
+
356
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
357
+
358
+
359
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:29:34 +0200
360
+
361
+ ActionController::RoutingError (uninitialized constant Ecm):
362
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
363
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
364
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
365
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
366
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
367
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
368
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
369
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
370
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
371
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
372
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
373
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
374
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
375
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
376
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
377
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
378
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
379
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
380
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
381
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
382
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
383
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
384
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__190418011__call__991138086__callbacks'
385
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
386
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
387
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
388
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
389
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
390
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
391
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
392
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
393
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
394
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
395
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
396
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
397
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
398
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
399
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
400
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
401
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
402
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
403
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
404
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
405
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
406
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
407
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
408
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
409
+
410
+
411
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
412
+
413
+
414
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:29:44 +0200
415
+
416
+ ActionController::RoutingError (uninitialized constant Ecm):
417
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
418
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
419
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
420
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
421
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
422
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
423
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
424
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
425
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
426
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
427
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
428
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
429
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
430
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
431
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
432
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
433
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
434
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
435
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
436
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
437
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
438
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
439
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__190418011__call__991138086__callbacks'
440
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
441
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
442
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
443
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
444
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
445
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
446
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
447
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
448
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
449
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
450
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
451
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
452
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
453
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
454
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
455
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
456
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
457
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
458
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
459
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
460
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
461
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
462
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
463
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
464
+
465
+
466
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
467
+
468
+
469
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:30:37 +0200
470
+
471
+ ActionController::RoutingError (uninitialized constant Ecm):
472
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
473
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
474
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
475
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
476
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
477
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
478
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
479
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
480
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
481
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
482
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
483
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
484
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
485
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
486
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
487
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
488
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
489
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
490
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
491
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
492
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
493
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
494
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__190418011__call__991138086__callbacks'
495
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
496
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
497
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
498
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
499
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
500
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
501
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
502
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
503
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
504
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
505
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
506
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
507
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
508
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
509
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
510
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
511
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
512
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
513
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
514
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
515
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
516
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
517
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
518
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
519
+
520
+
521
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
522
+
523
+
524
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:30:50 +0200
525
+
526
+ ActionController::RoutingError (uninitialized constant Ecm):
527
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
528
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
529
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
530
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
531
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
532
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
533
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
534
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
535
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
536
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
537
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
538
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
539
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
540
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
541
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
542
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
543
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
544
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
545
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
546
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
547
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
548
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
549
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__727869912__call__345951511__callbacks'
550
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
551
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
552
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
553
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
554
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
555
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
556
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
557
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
558
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
559
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
560
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
561
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
562
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
563
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
564
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
565
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
566
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
567
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
568
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
569
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
570
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
571
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
572
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
573
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
574
+
575
+
576
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.3ms)
577
+
578
+
579
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:30:51 +0200
580
+
581
+ ActionController::RoutingError (uninitialized constant Ecm):
582
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
583
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
584
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
585
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
586
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
587
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
588
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
589
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
590
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
591
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
592
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
593
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
594
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
595
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
596
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
597
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
598
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
599
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
600
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
601
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
602
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
603
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
604
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__727869912__call__345951511__callbacks'
605
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
606
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
607
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
608
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
609
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
610
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
611
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
612
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
613
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
614
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
615
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
616
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
617
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
618
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
619
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
620
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
621
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
622
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
623
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
624
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
625
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
626
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
627
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
628
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
629
+
630
+
631
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
632
+
633
+
634
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:30:51 +0200
635
+
636
+ ActionController::RoutingError (uninitialized constant Ecm):
637
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
638
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
639
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
640
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
641
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
642
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
643
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
644
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
645
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
646
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
647
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
648
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
649
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
650
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
651
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
652
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
653
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
654
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
655
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
656
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
657
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
658
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
659
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__727869912__call__345951511__callbacks'
660
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
661
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
662
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
663
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
664
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
665
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
666
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
667
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
668
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
669
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
670
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
671
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
672
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
673
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
674
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
675
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
676
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
677
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
678
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
679
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
680
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
681
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
682
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
683
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
684
+
685
+
686
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
687
+
688
+
689
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:30:53 +0200
690
+
691
+ ActionController::RoutingError (uninitialized constant Ecm):
692
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
693
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
694
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
695
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
696
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
697
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
698
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
699
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
700
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
701
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
702
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
703
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
704
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
705
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
706
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
707
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
708
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
709
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
710
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
711
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
712
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
713
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
714
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__727869912__call__345951511__callbacks'
715
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
716
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
717
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
718
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
719
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
720
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
721
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
722
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
723
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
724
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
725
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
726
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
727
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
728
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
729
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
730
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
731
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
732
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
733
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
734
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
735
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
736
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
737
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
738
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
739
+
740
+
741
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
742
+
743
+
744
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:39:02 +0200
745
+
746
+ ActionController::RoutingError (uninitialized constant Ecm::CmsCore::PageController):
747
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
748
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
749
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
750
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
751
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
752
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
753
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
754
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
755
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
756
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
757
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
758
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
759
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
760
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
761
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
762
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
763
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
764
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
765
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
766
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
767
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
768
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
769
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__734629320__call__87012856__callbacks'
770
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
771
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
772
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
773
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
774
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
775
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
776
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
777
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
778
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
779
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
780
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
781
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
782
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
783
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
784
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
785
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
786
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
787
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
788
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
789
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
790
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
791
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
792
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
793
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
794
+
795
+
796
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.7ms)
797
+
798
+
799
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:51:19 +0200
800
+ Processing by Ecm::CmsCore::PageController#respond as HTML
801
+ Parameters: {"page"=>"home/index"}
802
+ pathname: enhome/
803
+ basename: index
804
+ Completed 500 Internal Server Error in 131ms
805
+
806
+ ActiveRecord::StatementInvalid (Could not find table 'templates'):
807
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:465:in `table_structure'
808
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
809
+ activerecord (3.2.3) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
810
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `yield'
811
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `default'
812
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `columns'
813
+ activerecord (3.2.3) lib/active_record/model_schema.rb:237:in `columns_hash'
814
+ activerecord (3.2.3) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
815
+ activerecord (3.2.3) lib/active_record/relation.rb:170:in `exec_queries'
816
+ activerecord (3.2.3) lib/active_record/relation.rb:160:in `block in to_a'
817
+ activerecord (3.2.3) lib/active_record/explain.rb:33:in `logging_query_plan'
818
+ activerecord (3.2.3) lib/active_record/relation.rb:159:in `to_a'
819
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:377:in `find_first'
820
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:122:in `first'
821
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:19:in `respond'
822
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
823
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
824
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
825
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
826
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__458758436__process_action__271118401__callbacks'
827
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
828
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
829
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
830
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
831
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
832
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
833
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
834
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
835
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
836
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
837
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
838
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
839
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
840
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
841
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
842
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
843
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
844
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
845
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
846
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
847
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
848
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
849
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
850
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
851
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
852
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
853
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
854
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
855
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
856
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
857
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
858
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
859
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
860
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
861
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
862
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
863
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__716390245__call__957245574__callbacks'
864
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
865
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
866
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
867
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
868
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
869
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
870
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
871
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
872
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
873
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
874
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
875
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
876
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
877
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
878
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
879
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
880
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
881
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
882
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
883
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
884
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
885
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
886
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
887
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
888
+
889
+
890
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
891
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
892
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.5ms)
893
+  (2.5ms) select sqlite_version(*)
894
+  (19.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
895
+  (0.5ms) PRAGMA index_list("schema_migrations")
896
+  (14.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
897
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
898
+ Migrating to CreateFolders (20120404125529)
899
+  (0.0ms) begin transaction
900
+  (0.6ms) CREATE TABLE "ecm_cms_core_folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "basename" varchar(255), "pathname" varchar(255), "lft" integer, "rgt" integer, "depth" integer, "children_count" integer DEFAULT 0, "templates_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
901
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404125529')
902
+  (38.1ms) commit transaction
903
+ Migrating to CreateTemplates (20120404125530)
904
+  (0.1ms) begin transaction
905
+  (5.7ms) CREATE TABLE "ecm_cms_core_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "pathname" varchar(255), "basename" varchar(255), "title" varchar(255), "meta_description" text, "body" text, "layout" varchar(255), "locale" varchar(255), "format" varchar(255), "handler" varchar(255), "partial" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
906
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404125530')
907
+  (15.9ms) commit transaction
908
+  (0.3ms) select sqlite_version(*)
909
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
910
+  (0.1ms) PRAGMA index_list("ecm_cms_core_folders")
911
+  (0.0ms) PRAGMA index_list("ecm_cms_core_templates")
912
+
913
+
914
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:56:55 +0200
915
+ Processing by Ecm::CmsCore::PageController#respond as HTML
916
+ Parameters: {"page"=>"home/index"}
917
+ pathname: enhome/
918
+ basename: index
919
+ Completed 500 Internal Server Error in 145ms
920
+
921
+ ActiveRecord::StatementInvalid (Could not find table 'templates'):
922
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:465:in `table_structure'
923
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
924
+ activerecord (3.2.3) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
925
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `yield'
926
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `default'
927
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `columns'
928
+ activerecord (3.2.3) lib/active_record/model_schema.rb:237:in `columns_hash'
929
+ activerecord (3.2.3) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
930
+ activerecord (3.2.3) lib/active_record/relation.rb:170:in `exec_queries'
931
+ activerecord (3.2.3) lib/active_record/relation.rb:160:in `block in to_a'
932
+ activerecord (3.2.3) lib/active_record/explain.rb:33:in `logging_query_plan'
933
+ activerecord (3.2.3) lib/active_record/relation.rb:159:in `to_a'
934
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:377:in `find_first'
935
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:122:in `first'
936
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:19:in `respond'
937
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
938
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
939
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
940
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
941
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__358778856__process_action__506102614__callbacks'
942
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
943
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
944
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
945
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
946
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
947
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
948
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
949
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
950
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
951
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
952
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
953
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
954
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
955
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
956
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
957
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
958
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
959
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
960
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
961
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
962
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
963
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
964
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
965
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
966
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
967
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
968
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
969
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
970
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
971
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
972
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
973
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
974
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
975
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
976
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
977
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
978
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__485168480__call__63444434__callbacks'
979
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
980
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
981
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
982
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
983
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
984
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
985
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
986
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
987
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
988
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
989
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
990
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
991
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
992
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
993
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
994
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
995
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
996
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
997
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
998
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
999
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1000
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1001
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1002
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1003
+
1004
+
1005
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1006
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.6ms)
1007
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.5ms)
1008
+
1009
+
1010
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:56:56 +0200
1011
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1012
+ Parameters: {"page"=>"home/index"}
1013
+ pathname: enhome/
1014
+ basename: index
1015
+ Completed 500 Internal Server Error in 1ms
1016
+
1017
+ ActiveRecord::StatementInvalid (Could not find table 'templates'):
1018
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:465:in `table_structure'
1019
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
1020
+ activerecord (3.2.3) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
1021
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `yield'
1022
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `default'
1023
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `columns'
1024
+ activerecord (3.2.3) lib/active_record/model_schema.rb:237:in `columns_hash'
1025
+ activerecord (3.2.3) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
1026
+ activerecord (3.2.3) lib/active_record/relation.rb:170:in `exec_queries'
1027
+ activerecord (3.2.3) lib/active_record/relation.rb:160:in `block in to_a'
1028
+ activerecord (3.2.3) lib/active_record/explain.rb:33:in `logging_query_plan'
1029
+ activerecord (3.2.3) lib/active_record/relation.rb:159:in `to_a'
1030
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:377:in `find_first'
1031
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:122:in `first'
1032
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:19:in `respond'
1033
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1034
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1035
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1036
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1037
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__358778856__process_action__506102614__callbacks'
1038
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1039
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1040
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1041
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1042
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1043
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1044
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1045
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1046
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1047
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1048
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1049
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1050
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1051
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1052
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1053
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1054
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1055
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1056
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1057
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1058
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1059
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1060
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1061
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1062
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1063
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1064
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1065
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1066
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1067
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1068
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1069
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1070
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1071
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1072
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1073
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1074
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__485168480__call__63444434__callbacks'
1075
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1076
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1077
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1078
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1079
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1080
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1081
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1082
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1083
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1084
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1085
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1086
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1087
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1088
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1089
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1090
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1091
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1092
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1093
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1094
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1095
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1096
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1097
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1098
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1099
+
1100
+
1101
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.8ms)
1102
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
1103
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.6ms)
1104
+
1105
+
1106
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:56:57 +0200
1107
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1108
+ Parameters: {"page"=>"home/index"}
1109
+ pathname: enhome/
1110
+ basename: index
1111
+ Completed 500 Internal Server Error in 1ms
1112
+
1113
+ ActiveRecord::StatementInvalid (Could not find table 'templates'):
1114
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:465:in `table_structure'
1115
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
1116
+ activerecord (3.2.3) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
1117
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `yield'
1118
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `default'
1119
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `columns'
1120
+ activerecord (3.2.3) lib/active_record/model_schema.rb:237:in `columns_hash'
1121
+ activerecord (3.2.3) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
1122
+ activerecord (3.2.3) lib/active_record/relation.rb:170:in `exec_queries'
1123
+ activerecord (3.2.3) lib/active_record/relation.rb:160:in `block in to_a'
1124
+ activerecord (3.2.3) lib/active_record/explain.rb:33:in `logging_query_plan'
1125
+ activerecord (3.2.3) lib/active_record/relation.rb:159:in `to_a'
1126
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:377:in `find_first'
1127
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:122:in `first'
1128
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:19:in `respond'
1129
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1130
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1131
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1132
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1133
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__358778856__process_action__506102614__callbacks'
1134
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1135
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1136
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1137
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1138
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1139
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1140
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1141
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1142
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1143
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1144
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1145
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1146
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1147
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1148
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1149
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1150
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1151
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1152
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1153
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1154
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1155
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1156
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1157
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1158
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1159
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1160
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1161
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1162
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1163
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1164
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1165
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1166
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1167
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1168
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1169
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1170
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__485168480__call__63444434__callbacks'
1171
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1172
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1173
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1174
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1175
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1176
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1177
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1178
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1179
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1180
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1181
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1182
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1183
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1184
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1185
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1186
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1187
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1188
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1189
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1190
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1191
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1192
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1193
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1194
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1195
+
1196
+
1197
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
1198
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1199
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
1200
+
1201
+
1202
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:58:45 +0200
1203
+
1204
+ SyntaxError (/home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:1: syntax error, unexpected '<'
1205
+ module Ecm::CmsCore::Template < ActiveRecord::Base
1206
+ ^):
1207
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `load'
1208
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `block in load_file'
1209
+ activesupport (3.2.3) lib/active_support/dependencies.rb:639:in `new_constants_in'
1210
+ activesupport (3.2.3) lib/active_support/dependencies.rb:468:in `load_file'
1211
+ activesupport (3.2.3) lib/active_support/dependencies.rb:353:in `require_or_load'
1212
+ activesupport (3.2.3) lib/active_support/dependencies.rb:502:in `load_missing_constant'
1213
+ activesupport (3.2.3) lib/active_support/dependencies.rb:192:in `block in const_missing'
1214
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `each'
1215
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `const_missing'
1216
+ activesupport (3.2.3) lib/active_support/dependencies.rb:514:in `load_missing_constant'
1217
+ activesupport (3.2.3) lib/active_support/dependencies.rb:192:in `block in const_missing'
1218
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `each'
1219
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `const_missing'
1220
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:6:in `<class:PageController>'
1221
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:3:in `<module:CmsCore>'
1222
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:2:in `<module:Ecm>'
1223
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:1:in `<top (required)>'
1224
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `load'
1225
+ activesupport (3.2.3) lib/active_support/dependencies.rb:469:in `block in load_file'
1226
+ activesupport (3.2.3) lib/active_support/dependencies.rb:639:in `new_constants_in'
1227
+ activesupport (3.2.3) lib/active_support/dependencies.rb:468:in `load_file'
1228
+ activesupport (3.2.3) lib/active_support/dependencies.rb:353:in `require_or_load'
1229
+ activesupport (3.2.3) lib/active_support/dependencies.rb:502:in `load_missing_constant'
1230
+ activesupport (3.2.3) lib/active_support/dependencies.rb:192:in `block in const_missing'
1231
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `each'
1232
+ activesupport (3.2.3) lib/active_support/dependencies.rb:190:in `const_missing'
1233
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
1234
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
1235
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
1236
+ activesupport (3.2.3) lib/active_support/dependencies.rb:554:in `get'
1237
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1238
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1239
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
1240
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1241
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1242
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1243
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1244
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1245
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1246
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1247
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1248
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1249
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1250
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1251
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1252
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1253
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1254
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1255
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1256
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__608465195__call__358662811__callbacks'
1257
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1258
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1259
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1260
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1261
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1262
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1263
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1264
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1265
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1266
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1267
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1268
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1269
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1270
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1271
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1272
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1273
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1274
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1275
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1276
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1277
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1278
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1279
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1280
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1281
+
1282
+
1283
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
1284
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.8ms)
1285
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (32.7ms)
1286
+
1287
+
1288
+ Started GET "/" for 192.168.0.37 at 2012-04-04 14:58:46 +0200
1289
+
1290
+ AbstractController::ActionNotFound (The action 'respond' could not be found for Ecm::CmsCore::PageController):
1291
+ actionpack (3.2.3) lib/abstract_controller/base.rb:116:in `process'
1292
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1293
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1294
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1295
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1296
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1297
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1298
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1299
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1300
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1301
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1302
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1303
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1304
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1305
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1306
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1307
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1308
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1309
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1310
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1311
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1312
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1313
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1314
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1315
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__608465195__call__358662811__callbacks'
1316
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1317
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1318
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1319
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1320
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1321
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1322
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1323
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1324
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1325
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1326
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1327
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1328
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1329
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1330
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1331
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1332
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1333
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1334
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1335
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1336
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1337
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1338
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1339
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1340
+
1341
+
1342
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
1343
+
1344
+
1345
+ Started GET "/" for 192.168.0.37 at 2012-04-04 15:00:11 +0200
1346
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1347
+ Parameters: {"page"=>"home/index"}
1348
+ pathname: enhome/
1349
+ basename: index
1350
+ Completed 500 Internal Server Error in 130ms
1351
+
1352
+ ActiveRecord::StatementInvalid (Could not find table 'templates'):
1353
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:465:in `table_structure'
1354
+ activerecord (3.2.3) lib/active_record/connection_adapters/sqlite_adapter.rb:346:in `columns'
1355
+ activerecord (3.2.3) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
1356
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `yield'
1357
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `default'
1358
+ activerecord (3.2.3) lib/active_record/model_schema.rb:228:in `columns'
1359
+ activerecord (3.2.3) lib/active_record/model_schema.rb:237:in `columns_hash'
1360
+ activerecord (3.2.3) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
1361
+ activerecord (3.2.3) lib/active_record/relation.rb:170:in `exec_queries'
1362
+ activerecord (3.2.3) lib/active_record/relation.rb:160:in `block in to_a'
1363
+ activerecord (3.2.3) lib/active_record/explain.rb:33:in `logging_query_plan'
1364
+ activerecord (3.2.3) lib/active_record/relation.rb:159:in `to_a'
1365
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:377:in `find_first'
1366
+ activerecord (3.2.3) lib/active_record/relation/finder_methods.rb:122:in `first'
1367
+ /home/robo/rails/ecm_cms_core-rails-3-2/app/controllers/ecm/cms_core/page_controller.rb:19:in `respond'
1368
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1369
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
1370
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
1371
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1372
+ activesupport (3.2.3) lib/active_support/callbacks.rb:414:in `_run__210893465__process_action__184899194__callbacks'
1373
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1374
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1375
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1376
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1377
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1378
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1379
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1380
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1381
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1382
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1383
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1384
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1385
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1386
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1387
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1388
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1389
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1390
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1391
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1392
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1393
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1394
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1395
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1396
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1397
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1398
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1399
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1400
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1401
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1402
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1403
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1404
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1405
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1406
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1407
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1408
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1409
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__29780552__call__60925880__callbacks'
1410
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1411
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1412
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1413
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1414
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1415
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1416
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1417
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1418
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1419
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1420
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1421
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1422
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1423
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1424
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1425
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1426
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1427
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1428
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1429
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1430
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1431
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1432
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1433
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1434
+
1435
+
1436
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
1437
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1438
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.3ms)
1439
+
1440
+
1441
+ Started GET "/" for 192.168.0.37 at 2012-04-04 15:02:06 +0200
1442
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1443
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1444
+ Parameters: {"page"=>"home/index"}
1445
+ pathname: enhome/
1446
+ basename: index
1447
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'enhome/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1448
+ Ecm::CmsCore::Template Load (0.4ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/home/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1449
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1450
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1451
+ Rendered public/404.html (13.5ms)
1452
+ Completed 404 Not Found in 130ms (Views: 16.0ms | ActiveRecord: 0.6ms)
1453
+
1454
+
1455
+ Started GET "/" for 192.168.0.37 at 2012-04-04 15:02:07 +0200
1456
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1457
+ Parameters: {"page"=>"home/index"}
1458
+ pathname: enhome/
1459
+ basename: index
1460
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'enhome/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1461
+ Ecm::CmsCore::Template Load (0.5ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/home/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1462
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1463
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1464
+ Rendered public/404.html (0.0ms)
1465
+ Completed 404 Not Found in 5ms (Views: 2.0ms | ActiveRecord: 0.7ms)
1466
+
1467
+
1468
+ Started GET "/admin" for 192.168.0.37 at 2012-04-04 15:02:17 +0200
1469
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1470
+ Parameters: {"page"=>"admin"}
1471
+ pathname: en/
1472
+ basename: admin
1473
+ Ecm::CmsCore::Template Load (1.8ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'admin' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1474
+ Ecm::CmsCore::Template Load (1.5ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'admin' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1475
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1476
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1477
+ Rendered public/404.html (0.0ms)
1478
+ Completed 404 Not Found in 9ms (Views: 1.7ms | ActiveRecord: 1.7ms)
1479
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1480
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1481
+
1482
+
1483
+ Started GET "/test" for 192.168.0.37 at 2012-04-04 15:04:42 +0200
1484
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1485
+ Parameters: {"page"=>"test"}
1486
+ pathname: en/
1487
+ basename: test
1488
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1489
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1490
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1491
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1492
+ Rendered public/404.html (0.0ms)
1493
+ Completed 404 Not Found in 7ms (Views: 2.8ms | ActiveRecord: 0.4ms)
1494
+
1495
+
1496
+ Started GET "/" for 192.168.0.37 at 2012-04-04 15:06:50 +0200
1497
+
1498
+ NoMethodError (undefined method `localized' for #<ActionDispatch::Routing::Mapper:0x9e03b44>):
1499
+ config/routes.rb:59:in `block in <top (required)>'
1500
+ config/routes.rb:1:in `<top (required)>'
1501
+
1502
+
1503
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (31.5ms)
1504
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
1505
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (40.9ms)
1506
+
1507
+
1508
+ Started GET "/" for 192.168.0.37 at 2012-04-04 15:07:00 +0200
1509
+
1510
+
1511
+ Started GET "/en" for 192.168.0.37 at 2012-04-04 15:07:00 +0200
1512
+
1513
+ ActionController::RoutingError (uninitialized constant PageController):
1514
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:229:in `block in constantize'
1515
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `each'
1516
+ activesupport (3.2.3) lib/active_support/inflector/methods.rb:228:in `constantize'
1517
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1518
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1519
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:32:in `call'
1520
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1521
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1522
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1523
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1524
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1525
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1526
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1527
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1528
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1529
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1530
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1531
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1532
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1533
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
1534
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
1535
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1536
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__187388509__call__330376002__callbacks'
1537
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1538
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1539
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1540
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1541
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1542
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1543
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1544
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1545
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1546
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1547
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1548
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1549
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1550
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1551
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1552
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1553
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1554
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1555
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1556
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1557
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1558
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1559
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1560
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1561
+
1562
+
1563
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (21.1ms)
1564
+
1565
+
1566
+ Started GET "/en" for 192.168.0.37 at 2012-04-04 15:07:12 +0200
1567
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1568
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1569
+ Parameters: {"page"=>"home/index", "i18n_locale"=>"en"}
1570
+ pathname: enhome/
1571
+ basename: index
1572
+ Ecm::CmsCore::Template Load (1.5ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'enhome/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1573
+ Ecm::CmsCore::Template Load (0.5ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/home/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1574
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1575
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1576
+ Rendered public/404.html (0.4ms)
1577
+ Completed 404 Not Found in 135ms (Views: 3.0ms | ActiveRecord: 0.8ms)
1578
+
1579
+
1580
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:07:16 +0200
1581
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1582
+ Parameters: {"i18n_locale"=>"en", "page"=>"test"}
1583
+ pathname: en/
1584
+ basename: test
1585
+ Ecm::CmsCore::Template Load (0.4ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1586
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1587
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1588
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1589
+ Rendered public/404.html (0.0ms)
1590
+ Completed 404 Not Found in 5ms (Views: 2.1ms | ActiveRecord: 0.4ms)
1591
+
1592
+
1593
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:08:15 +0200
1594
+
1595
+ ActionController::RoutingError (uninitialized constant FrontendController::I18nController):
1596
+ app/controllers/frontend_controller.rb:2:in `<class:FrontendController>'
1597
+ app/controllers/frontend_controller.rb:1:in `<top (required)>'
1598
+
1599
+
1600
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms)
1601
+
1602
+
1603
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:08:21 +0200
1604
+
1605
+ ActionController::RoutingError (uninitialized constant I18nController):
1606
+ app/controllers/frontend_controller.rb:2:in `<class:FrontendController>'
1607
+ app/controllers/frontend_controller.rb:1:in `<top (required)>'
1608
+
1609
+
1610
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
1611
+
1612
+
1613
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:08:52 +0200
1614
+
1615
+ ActionController::RoutingError (uninitialized constant I18nController):
1616
+ app/controllers/frontend_controller.rb:2:in `<class:FrontendController>'
1617
+ app/controllers/frontend_controller.rb:1:in `<top (required)>'
1618
+
1619
+
1620
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.9ms)
1621
+
1622
+
1623
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:09:03 +0200
1624
+
1625
+ ActionController::RoutingError (uninitialized constant I18nController):
1626
+ app/controllers/frontend_controller.rb:2:in `<class:FrontendController>'
1627
+ app/controllers/frontend_controller.rb:1:in `<top (required)>'
1628
+
1629
+
1630
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.5ms)
1631
+
1632
+
1633
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:09:05 +0200
1634
+
1635
+ ActionController::RoutingError (uninitialized constant I18nController):
1636
+ app/controllers/frontend_controller.rb:2:in `<class:FrontendController>'
1637
+ app/controllers/frontend_controller.rb:1:in `<top (required)>'
1638
+
1639
+
1640
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1641
+
1642
+
1643
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:09:53 +0200
1644
+
1645
+ ActionController::RoutingError (undefined method `before_filter' for I18nController:Module):
1646
+ lib/i18n_controller.rb:2:in `<module:I18nController>'
1647
+ lib/i18n_controller.rb:1:in `<top (required)>'
1648
+ app/controllers/frontend_controller.rb:2:in `<class:FrontendController>'
1649
+ app/controllers/frontend_controller.rb:1:in `<top (required)>'
1650
+
1651
+
1652
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (15.2ms)
1653
+
1654
+
1655
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:11:13 +0200
1656
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1657
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1658
+ Parameters: {"i18n_locale"=>"en", "page"=>"test"}
1659
+ pathname: en/
1660
+ basename: test
1661
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1662
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1663
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1664
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1665
+ Rendered public/404.html (0.4ms)
1666
+ Completed 404 Not Found in 87ms (Views: 2.5ms | ActiveRecord: 0.5ms)
1667
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1668
+
1669
+
1670
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:12:24 +0200
1671
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1672
+ Parameters: {"i18n_locale"=>"en", "page"=>"test"}
1673
+ pathname: en/
1674
+ basename: test
1675
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1676
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1677
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1678
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1679
+ Rendered public/404.html (0.0ms)
1680
+ Completed 404 Not Found in 5ms (Views: 1.8ms | ActiveRecord: 0.4ms)
1681
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1682
+
1683
+
1684
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:14:28 +0200
1685
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1686
+ Parameters: {"i18n_locale"=>"en", "page"=>"test"}
1687
+ pathname: en/
1688
+ basename: test
1689
+ Ecm::CmsCore::Template Load (1.8ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1690
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1691
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1692
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1693
+ Rendered public/404.html (0.0ms)
1694
+ Completed 404 Not Found in 7ms (Views: 2.3ms | ActiveRecord: 0.4ms)
1695
+
1696
+
1697
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:14:29 +0200
1698
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1699
+ Parameters: {"i18n_locale"=>"en", "page"=>"test"}
1700
+ pathname: en/
1701
+ basename: test
1702
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1703
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1704
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1705
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1706
+ Rendered public/404.html (0.0ms)
1707
+ Completed 404 Not Found in 5ms (Views: 1.5ms | ActiveRecord: 0.4ms)
1708
+
1709
+
1710
+ Started GET "/en/test" for 192.168.0.37 at 2012-04-04 15:15:12 +0200
1711
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1712
+ Parameters: {"i18n_locale"=>"en", "page"=>"test"}
1713
+ pathname: en/
1714
+ basename: test
1715
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1716
+ Ecm::CmsCore::Template Load (2.1ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1717
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/layouts/ecm/cms_core/' AND "ecm_cms_core_templates"."basename" = 'page' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1718
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/layouts/' AND "ecm_cms_core_templates"."basename" = 'frontend' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1719
+ Ecm::CmsCore::Template Load (0.4ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/' AND "ecm_cms_core_templates"."basename" = 'en' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1720
+ Rendered Template - 1 - "en/" within layouts/application (2.9ms)
1721
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1722
+ Ecm::CmsCore::Template Load (1.1ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1723
+ Rendered public/404.html (0.0ms)
1724
+ Completed 404 Not Found in 39ms (Views: 3.5ms | ActiveRecord: 4.2ms)
1725
+
1726
+
1727
+ Started GET "/en" for 192.168.0.37 at 2012-04-04 15:17:17 +0200
1728
+ Processing by Ecm::CmsCore::PageController#respond as HTML
1729
+ Parameters: {"page"=>"home/index", "i18n_locale"=>"en"}
1730
+ pathname: enhome/
1731
+ basename: index
1732
+ Ecm::CmsCore::Template Load (0.4ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'enhome/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
1733
+ Ecm::CmsCore::Template Load (0.5ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/home/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1734
+ DEPRECATION WARNING: Passing the format in the template name is deprecated. Please pass render with :formats => [:html] instead. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
1735
+ Ecm::CmsCore::Template Load (0.4ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en//home/robo/rails/ecm_cms_core-rails-3-2/test/dummy/public/' AND "ecm_cms_core_templates"."basename" = '404' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
1736
+ Rendered public/404.html (0.0ms)
1737
+ Completed 404 Not Found in 7ms (Views: 3.3ms | ActiveRecord: 0.9ms)
1738
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1739
+ Migrating to CreateFolders (20120404125529)
1740
+ Migrating to CreateTemplates (20120404125530)
1741
+  (0.4ms) select sqlite_version(*)
1742
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1743
+  (0.0ms) PRAGMA index_list("ecm_cms_core_folders")
1744
+  (0.0ms) PRAGMA index_list("ecm_cms_core_templates")
1745
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1746
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1747
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1748
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1749
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1750
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1751
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1752
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1753
+ Migrating to CreateFolders (20120404125529)
1754
+ Migrating to CreateTemplates (20120404125530)
1755
+ Migrating to DeviseCreateAdminUsers (20120404132409)
1756
+  (0.1ms) select sqlite_version(*)
1757
+  (0.0ms) begin transaction
1758
+  (1.1ms) CREATE TABLE "admin_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)
1759
+ AdminUser Exists (0.0ms) SELECT 1 FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1
1760
+ Binary data inserted for `string` type on column `encrypted_password`
1761
+ SQL (6.4ms) INSERT INTO "admin_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", Wed, 04 Apr 2012 13:28:29 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$XCf/zdmZY4YYmoYnQSD19.MEUD5lx9Da0I6L0BZG8BzO/mpwFSkxS"], ["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", Wed, 04 Apr 2012 13:28:29 UTC +00:00]]
1762
+  (0.0ms) PRAGMA index_list("admin_users")
1763
+  (0.3ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")
1764
+  (0.0ms) PRAGMA index_list("admin_users")
1765
+  (0.0ms) PRAGMA index_info('index_admin_users_on_email')
1766
+  (0.1ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")
1767
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404132409')
1768
+  (47.0ms) commit transaction
1769
+ Migrating to CreateAdminNotes (20120404152418)
1770
+  (0.1ms) begin transaction
1771
+  (0.6ms) CREATE TABLE "admin_notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "admin_user_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1772
+  (0.0ms) PRAGMA index_list("admin_notes")
1773
+  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")
1774
+  (0.0ms) PRAGMA index_list("admin_notes")
1775
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
1776
+  (0.2ms) CREATE INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id" ON "admin_notes" ("admin_user_type", "admin_user_id")
1777
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404152418')
1778
+  (28.4ms) commit transaction
1779
+ Migrating to MoveAdminNotesToComments (20120404152419)
1780
+  (0.1ms) begin transaction
1781
+  (0.1ms) PRAGMA index_list("admin_notes")
1782
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_admin_user_type_and_admin_user_id')
1783
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
1784
+  (3.1ms) DROP INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id"
1785
+  (0.2ms) ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"
1786
+  (0.4ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1787
+  (0.0ms) PRAGMA index_list("active_admin_comments")
1788
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
1789
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
1790
+  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")
1791
+  (0.1ms) SELECT * FROM "active_admin_comments"
1792
+  (0.6ms) DROP TABLE "active_admin_comments"
1793
+  (0.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1794
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
1795
+  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')
1796
+  (0.0ms) PRAGMA index_list("active_admin_comments")
1797
+  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")
1798
+  (0.1ms) SELECT * FROM "altered_active_admin_comments"
1799
+  (0.3ms) DROP TABLE "altered_active_admin_comments"
1800
+  (0.7ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
1801
+  (0.0ms) PRAGMA index_list("active_admin_comments")
1802
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
1803
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
1804
+  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")
1805
+  (0.1ms) SELECT * FROM "active_admin_comments"
1806
+  (0.3ms) DROP TABLE "active_admin_comments"
1807
+  (0.4ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1808
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
1809
+  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')
1810
+  (0.0ms) PRAGMA index_list("active_admin_comments")
1811
+  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")
1812
+  (0.1ms) SELECT * FROM "altered_active_admin_comments"
1813
+  (0.1ms) DROP TABLE "altered_active_admin_comments"
1814
+  (0.2ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)
1815
+  (0.1ms) PRAGMA index_list("active_admin_comments")
1816
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
1817
+  (0.2ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")
1818
+  (0.0ms) PRAGMA index_list("active_admin_comments")
1819
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')
1820
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
1821
+  (0.1ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")
1822
+  (0.0ms) UPDATE active_admin_comments SET namespace='admin'
1823
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404152419')
1824
+  (27.5ms) commit transaction
1825
+  (0.4ms) select sqlite_version(*)
1826
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
1827
+  (0.6ms) PRAGMA index_list("active_admin_comments")
1828
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')
1829
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')
1830
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
1831
+  (0.1ms) PRAGMA index_list("admin_users")
1832
+  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')
1833
+  (0.0ms) PRAGMA index_info('index_admin_users_on_email')
1834
+  (0.0ms) PRAGMA index_list("ecm_cms_core_folders")
1835
+  (0.0ms) PRAGMA index_list("ecm_cms_core_templates")
1836
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1837
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1838
+
1839
+
1840
+ Started GET "/admin" for 192.168.0.37 at 2012-04-04 15:28:46 +0200
1841
+ Processing by Admin::DashboardController#index as HTML
1842
+ Completed 401 Unauthorized in 2ms
1843
+
1844
+
1845
+ Started GET "/admin/login" for 192.168.0.37 at 2012-04-04 15:28:46 +0200
1846
+ Processing by ActiveAdmin::Devise::SessionsController#new as HTML
1847
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in buttons at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:30)
1848
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in commit_button at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:36)
1849
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/devise/shared/_links.erb (1.3ms)
1850
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (465.7ms)
1851
+ Compiled active_admin/print.css (346ms) (pid 12415)
1852
+ Completed 200 OK in 971ms (Views: 951.7ms | ActiveRecord: 0.6ms)
1853
+
1854
+
1855
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:28:47 +0200
1856
+ Served asset /active_admin/print.css - 200 OK (6ms)
1857
+
1858
+
1859
+ Started GET "/assets/active_admin.css" for 192.168.0.37 at 2012-04-04 15:28:47 +0200
1860
+ Served asset /active_admin.css - 404 Not Found (12ms)
1861
+
1862
+ ActionController::RoutingError (No route matches [GET] "/assets/active_admin.css"):
1863
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1864
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1865
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1866
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1867
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1868
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1869
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1870
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1871
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1872
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1873
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1874
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1875
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1876
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1877
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1878
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1879
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1880
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1881
+
1882
+
1883
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1884
+
1885
+
1886
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:28:47 +0200
1887
+ Served asset /active_admin.js - 404 Not Found (12ms)
1888
+
1889
+ ActionController::RoutingError (No route matches [GET] "/assets/active_admin.js"):
1890
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1891
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1892
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1893
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1894
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1895
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1896
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1897
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1898
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1899
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1900
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1901
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1902
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1903
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1904
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1905
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1906
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1907
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1908
+
1909
+
1910
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
1911
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1912
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1913
+
1914
+
1915
+ Started POST "/admin/login" for 192.168.0.37 at 2012-04-04 15:29:16 +0200
1916
+ Processing by ActiveAdmin::Devise::SessionsController#create as HTML
1917
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"}
1918
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1
1919
+  (0.1ms) begin transaction
1920
+  (1.6ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-04-04 13:29:17.086211', "current_sign_in_at" = '2012-04-04 13:29:17.086211', "last_sign_in_ip" = '192.168.0.37', "current_sign_in_ip" = '192.168.0.37', "sign_in_count" = 1, "updated_at" = '2012-04-04 13:29:17.087525' WHERE "admin_users"."id" = 1
1921
+  (22.0ms) commit transaction
1922
+ Redirected to http://robo-development.local:3000/admin
1923
+ Completed 302 Found in 484ms (ActiveRecord: 0.0ms)
1924
+
1925
+
1926
+ Started GET "/admin" for 192.168.0.37 at 2012-04-04 15:29:17 +0200
1927
+ Processing by Admin::DashboardController#index as HTML
1928
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
1929
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/dashboard/index.html.arb (22.3ms)
1930
+ Completed 200 OK in 34ms (Views: 30.0ms | ActiveRecord: 0.3ms)
1931
+
1932
+
1933
+ Started GET "/assets/active_admin.css" for 192.168.0.37 at 2012-04-04 15:29:17 +0200
1934
+ Served asset /active_admin.css - 404 Not Found (9ms)
1935
+
1936
+ ActionController::RoutingError (No route matches [GET] "/assets/active_admin.css"):
1937
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1938
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1939
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1940
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1941
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1942
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1943
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1944
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1945
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1946
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1947
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1948
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1949
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1950
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1951
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1952
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1953
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1954
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1955
+
1956
+
1957
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (28.4ms)
1958
+
1959
+
1960
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:29:17 +0200
1961
+ Served asset /active_admin/print.css - 304 Not Modified (5ms)
1962
+
1963
+
1964
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:29:17 +0200
1965
+ Served asset /active_admin.js - 404 Not Found (17ms)
1966
+
1967
+ ActionController::RoutingError (No route matches [GET] "/assets/active_admin.js"):
1968
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1969
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1970
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1971
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1972
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1973
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1974
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1975
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1976
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1977
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1978
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1979
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1980
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1981
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1982
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1983
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1984
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1985
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1986
+
1987
+
1988
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1989
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1990
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1991
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
1992
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
1993
+
1994
+
1995
+ Started GET "/admin" for 192.168.0.37 at 2012-04-04 15:30:35 +0200
1996
+ Processing by Admin::DashboardController#index as HTML
1997
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
1998
+ Compiled active_admin.css (2126ms) (pid 12433)
1999
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/dashboard/index.html.arb (2212.2ms)
2000
+ Completed 200 OK in 2220ms (Views: 2215.5ms | ActiveRecord: 0.3ms)
2001
+
2002
+
2003
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:37 +0200
2004
+ Served asset /active_admin.css - 200 OK (28ms)
2005
+
2006
+
2007
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:38 +0200
2008
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2009
+
2010
+
2011
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:30:38 +0200
2012
+ Compiled jquery.js (46ms) (pid 12433)
2013
+ Compiled jquery-ui.js (5ms) (pid 12433)
2014
+ Compiled jquery_ujs.js (0ms) (pid 12433)
2015
+ Compiled active_admin/application.js (2ms) (pid 12433)
2016
+ Compiled active_admin/base.js (177ms) (pid 12433)
2017
+ Compiled active_admin.js (186ms) (pid 12433)
2018
+ Served asset /active_admin.js - 200 OK (269ms)
2019
+
2020
+
2021
+ Started GET "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-04-04 15:30:43 +0200
2022
+ Processing by Admin::EcmCmsCoreTemplatesController#index as HTML
2023
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2024
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count
2025
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" 
2026
+  (1.7ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 'f')
2027
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 't')
2028
+ Ecm::CmsCore::Template Exists (0.2ms) SELECT 1 FROM "ecm_cms_core_templates" LIMIT 1 OFFSET 0
2029
+ CACHE (0.0ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" 
2030
+ CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count
2031
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" ORDER BY "ecm_cms_core_templates"."id" desc LIMIT 30 OFFSET 0
2032
+ Ecm::CmsCore::Folder Load (0.7ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 1 ORDER BY lft LIMIT 1
2033
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
2034
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/index.html.arb (909.0ms)
2035
+ Completed 200 OK in 948ms (Views: 908.3ms | ActiveRecord: 4.7ms)
2036
+
2037
+
2038
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:30:44 +0200
2039
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2040
+
2041
+
2042
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:44 +0200
2043
+ Served asset /active_admin.css - 304 Not Modified (78ms)
2044
+
2045
+
2046
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:44 +0200
2047
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2048
+
2049
+
2050
+ Started GET "/assets/active_admin/orderable.png" for 192.168.0.37 at 2012-04-04 15:30:45 +0200
2051
+ Served asset /active_admin/orderable.png - 200 OK (6ms)
2052
+
2053
+
2054
+ Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.0.37 at 2012-04-04 15:30:45 +0200
2055
+ Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (11ms)
2056
+
2057
+
2058
+ Started DELETE "/admin/ecm_cms_core_templates/1" for 192.168.0.37 at 2012-04-04 15:30:49 +0200
2059
+ Processing by Admin::EcmCmsCoreTemplatesController#destroy as HTML
2060
+ Parameters: {"authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "id"=>"1"}
2061
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2062
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? LIMIT 1 [["id", "1"]]
2063
+  (0.3ms) begin transaction
2064
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 1 ORDER BY lft LIMIT 1
2065
+ SQL (1.1ms) UPDATE "ecm_cms_core_folders" SET "templates_count" = COALESCE("templates_count", 0) - 1 WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 1 ORDER BY lft)
2066
+ SQL (0.1ms) DELETE FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? [["id", 1]]
2067
+  (26.4ms) commit transaction
2068
+ Redirected to http://robo-development.local:3000/admin/ecm_cms_core_templates
2069
+ Completed 302 Found in 44ms (ActiveRecord: 0.0ms)
2070
+
2071
+
2072
+ Started GET "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-04-04 15:30:50 +0200
2073
+ Processing by Admin::EcmCmsCoreTemplatesController#index as HTML
2074
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2075
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count
2076
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" 
2077
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 'f')
2078
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 't')
2079
+ Ecm::CmsCore::Template Exists (0.2ms) SELECT 1 FROM "ecm_cms_core_templates" LIMIT 1 OFFSET 0
2080
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
2081
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/index.html.arb (407.3ms)
2082
+ Completed 200 OK in 414ms (Views: 410.7ms | ActiveRecord: 1.6ms)
2083
+
2084
+
2085
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:50 +0200
2086
+ Served asset /active_admin.css - 304 Not Modified (61ms)
2087
+
2088
+
2089
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:30:50 +0200
2090
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2091
+
2092
+
2093
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:50 +0200
2094
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2095
+
2096
+
2097
+ Started GET "/admin/ecm_cms_core_folders" for 192.168.0.37 at 2012-04-04 15:30:51 +0200
2098
+ Processing by Admin::EcmCmsCoreFoldersController#index as HTML
2099
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2100
+  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_folders" LIMIT 30 OFFSET 0) subquery_for_count 
2101
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_folders"
2102
+  (0.7ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL
2103
+ Ecm::CmsCore::Folder Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_folders" LIMIT 1 OFFSET 0
2104
+ CACHE (0.0ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" 
2105
+ CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_folders" LIMIT 30 OFFSET 0) subquery_for_count
2106
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft, "ecm_cms_core_folders"."id" desc LIMIT 30 OFFSET 0
2107
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
2108
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/index.html.arb (351.6ms)
2109
+ Completed 200 OK in 358ms (Views: 353.0ms | ActiveRecord: 2.0ms)
2110
+
2111
+
2112
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:30:51 +0200
2113
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2114
+
2115
+
2116
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:51 +0200
2117
+ Served asset /active_admin.css - 304 Not Modified (82ms)
2118
+
2119
+
2120
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:52 +0200
2121
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2122
+
2123
+
2124
+ Started DELETE "/admin/ecm_cms_core_folders/1" for 192.168.0.37 at 2012-04-04 15:30:54 +0200
2125
+ Processing by Admin::EcmCmsCoreFoldersController#destroy as HTML
2126
+ Parameters: {"authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "id"=>"1"}
2127
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2128
+ Ecm::CmsCore::Folder Load (1.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? ORDER BY lft LIMIT 1 [["id", "1"]]
2129
+  (0.0ms) begin transaction
2130
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."folder_id" = 1
2131
+ Ecm::CmsCore::Folder Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? LIMIT 1 [["id", 1]]
2132
+ Ecm::CmsCore::Folder Load (0.1ms) SELECT id FROM "ecm_cms_core_folders" WHERE ("lft" >= 1) ORDER BY lft
2133
+ SQL (0.1ms) DELETE FROM "ecm_cms_core_folders" WHERE ("lft" > 1 AND "rgt" < 2)
2134
+ SQL (0.1ms) UPDATE "ecm_cms_core_folders" SET "lft" = ("lft" - 2) WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE ("lft" > 2) ORDER BY "lft")
2135
+ SQL (0.1ms) UPDATE "ecm_cms_core_folders" SET "rgt" = ("rgt" - 2) WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE ("rgt" > 2) ORDER BY "lft")
2136
+ SQL (0.4ms) DELETE FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? [["id", 1]]
2137
+  (11.8ms) commit transaction
2138
+ Redirected to http://robo-development.local:3000/admin/ecm_cms_core_folders
2139
+ Completed 302 Found in 73ms (ActiveRecord: 0.0ms)
2140
+
2141
+
2142
+ Started GET "/admin/ecm_cms_core_folders" for 192.168.0.37 at 2012-04-04 15:30:55 +0200
2143
+ Processing by Admin::EcmCmsCoreFoldersController#index as HTML
2144
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2145
+  (1.1ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_folders" LIMIT 30 OFFSET 0) subquery_for_count 
2146
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_folders"
2147
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL
2148
+ Ecm::CmsCore::Folder Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_folders" LIMIT 1 OFFSET 0
2149
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
2150
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/index.html.arb (280.0ms)
2151
+ Completed 200 OK in 284ms (Views: 280.6ms | ActiveRecord: 2.0ms)
2152
+
2153
+
2154
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:55 +0200
2155
+ Served asset /active_admin.css - 304 Not Modified (55ms)
2156
+
2157
+
2158
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:55 +0200
2159
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2160
+
2161
+
2162
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:30:55 +0200
2163
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2164
+
2165
+
2166
+ Started GET "/admin/ecm_cms_core_folders/new" for 192.168.0.37 at 2012-04-04 15:30:57 +0200
2167
+ Processing by Admin::EcmCmsCoreFoldersController#new as HTML
2168
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2169
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
2170
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in buttons at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:30)
2171
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in commit_button at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:36)
2172
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/new.html.arb (68.2ms)
2173
+ Completed 200 OK in 75ms (Views: 70.3ms | ActiveRecord: 0.5ms)
2174
+
2175
+
2176
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:57 +0200
2177
+ Served asset /active_admin/print.css - 304 Not Modified (1ms)
2178
+
2179
+
2180
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:30:58 +0200
2181
+ Served asset /active_admin.css - 304 Not Modified (91ms)
2182
+
2183
+
2184
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:30:58 +0200
2185
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2186
+
2187
+
2188
+ Started POST "/admin/ecm_cms_core_folders" for 192.168.0.37 at 2012-04-04 15:31:02 +0200
2189
+ Processing by Admin::EcmCmsCoreFoldersController#create as HTML
2190
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "ecm_cms_core_folder"=>{"parent_id"=>"", "basename"=>"en"}, "commit"=>"Create Folder"}
2191
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2192
+  (0.0ms) begin transaction
2193
+ Ecm::CmsCore::Folder Exists (0.2ms) SELECT 1 FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."basename" = 'en' AND "ecm_cms_core_folders"."parent_id" IS NULL) LIMIT 1
2194
+ Ecm::CmsCore::Folder Load (0.1ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY "rgt" desc LIMIT 1
2195
+ SQL (1.2ms) INSERT INTO "ecm_cms_core_folders" ("basename", "children_count", "created_at", "depth", "lft", "parent_id", "pathname", "rgt", "templates_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["basename", "en"], ["children_count", 0], ["created_at", Wed, 04 Apr 2012 13:31:02 UTC +00:00], ["depth", nil], ["lft", 1], ["parent_id", nil], ["pathname", nil], ["rgt", 2], ["templates_count", 0], ["updated_at", Wed, 04 Apr 2012 13:31:02 UTC +00:00]]
2196
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? LIMIT 1 [["id", 2]]
2197
+ SQL (0.3ms) UPDATE "ecm_cms_core_folders" SET "depth" = 0 WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY "lft")
2198
+  (14.2ms) commit transaction
2199
+ Redirected to http://robo-development.local:3000/admin/ecm_cms_core_folders/2
2200
+ Completed 302 Found in 65ms (ActiveRecord: 0.0ms)
2201
+
2202
+
2203
+ Started GET "/admin/ecm_cms_core_folders/2" for 192.168.0.37 at 2012-04-04 15:31:02 +0200
2204
+ Processing by Admin::EcmCmsCoreFoldersController#show as HTML
2205
+ Parameters: {"id"=>"2"}
2206
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2207
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? ORDER BY lft LIMIT 1 [["id", "2"]]
2208
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."folder_id" = 2
2209
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/show.html.arb (20.7ms)
2210
+ Completed 200 OK in 31ms (Views: 23.1ms | ActiveRecord: 0.8ms)
2211
+
2212
+
2213
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:31:02 +0200
2214
+ Served asset /active_admin.css - 304 Not Modified (53ms)
2215
+
2216
+
2217
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:31:02 +0200
2218
+ Served asset /active_admin/print.css - 304 Not Modified (1ms)
2219
+
2220
+
2221
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:31:02 +0200
2222
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2223
+
2224
+
2225
+ Started GET "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-04-04 15:31:03 +0200
2226
+ Processing by Admin::EcmCmsCoreTemplatesController#index as HTML
2227
+ AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2228
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count
2229
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" 
2230
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 'f')
2231
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 't')
2232
+ Ecm::CmsCore::Template Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_templates" LIMIT 1 OFFSET 0
2233
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
2234
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/index.html.arb (378.8ms)
2235
+ Completed 200 OK in 384ms (Views: 380.6ms | ActiveRecord: 1.5ms)
2236
+
2237
+
2238
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:31:04 +0200
2239
+ Served asset /active_admin/print.css - 304 Not Modified (5ms)
2240
+
2241
+
2242
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:31:04 +0200
2243
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2244
+
2245
+
2246
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:31:04 +0200
2247
+ Served asset /active_admin.css - 304 Not Modified (115ms)
2248
+
2249
+
2250
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-04-04 15:31:05 +0200
2251
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
2252
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2253
+ Ecm::CmsCore::Folder Load (0.8ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
2254
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" >= 1 AND "ecm_cms_core_folders"."rgt" <= 2) ORDER BY "lft"
2255
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in buttons at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:30)
2256
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in commit_button at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:36)
2257
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/new.html.arb (136.6ms)
2258
+ Completed 200 OK in 144ms (Views: 138.6ms | ActiveRecord: 1.2ms)
2259
+
2260
+
2261
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:31:05 +0200
2262
+ Served asset /active_admin/print.css - 304 Not Modified (1ms)
2263
+
2264
+
2265
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:31:05 +0200
2266
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2267
+
2268
+
2269
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:31:05 +0200
2270
+ Served asset /active_admin.css - 304 Not Modified (21ms)
2271
+
2272
+
2273
+ Started POST "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-04-04 15:31:19 +0200
2274
+ Processing by Admin::EcmCmsCoreTemplatesController#create as HTML
2275
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "ecm_cms_core_template"=>{"folder_id"=>"2", "basename"=>"test", "title"=>"test", "meta_description"=>"test", "body"=>"", "layout"=>"", "locale"=>"en", "format"=>"html", "handler"=>"erb", "partial"=>"0"}, "commit"=>"Create Template"}
2276
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2277
+ Completed 500 Internal Server Error in 3ms
2278
+
2279
+ ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: folder_id, basename, title, meta_description, body, layout, locale, format, handler, partial):
2280
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:48:in `process_removed_attributes'
2281
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:20:in `debug_protected_attribute_removal'
2282
+ activemodel (3.2.3) lib/active_model/mass_assignment_security/sanitizer.rb:12:in `sanitize'
2283
+ activemodel (3.2.3) lib/active_model/mass_assignment_security.rb:230:in `sanitize_for_mass_assignment'
2284
+ activerecord (3.2.3) lib/active_record/attribute_assignment.rb:75:in `assign_attributes'
2285
+ activerecord (3.2.3) lib/active_record/base.rb:498:in `initialize'
2286
+ inherited_resources (1.3.0) lib/inherited_resources/base_helpers.rb:52:in `new'
2287
+ inherited_resources (1.3.0) lib/inherited_resources/base_helpers.rb:52:in `build_resource'
2288
+ /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/resource_controller/callbacks.rb:15:in `build_resource'
2289
+ inherited_resources (1.3.0) lib/inherited_resources/actions.rb:31:in `create'
2290
+ /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/resource_controller/actions.rb:48:in `create'
2291
+ actionpack (3.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2292
+ actionpack (3.2.3) lib/abstract_controller/base.rb:167:in `process_action'
2293
+ actionpack (3.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
2294
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2295
+ activesupport (3.2.3) lib/active_support/callbacks.rb:447:in `_run__176036232__process_action__506580012__callbacks'
2296
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
2297
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2298
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
2299
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
2300
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
2301
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2302
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
2303
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2304
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
2305
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2306
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2307
+ activerecord (3.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2308
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
2309
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
2310
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
2311
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2312
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
2313
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
2314
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2315
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
2316
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
2317
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
2318
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
2319
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
2320
+ warden (1.1.1) lib/warden/manager.rb:35:in `block in call'
2321
+ warden (1.1.1) lib/warden/manager.rb:34:in `catch'
2322
+ warden (1.1.1) lib/warden/manager.rb:34:in `call'
2323
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2324
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2325
+ rack (1.4.1) lib/rack/conditionalget.rb:35:in `call'
2326
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
2327
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2328
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
2329
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2330
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2331
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2332
+ activerecord (3.2.3) lib/active_record/query_cache.rb:64:in `call'
2333
+ activerecord (3.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:467:in `call'
2334
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2335
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__145736983__call__823874002__callbacks'
2336
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
2337
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2338
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
2339
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2340
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2341
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2342
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2343
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2344
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
2345
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
2346
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2347
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2348
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2349
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2350
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2351
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
2352
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
2353
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
2354
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2355
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
2356
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2357
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2358
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2359
+ /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2360
+
2361
+
2362
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.2ms)
2363
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
2364
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
2365
+
2366
+
2367
+ Started POST "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-04-04 15:32:15 +0200
2368
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
2369
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
2370
+ Processing by Admin::EcmCmsCoreTemplatesController#create as HTML
2371
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "ecm_cms_core_template"=>{"folder_id"=>"2", "basename"=>"test", "title"=>"test", "meta_description"=>"test", "body"=>"", "layout"=>"", "locale"=>"en", "format"=>"html", "handler"=>"erb", "partial"=>"0"}, "commit"=>"Create Template"}
2372
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2373
+  (0.1ms) begin transaction
2374
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft LIMIT 1
2375
+ Ecm::CmsCore::Template Exists (0.3ms) SELECT 1 FROM "ecm_cms_core_templates" WHERE ("ecm_cms_core_templates"."basename" = 'test' AND "ecm_cms_core_templates"."folder_id" = 2) LIMIT 1
2376
+ SQL (0.5ms) INSERT INTO "ecm_cms_core_templates" ("basename", "body", "created_at", "folder_id", "format", "handler", "layout", "locale", "meta_description", "partial", "pathname", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["basename", "test"], ["body", ""], ["created_at", Wed, 04 Apr 2012 13:32:16 UTC +00:00], ["folder_id", 2], ["format", "html"], ["handler", "erb"], ["layout", ""], ["locale", "en"], ["meta_description", "test"], ["partial", false], ["pathname", "en/"], ["title", "test"], ["updated_at", Wed, 04 Apr 2012 13:32:16 UTC +00:00]]
2377
+ SQL (0.1ms) UPDATE "ecm_cms_core_folders" SET "templates_count" = COALESCE("templates_count", 0) + 1 WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft)
2378
+  (20.5ms) commit transaction
2379
+ Redirected to http://robo-development.local:3000/admin/ecm_cms_core_templates/2
2380
+ Completed 302 Found in 89ms (ActiveRecord: 0.0ms)
2381
+
2382
+
2383
+ Started GET "/admin/ecm_cms_core_templates/2" for 192.168.0.37 at 2012-04-04 15:32:16 +0200
2384
+ Processing by Admin::EcmCmsCoreTemplatesController#show as HTML
2385
+ Parameters: {"id"=>"2"}
2386
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2387
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? LIMIT 1 [["id", "2"]]
2388
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft LIMIT 1
2389
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/show.html.arb (22.6ms)
2390
+ Completed 500 Internal Server Error in 29ms
2391
+
2392
+ ActionView::Template::Error (undefined local variable or method `template' for #<ActiveAdmin::Views::Pages::Show:0xa6c1880>):
2393
+ 1: insert_tag renderer_for(:show)
2394
+ app/admin/ecm/cms_core/templates.rb:48:in `block (4 levels) in <top (required)>'
2395
+ app/admin/ecm/cms_core/templates.rb:47:in `block (3 levels) in <top (required)>'
2396
+ app/admin/ecm/cms_core/templates.rb:46:in `block (2 levels) in <top (required)>'
2397
+
2398
+
2399
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (8.2ms)
2400
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
2401
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (17.8ms)
2402
+
2403
+
2404
+ Started GET "/admin/ecm_cms_core_templates/2" for 192.168.0.37 at 2012-04-04 15:33:03 +0200
2405
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
2406
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Template> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/template.rb:4)
2407
+ Processing by Admin::EcmCmsCoreTemplatesController#show as HTML
2408
+ Parameters: {"id"=>"2"}
2409
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2410
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? LIMIT 1 [["id", "2"]]
2411
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft LIMIT 1
2412
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/show.html.arb (36.5ms)
2413
+ Completed 200 OK in 74ms (Views: 39.0ms | ActiveRecord: 1.4ms)
2414
+
2415
+
2416
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:04 +0200
2417
+ Served asset /active_admin.css - 304 Not Modified (22ms)
2418
+
2419
+
2420
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:33:04 +0200
2421
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2422
+
2423
+
2424
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:04 +0200
2425
+ Served asset /active_admin/print.css - 304 Not Modified (2ms)
2426
+
2427
+
2428
+ Started GET "/admin/ecm_cms_core_folders" for 192.168.0.37 at 2012-04-04 15:33:09 +0200
2429
+ Processing by Admin::EcmCmsCoreFoldersController#index as HTML
2430
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2431
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_folders" LIMIT 30 OFFSET 0) subquery_for_count
2432
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" 
2433
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL
2434
+ Ecm::CmsCore::Folder Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_folders" LIMIT 1 OFFSET 0
2435
+ CACHE (0.0ms) SELECT COUNT(*) FROM "ecm_cms_core_folders"
2436
+ CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_folders" LIMIT 30 OFFSET 0) subquery_for_count 
2437
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft, "ecm_cms_core_folders"."id" desc LIMIT 30 OFFSET 0
2438
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
2439
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/index.html.arb (318.0ms)
2440
+ Completed 200 OK in 326ms (Views: 319.7ms | ActiveRecord: 1.7ms)
2441
+
2442
+
2443
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:10 +0200
2444
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2445
+
2446
+
2447
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:33:10 +0200
2448
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2449
+
2450
+
2451
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:10 +0200
2452
+ Served asset /active_admin.css - 304 Not Modified (41ms)
2453
+
2454
+
2455
+ Started GET "/admin/ecm_cms_core_folders/new" for 192.168.0.37 at 2012-04-04 15:33:15 +0200
2456
+ Processing by Admin::EcmCmsCoreFoldersController#new as HTML
2457
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2458
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
2459
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" >= 1 AND "ecm_cms_core_folders"."rgt" <= 2) ORDER BY "lft"
2460
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in buttons at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:30)
2461
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in commit_button at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:36)
2462
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/new.html.arb (42.9ms)
2463
+ Completed 200 OK in 50ms (Views: 45.0ms | ActiveRecord: 0.7ms)
2464
+
2465
+
2466
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:33:15 +0200
2467
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2468
+
2469
+
2470
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:15 +0200
2471
+ Served asset /active_admin/print.css - 304 Not Modified (1ms)
2472
+
2473
+
2474
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:15 +0200
2475
+ Served asset /active_admin.css - 304 Not Modified (32ms)
2476
+
2477
+
2478
+ Started POST "/admin/ecm_cms_core_folders" for 192.168.0.37 at 2012-04-04 15:33:19 +0200
2479
+ Processing by Admin::EcmCmsCoreFoldersController#create as HTML
2480
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "ecm_cms_core_folder"=>{"parent_id"=>"2", "basename"=>"home"}, "commit"=>"Create Folder"}
2481
+ AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2482
+  (0.1ms) begin transaction
2483
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft LIMIT 1
2484
+ Ecm::CmsCore::Folder Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."basename" = 'home' AND "ecm_cms_core_folders"."parent_id" = 2) LIMIT 1
2485
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY "rgt" desc LIMIT 1
2486
+ SQL (0.4ms) INSERT INTO "ecm_cms_core_folders" ("basename", "children_count", "created_at", "depth", "lft", "parent_id", "pathname", "rgt", "templates_count", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["basename", "home"], ["children_count", 0], ["created_at", Wed, 04 Apr 2012 13:33:19 UTC +00:00], ["depth", nil], ["lft", 3], ["parent_id", 2], ["pathname", "en/"], ["rgt", 4], ["templates_count", 0], ["updated_at", Wed, 04 Apr 2012 13:33:19 UTC +00:00]]
2487
+ SQL (0.4ms) UPDATE "ecm_cms_core_folders" SET "children_count" = COALESCE("children_count", 0) + 1 WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft)
2488
+ Ecm::CmsCore::Folder Load (0.1ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? ORDER BY "lft" LIMIT 1 [["id", 2]]
2489
+ Ecm::CmsCore::Folder Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? LIMIT 1 [["id", 3]]
2490
+ SQL (0.2ms) UPDATE "ecm_cms_core_folders" SET "lft" = CASE WHEN "lft" BETWEEN 2 AND 2 THEN "lft" + 4 - 2 WHEN "lft" BETWEEN 3 AND 4 THEN "lft" + 2 - 3 ELSE "lft" END, "rgt" = CASE WHEN "rgt" BETWEEN 2 AND 2 THEN "rgt" + 4 - 2 WHEN "rgt" BETWEEN 3 AND 4 THEN "rgt" + 2 - 3 ELSE "rgt" END, "parent_id" = CASE WHEN id = 3 THEN 2 ELSE "parent_id" END WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" ORDER BY "lft")
2491
+ Ecm::CmsCore::Folder Load (0.0ms) SELECT "lft", "rgt", "parent_id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? LIMIT 1 [["id", 2]]
2492
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? LIMIT 1 [["id", 3]]
2493
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" <= 2 AND "ecm_cms_core_folders"."rgt" >= 3) AND ("ecm_cms_core_folders".id != 3)
2494
+ SQL (0.1ms) UPDATE "ecm_cms_core_folders" SET "depth" = 1 WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY "lft")
2495
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" <= 2 AND "ecm_cms_core_folders"."rgt" >= 3) AND ("ecm_cms_core_folders".id != 3)
2496
+ Ecm::CmsCore::Folder Load (0.1ms) SELECT "lft", "rgt", "parent_id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? LIMIT 1 [["id", 3]]
2497
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? LIMIT 1 [["id", 3]]
2498
+ CACHE (0.0ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" <= 2 AND "ecm_cms_core_folders"."rgt" >= 3) AND ("ecm_cms_core_folders".id != 3)
2499
+ SQL (0.1ms) UPDATE "ecm_cms_core_folders" SET "depth" = 1 WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY "lft")
2500
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" <= 2 AND "ecm_cms_core_folders"."rgt" >= 3) AND ("ecm_cms_core_folders".id != 3)
2501
+  (19.2ms) commit transaction
2502
+ Redirected to http://robo-development.local:3000/admin/ecm_cms_core_folders/3
2503
+ Completed 302 Found in 55ms (ActiveRecord: 0.0ms)
2504
+
2505
+
2506
+ Started GET "/admin/ecm_cms_core_folders/3" for 192.168.0.37 at 2012-04-04 15:33:19 +0200
2507
+ Processing by Admin::EcmCmsCoreFoldersController#show as HTML
2508
+ Parameters: {"id"=>"3"}
2509
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2510
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = ? ORDER BY lft LIMIT 1 [["id", "3"]]
2511
+ Ecm::CmsCore::Folder Load (1.1ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft LIMIT 1
2512
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."folder_id" = 3
2513
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/show.html.arb (23.2ms)
2514
+ Completed 200 OK in 34ms (Views: 25.0ms | ActiveRecord: 1.9ms)
2515
+
2516
+
2517
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:33:19 +0200
2518
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2519
+
2520
+
2521
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:19 +0200
2522
+ Served asset /active_admin.css - 304 Not Modified (35ms)
2523
+
2524
+
2525
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:19 +0200
2526
+ Served asset /active_admin/print.css - 304 Not Modified (1ms)
2527
+
2528
+
2529
+ Started GET "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-04-04 15:33:20 +0200
2530
+ Processing by Admin::EcmCmsCoreTemplatesController#index as HTML
2531
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2532
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count 
2533
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates"
2534
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 'f')
2535
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 't')
2536
+ Ecm::CmsCore::Template Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_templates" LIMIT 1 OFFSET 0
2537
+ CACHE (0.0ms) SELECT COUNT(*) FROM "ecm_cms_core_templates"
2538
+ CACHE (0.0ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count 
2539
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" ORDER BY "ecm_cms_core_templates"."id" desc LIMIT 30 OFFSET 0
2540
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 2 ORDER BY lft LIMIT 1
2541
+ Ecm::CmsCore::Folder Load (0.5ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
2542
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/index.html.arb (451.5ms)
2543
+ Completed 200 OK in 461ms (Views: 453.0ms | ActiveRecord: 1.8ms)
2544
+
2545
+
2546
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:21 +0200
2547
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2548
+
2549
+
2550
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:21 +0200
2551
+ Served asset /active_admin.css - 304 Not Modified (27ms)
2552
+
2553
+
2554
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:33:21 +0200
2555
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2556
+
2557
+
2558
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-04-04 15:33:22 +0200
2559
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
2560
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2561
+ Ecm::CmsCore::Folder Load (0.7ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
2562
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" >= 1 AND "ecm_cms_core_folders"."rgt" <= 4) ORDER BY "lft"
2563
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" <= 2 AND "ecm_cms_core_folders"."rgt" >= 3) AND ("ecm_cms_core_folders".id != 3)
2564
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in buttons at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:30)
2565
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in commit_button at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:36)
2566
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/new.html.arb (90.1ms)
2567
+ Completed 200 OK in 143ms (Views: 138.4ms | ActiveRecord: 1.4ms)
2568
+
2569
+
2570
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:22 +0200
2571
+ Served asset /active_admin.css - 304 Not Modified (12ms)
2572
+
2573
+
2574
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:33:22 +0200
2575
+ Served asset /active_admin.js - 304 Not Modified (1ms)
2576
+
2577
+
2578
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:22 +0200
2579
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2580
+
2581
+
2582
+ Started POST "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-04-04 15:33:33 +0200
2583
+ Processing by Admin::EcmCmsCoreTemplatesController#create as HTML
2584
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "ecm_cms_core_template"=>{"folder_id"=>"3", "basename"=>"index", "title"=>"index", "meta_description"=>"index", "body"=>"", "layout"=>"", "locale"=>"en", "format"=>"html", "handler"=>"erb", "partial"=>"0"}, "commit"=>"Create Template"}
2585
+ AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2586
+  (0.1ms) begin transaction
2587
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY lft LIMIT 1
2588
+ Ecm::CmsCore::Template Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_templates" WHERE ("ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."folder_id" = 3) LIMIT 1
2589
+ SQL (0.7ms) INSERT INTO "ecm_cms_core_templates" ("basename", "body", "created_at", "folder_id", "format", "handler", "layout", "locale", "meta_description", "partial", "pathname", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["basename", "index"], ["body", ""], ["created_at", Wed, 04 Apr 2012 13:33:33 UTC +00:00], ["folder_id", 3], ["format", "html"], ["handler", "erb"], ["layout", ""], ["locale", "en"], ["meta_description", "index"], ["partial", false], ["pathname", "en/home/"], ["title", "index"], ["updated_at", Wed, 04 Apr 2012 13:33:33 UTC +00:00]]
2590
+ SQL (0.1ms) UPDATE "ecm_cms_core_folders" SET "templates_count" = COALESCE("templates_count", 0) + 1 WHERE "ecm_cms_core_folders"."id" IN (SELECT "ecm_cms_core_folders"."id" FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY lft)
2591
+  (15.2ms) commit transaction
2592
+ Redirected to http://robo-development.local:3000/admin/ecm_cms_core_templates/3
2593
+ Completed 302 Found in 38ms (ActiveRecord: 0.0ms)
2594
+
2595
+
2596
+ Started GET "/admin/ecm_cms_core_templates/3" for 192.168.0.37 at 2012-04-04 15:33:33 +0200
2597
+ Processing by Admin::EcmCmsCoreTemplatesController#show as HTML
2598
+ Parameters: {"id"=>"3"}
2599
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2600
+ Ecm::CmsCore::Template Load (0.1ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? LIMIT 1 [["id", "3"]]
2601
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY lft LIMIT 1
2602
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/show.html.arb (23.4ms)
2603
+ Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.8ms)
2604
+
2605
+
2606
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:34 +0200
2607
+ Served asset /active_admin/print.css - 304 Not Modified (8ms)
2608
+
2609
+
2610
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:34 +0200
2611
+ Served asset /active_admin.css - 304 Not Modified (32ms)
2612
+
2613
+
2614
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:33:34 +0200
2615
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2616
+
2617
+
2618
+ Started GET "/" for 192.168.0.37 at 2012-04-04 15:33:38 +0200
2619
+
2620
+
2621
+ Started GET "/en" for 192.168.0.37 at 2012-04-04 15:33:38 +0200
2622
+ Processing by Ecm::CmsCore::PageController#respond as HTML
2623
+ Parameters: {"page"=>"home/index", "i18n_locale"=>"en"}
2624
+ pathname: enhome/
2625
+ basename: index
2626
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'enhome/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
2627
+ Ecm::CmsCore::Template Load (0.4ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/home/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder', 'arb') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
2628
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/layouts/ecm/cms_core/' AND "ecm_cms_core_templates"."basename" = 'page' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder', 'arb') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
2629
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/layouts/' AND "ecm_cms_core_templates"."basename" = 'frontend' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder', 'arb') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
2630
+ Rendered Template - 3 - "en/home/" within layouts/application (0.3ms)
2631
+ Compiled application.css (69ms) (pid 12433)
2632
+ Compiled application.js (37ms) (pid 12433)
2633
+ Completed 200 OK in 279ms (Views: 276.5ms | ActiveRecord: 1.2ms)
2634
+
2635
+
2636
+ Started GET "/assets/application.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:38 +0200
2637
+ Served asset /application.css - 200 OK (110ms)
2638
+
2639
+
2640
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2641
+ Served asset /jquery.js - 200 OK (13ms)
2642
+
2643
+
2644
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2645
+ Served asset /active_admin.css - 304 Not Modified (75ms)
2646
+
2647
+
2648
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2649
+ Served asset /jquery_ujs.js - 200 OK (17ms)
2650
+
2651
+
2652
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2653
+ Served asset /jquery-ui.js - 200 OK (24ms)
2654
+
2655
+
2656
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2657
+ Served asset /active_admin/application.js - 200 OK (17ms)
2658
+
2659
+
2660
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2661
+ Served asset /active_admin/base.js - 200 OK (113ms)
2662
+
2663
+
2664
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2665
+ Served asset /active_admin.js - 200 OK (17ms)
2666
+
2667
+
2668
+ Started GET "/assets/application.js?body=1" for 192.168.0.37 at 2012-04-04 15:33:39 +0200
2669
+ Served asset /application.js - 200 OK (46ms)
2670
+
2671
+
2672
+ Started GET "/admin/ecm_cms_core_templates/3/edit" for 192.168.0.37 at 2012-04-04 15:34:33 +0200
2673
+ Processing by Admin::EcmCmsCoreTemplatesController#edit as HTML
2674
+ Parameters: {"id"=>"3"}
2675
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2676
+ Ecm::CmsCore::Template Load (0.1ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? LIMIT 1 [["id", "3"]]
2677
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
2678
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" >= 1 AND "ecm_cms_core_folders"."rgt" <= 4) ORDER BY "lft"
2679
+  (0.3ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE ("ecm_cms_core_folders"."lft" <= 2 AND "ecm_cms_core_folders"."rgt" >= 3) AND ("ecm_cms_core_folders".id != 3)
2680
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY lft LIMIT 1
2681
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in buttons at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:30)
2682
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block in commit_button at /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/lib/active_admin/form_builder.rb:36)
2683
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/edit.html.arb (164.3ms)
2684
+ Completed 200 OK in 172ms (Views: 165.8ms | ActiveRecord: 1.6ms)
2685
+
2686
+
2687
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:34:34 +0200
2688
+ Served asset /active_admin.css - 304 Not Modified (32ms)
2689
+
2690
+
2691
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:34:34 +0200
2692
+ Served asset /active_admin/print.css - 304 Not Modified (0ms)
2693
+
2694
+
2695
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:34:34 +0200
2696
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2697
+
2698
+
2699
+ Started PUT "/admin/ecm_cms_core_templates/3" for 192.168.0.37 at 2012-04-04 15:34:39 +0200
2700
+ Processing by Admin::EcmCmsCoreTemplatesController#update as HTML
2701
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JB7MGR6bTv1ufLru4fdtqEpjnssdWxtd7a8hYG/OZPs=", "ecm_cms_core_template"=>{"folder_id"=>"3", "basename"=>"index", "title"=>"index", "meta_description"=>"index", "body"=>"index", "layout"=>"", "locale"=>"en", "format"=>"html", "handler"=>"erb", "partial"=>"0"}, "commit"=>"Update Template", "id"=>"3"}
2702
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2703
+ Ecm::CmsCore::Template Load (0.1ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? LIMIT 1 [["id", "3"]]
2704
+  (0.0ms) begin transaction
2705
+ Ecm::CmsCore::Folder Load (0.1ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY lft LIMIT 1
2706
+ Ecm::CmsCore::Template Exists (0.1ms) SELECT 1 FROM "ecm_cms_core_templates" WHERE ("ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."id" != 3 AND "ecm_cms_core_templates"."folder_id" = 3) LIMIT 1
2707
+  (0.5ms) UPDATE "ecm_cms_core_templates" SET "body" = 'index', "updated_at" = '2012-04-04 13:34:39.288384' WHERE "ecm_cms_core_templates"."id" = 3
2708
+  (34.9ms) commit transaction
2709
+ Redirected to http://robo-development.local:3000/admin/ecm_cms_core_templates/3
2710
+ Completed 302 Found in 104ms (ActiveRecord: 0.0ms)
2711
+
2712
+
2713
+ Started GET "/admin/ecm_cms_core_templates/3" for 192.168.0.37 at 2012-04-04 15:34:39 +0200
2714
+ Processing by Admin::EcmCmsCoreTemplatesController#show as HTML
2715
+ Parameters: {"id"=>"3"}
2716
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
2717
+ Ecm::CmsCore::Template Load (0.1ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."id" = ? LIMIT 1 [["id", "3"]]
2718
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."id" = 3 ORDER BY lft LIMIT 1
2719
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@rails3.2/bundler/gems/active_admin-302501c32301/app/views/active_admin/resource/show.html.arb (23.5ms)
2720
+ Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.6ms)
2721
+
2722
+
2723
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:34:39 +0200
2724
+ Served asset /active_admin.css - 304 Not Modified (16ms)
2725
+
2726
+
2727
+ Started GET "/assets/active_admin/print.css?body=1" for 192.168.0.37 at 2012-04-04 15:34:39 +0200
2728
+ Served asset /active_admin/print.css - 304 Not Modified (2ms)
2729
+
2730
+
2731
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-04-04 15:34:39 +0200
2732
+ Served asset /active_admin.js - 304 Not Modified (0ms)
2733
+
2734
+
2735
+ Started GET "/en" for 192.168.0.37 at 2012-04-04 15:34:40 +0200
2736
+ Processing by Ecm::CmsCore::PageController#respond as HTML
2737
+ Parameters: {"page"=>"home/index", "i18n_locale"=>"en"}
2738
+ pathname: enhome/
2739
+ basename: index
2740
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'enhome/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' LIMIT 1
2741
+ Ecm::CmsCore::Template Load (0.3ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/home/' AND "ecm_cms_core_templates"."basename" = 'index' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder', 'arb') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
2742
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/layouts/ecm/cms_core/' AND "ecm_cms_core_templates"."basename" = 'page' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder', 'arb') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
2743
+ Ecm::CmsCore::Template Load (0.2ms) SELECT "ecm_cms_core_templates".* FROM "ecm_cms_core_templates" WHERE "ecm_cms_core_templates"."pathname" = 'en/layouts/' AND "ecm_cms_core_templates"."basename" = 'frontend' AND "ecm_cms_core_templates"."locale" = 'en' AND "ecm_cms_core_templates"."handler" IN ('erb', 'builder', 'arb') AND "ecm_cms_core_templates"."partial" = 'f' AND (format = 'html' OR format = '') ORDER BY format DESC
2744
+ Rendered Template - 3 - "en/home/" within layouts/application (0.9ms)
2745
+ Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.9ms)
2746
+
2747
+
2748
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-04-04 15:34:40 +0200
2749
+ Served asset /active_admin.css - 304 Not Modified (23ms)
2750
+
2751
+
2752
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-04-04 15:34:40 +0200
2753
+ Served asset /jquery.js - 304 Not Modified (0ms)
2754
+
2755
+
2756
+ Started GET "/assets/application.css?body=1" for 192.168.0.37 at 2012-04-04 15:34:40 +0200
2757
+ Served asset /application.css - 304 Not Modified (90ms)
2758
+
2759
+
2760
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-04-04 15:34:40 +0200
2761
+ Served asset /jquery-ui.js - 304 Not Modified (3ms)
2762
+
2763
+
2764
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-04-04 15:34:40 +0200
2765
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2766
+
2767
+
2768
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-04-04 15:34:41 +0200
2769
+ Served asset /active_admin/application.js - 304 Not Modified (0ms)
2770
+
2771
+
2772
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-04-04 15:34:41 +0200
2773
+ Served asset /active_admin/base.js - 304 Not Modified (9ms)
2774
+
2775
+
2776
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-04-04 15:34:41 +0200
2777
+ Served asset /active_admin.js - 304 Not Modified (12ms)
2778
+
2779
+
2780
+ Started GET "/assets/application.js?body=1" for 192.168.0.37 at 2012-04-04 15:34:41 +0200
2781
+ Served asset /application.js - 304 Not Modified (5ms)
2782
+ Connecting to database specified by database.yml
2783
+ Connecting to database specified by database.yml
2784
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
2785
+ Connecting to database specified by database.yml
2786
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
2787
+ Connecting to database specified by database.yml
2788
+ DEPRECATION WARNING: Calling set_table_name is deprecated. Please use `self.table_name = 'the_name'` instead. (called from <class:Folder> at /home/robo/rails/ecm_cms_core-rails-3-2/app/models/ecm/cms_core/folder.rb:4)
2789
+
2790
+
2791
+ Started GET "/admin" for 192.168.0.37 at 2012-06-22 20:53:27 +0200
2792
+ Processing by Admin::DashboardController#index as HTML
2793
+ Completed 401 Unauthorized in 3ms
2794
+
2795
+
2796
+ Started GET "/admin/login" for 192.168.0.37 at 2012-06-22 20:53:27 +0200
2797
+ Processing by ActiveAdmin::Devise::SessionsController#new as HTML
2798
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
2799
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
2800
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/shared/_links.erb (1.3ms)
2801
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (355.7ms)
2802
+ Compiled active_admin.css (2127ms) (pid 11618)
2803
+ Compiled jquery.js (52ms) (pid 11618)
2804
+ Compiled jquery-ui.js (7ms) (pid 11618)
2805
+ Compiled jquery_ujs.js (0ms) (pid 11618)
2806
+ Compiled active_admin/application.js (0ms) (pid 11618)
2807
+ Compiled active_admin/base.js (205ms) (pid 11618)
2808
+ Compiled active_admin.js (222ms) (pid 11618)
2809
+ Completed 200 OK in 3089ms (Views: 3045.7ms | ActiveRecord: 0.2ms)
2810
+
2811
+
2812
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 20:53:30 +0200
2813
+ Served asset /active_admin.css - 200 OK (21ms)
2814
+
2815
+
2816
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:30 +0200
2817
+ Served asset /jquery.js - 304 Not Modified (6ms)
2818
+
2819
+
2820
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:30 +0200
2821
+ Served asset /jquery-ui.js - 304 Not Modified (30ms)
2822
+
2823
+
2824
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:30 +0200
2825
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
2826
+
2827
+
2828
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:30 +0200
2829
+ Served asset /active_admin/application.js - 200 OK (94ms)
2830
+
2831
+
2832
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:30 +0200
2833
+ Served asset /active_admin/base.js - 200 OK (55ms)
2834
+
2835
+
2836
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:30 +0200
2837
+ Served asset /active_admin.js - 200 OK (71ms)
2838
+
2839
+
2840
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:31 +0200
2841
+ Served asset /jquery.js - 304 Not Modified (0ms)
2842
+
2843
+
2844
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:31 +0200
2845
+ Served asset /jquery-ui.js - 304 Not Modified (1ms)
2846
+
2847
+
2848
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:32 +0200
2849
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2850
+
2851
+
2852
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:32 +0200
2853
+ Served asset /active_admin/application.js - 304 Not Modified (1ms)
2854
+
2855
+
2856
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:32 +0200
2857
+ Served asset /active_admin/base.js - 304 Not Modified (2ms)
2858
+
2859
+
2860
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 20:53:32 +0200
2861
+ Served asset /active_admin.js - 200 OK (8ms)
2862
+ Connecting to database specified by database.yml
2863
+ Connecting to database specified by database.yml
2864
+ Connecting to database specified by database.yml
2865
+  (0.2ms) select sqlite_version(*)
2866
+  (32.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2867
+  (0.1ms) PRAGMA index_list("schema_migrations")
2868
+  (14.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2869
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
2870
+ Migrating to DeviseCreateAdminUsers (20120404132409)
2871
+  (0.0ms) begin transaction
2872
+  (1.6ms) CREATE TABLE "admin_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) 
2873
+ AdminUser Exists (0.2ms) SELECT 1 AS one FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1
2874
+ Binary data inserted for `string` type on column `encrypted_password`
2875
+ SQL (4.7ms) INSERT INTO "admin_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", Fri, 22 Jun 2012 19:06:39 UTC +00:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$LLVRrDH4OGQ87OPzt5C0ney2XGKoOfy/qKngdxH6OAm6sX7gcYSlO"], ["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", Fri, 22 Jun 2012 19:06:39 UTC +00:00]]
2876
+  (0.0ms) PRAGMA index_list("admin_users")
2877
+  (0.5ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")
2878
+  (0.0ms) PRAGMA index_list("admin_users")
2879
+  (0.0ms) PRAGMA index_info('index_admin_users_on_email')
2880
+  (0.2ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")
2881
+  (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404132409')
2882
+  (33.1ms) commit transaction
2883
+ Migrating to CreateAdminNotes (20120404152418)
2884
+  (0.1ms) begin transaction
2885
+  (0.8ms) CREATE TABLE "admin_notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "admin_user_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2886
+  (0.0ms) PRAGMA index_list("admin_notes")
2887
+  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")
2888
+  (0.0ms) PRAGMA index_list("admin_notes")
2889
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
2890
+  (0.2ms) CREATE INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id" ON "admin_notes" ("admin_user_type", "admin_user_id")
2891
+  (9.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404152418')
2892
+  (16.8ms) commit transaction
2893
+ Migrating to MoveAdminNotesToComments (20120404152419)
2894
+  (0.1ms) begin transaction
2895
+  (0.1ms) PRAGMA index_list("admin_notes")
2896
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_admin_user_type_and_admin_user_id')
2897
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
2898
+  (0.5ms) DROP INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id"
2899
+  (12.7ms) ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"
2900
+  (0.5ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2901
+  (0.0ms) PRAGMA index_list("active_admin_comments")
2902
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
2903
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
2904
+  (0.2ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")
2905
+  (0.1ms) SELECT * FROM "active_admin_comments"
2906
+  (1.1ms) DROP TABLE "active_admin_comments"
2907
+  (0.2ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2908
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
2909
+  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')
2910
+  (0.0ms) PRAGMA index_list("active_admin_comments")
2911
+  (0.2ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")
2912
+  (0.1ms) SELECT * FROM "altered_active_admin_comments"
2913
+  (0.4ms) DROP TABLE "altered_active_admin_comments"
2914
+  (0.4ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2915
+  (7.5ms) PRAGMA index_list("active_admin_comments")
2916
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
2917
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
2918
+  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")
2919
+  (0.5ms) SELECT * FROM "active_admin_comments"
2920
+  (0.4ms) DROP TABLE "active_admin_comments"
2921
+  (0.2ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2922
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
2923
+  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')
2924
+  (0.0ms) PRAGMA index_list("active_admin_comments")
2925
+  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")
2926
+  (0.1ms) SELECT * FROM "altered_active_admin_comments"
2927
+  (0.3ms) DROP TABLE "altered_active_admin_comments"
2928
+  (0.2ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)
2929
+  (0.0ms) PRAGMA index_list("active_admin_comments")
2930
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
2931
+  (0.1ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")
2932
+  (0.0ms) PRAGMA index_list("active_admin_comments")
2933
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')
2934
+  (0.1ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
2935
+  (0.1ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")
2936
+  (0.0ms) UPDATE active_admin_comments SET namespace='admin'
2937
+  (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120404152419')
2938
+  (25.1ms) commit transaction
2939
+ Migrating to CreateEcmCmsCoreFolders (20120622190618)
2940
+  (0.1ms) begin transaction
2941
+  (1.3ms) CREATE TABLE "ecm_cms_core_folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "basename" varchar(255), "pathname" varchar(255), "lft" integer, "rgt" integer, "depth" integer, "children_count" integer DEFAULT 0, "templates_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2942
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120622190618')
2943
+  (16.1ms) commit transaction
2944
+ Migrating to CreateEcmCmsCoreTemplates (20120622190619)
2945
+  (0.1ms) begin transaction
2946
+  (1.0ms) CREATE TABLE "ecm_cms_core_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "pathname" varchar(255), "basename" varchar(255), "title" varchar(255), "meta_description" text, "body" text, "layout" varchar(255), "locale" varchar(255), "format" varchar(255), "handler" varchar(255), "partial" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2947
+  (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120622190619')
2948
+  (25.6ms) commit transaction
2949
+  (0.6ms) select sqlite_version(*)
2950
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2951
+  (0.0ms) PRAGMA index_list("active_admin_comments")
2952
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')
2953
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')
2954
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
2955
+  (0.0ms) PRAGMA index_list("admin_users")
2956
+  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')
2957
+  (0.0ms) PRAGMA index_info('index_admin_users_on_email')
2958
+  (0.0ms) PRAGMA index_list("ecm_cms_core_folders")
2959
+  (0.0ms) PRAGMA index_list("ecm_cms_core_templates")
2960
+ Connecting to database specified by database.yml
2961
+
2962
+
2963
+ Started GET "/admin" for 192.168.0.37 at 2012-06-22 21:07:31 +0200
2964
+ Processing by Admin::DashboardController#index as HTML
2965
+ Completed 401 Unauthorized in 2ms
2966
+
2967
+
2968
+ Started GET "/admin/login" for 192.168.0.37 at 2012-06-22 21:07:31 +0200
2969
+ Processing by ActiveAdmin::Devise::SessionsController#new as HTML
2970
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
2971
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
2972
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/shared/_links.erb (1.4ms)
2973
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (423.4ms)
2974
+ Completed 200 OK in 757ms (Views: 736.0ms | ActiveRecord: 0.2ms)
2975
+
2976
+
2977
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:07:32 +0200
2978
+ Served asset /active_admin.css - 200 OK (20ms)
2979
+
2980
+
2981
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:32 +0200
2982
+ Served asset /jquery.js - 304 Not Modified (12ms)
2983
+
2984
+
2985
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:32 +0200
2986
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2987
+
2988
+
2989
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:32 +0200
2990
+ Served asset /jquery-ui.js - 304 Not Modified (32ms)
2991
+
2992
+
2993
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:32 +0200
2994
+ Served asset /active_admin/application.js - 304 Not Modified (10ms)
2995
+
2996
+
2997
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:32 +0200
2998
+ Served asset /active_admin/base.js - 304 Not Modified (150ms)
2999
+
3000
+
3001
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:33 +0200
3002
+ Served asset /active_admin.js - 200 OK (69ms)
3003
+
3004
+
3005
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:33 +0200
3006
+ Served asset /jquery.js - 304 Not Modified (1ms)
3007
+
3008
+
3009
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:33 +0200
3010
+ Served asset /jquery-ui.js - 304 Not Modified (2ms)
3011
+
3012
+
3013
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:33 +0200
3014
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3015
+
3016
+
3017
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:33 +0200
3018
+ Served asset /active_admin/application.js - 304 Not Modified (0ms)
3019
+
3020
+
3021
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:33 +0200
3022
+ Served asset /active_admin/base.js - 304 Not Modified (6ms)
3023
+
3024
+
3025
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:07:33 +0200
3026
+ Served asset /active_admin.js - 200 OK (2ms)
3027
+ Connecting to database specified by database.yml
3028
+
3029
+
3030
+ Started GET "/admin/login" for 192.168.0.37 at 2012-06-22 21:09:29 +0200
3031
+ Processing by ActiveAdmin::Devise::SessionsController#new as HTML
3032
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
3033
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
3034
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/shared/_links.erb (1.3ms)
3035
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (414.6ms)
3036
+ Completed 200 OK in 647ms (Views: 634.5ms | ActiveRecord: 0.1ms)
3037
+
3038
+
3039
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3040
+ Served asset /active_admin.css - 200 OK (54ms)
3041
+
3042
+
3043
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3044
+ Served asset /jquery.js - 304 Not Modified (14ms)
3045
+
3046
+
3047
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3048
+ Served asset /jquery-ui.js - 304 Not Modified (27ms)
3049
+
3050
+
3051
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3052
+ Served asset /jquery_ujs.js - 304 Not Modified (15ms)
3053
+
3054
+
3055
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3056
+ Served asset /active_admin/application.js - 304 Not Modified (2ms)
3057
+
3058
+
3059
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3060
+ Served asset /active_admin/base.js - 304 Not Modified (55ms)
3061
+
3062
+
3063
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3064
+ Served asset /active_admin.js - 200 OK (54ms)
3065
+
3066
+
3067
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3068
+ Served asset /jquery.js - 304 Not Modified (1ms)
3069
+
3070
+
3071
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:30 +0200
3072
+ Served asset /jquery-ui.js - 304 Not Modified (1ms)
3073
+
3074
+
3075
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:31 +0200
3076
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3077
+
3078
+
3079
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:31 +0200
3080
+ Served asset /active_admin/application.js - 304 Not Modified (0ms)
3081
+
3082
+
3083
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:31 +0200
3084
+ Served asset /active_admin/base.js - 304 Not Modified (7ms)
3085
+
3086
+
3087
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:09:31 +0200
3088
+ Served asset /active_admin.js - 200 OK (10ms)
3089
+ Connecting to database specified by database.yml
3090
+ Connecting to database specified by database.yml
3091
+ Connecting to database specified by database.yml
3092
+ Connecting to database specified by database.yml
3093
+ Connecting to database specified by database.yml
3094
+  (0.2ms) select sqlite_version(*)
3095
+  (45.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3096
+  (0.1ms) PRAGMA index_list("schema_migrations")
3097
+  (14.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3098
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
3099
+ Migrating to DeviseCreateAdminUsers (20120622191421)
3100
+  (0.0ms) begin transaction
3101
+  (2.3ms) CREATE TABLE "admin_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) 
3102
+ AdminUser Exists (0.1ms) SELECT 1 AS one FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1
3103
+ Binary data inserted for `string` type on column `encrypted_password`
3104
+ SQL (0.7ms) INSERT INTO "admin_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", Fri, 22 Jun 2012 21:15:30 CEST +02:00], ["current_sign_in_at", nil], ["current_sign_in_ip", nil], ["email", "admin@example.com"], ["encrypted_password", "$2a$10$iKo4uBjZh4RkF7DGd8hFyuvTw0gXd7nuwIKk.kqFsH7JCH4jxTqua"], ["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", Fri, 22 Jun 2012 21:15:30 CEST +02:00]]
3105
+  (0.0ms) PRAGMA index_list("admin_users")
3106
+  (0.3ms) CREATE UNIQUE INDEX "index_admin_users_on_email" ON "admin_users" ("email")
3107
+  (0.0ms) PRAGMA index_list("admin_users")
3108
+  (0.0ms) PRAGMA index_info('index_admin_users_on_email')
3109
+  (0.2ms) CREATE UNIQUE INDEX "index_admin_users_on_reset_password_token" ON "admin_users" ("reset_password_token")
3110
+  (0.9ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120622191421')
3111
+  (36.5ms) commit transaction
3112
+ Migrating to CreateAdminNotes (20120622211430)
3113
+  (0.1ms) begin transaction
3114
+  (0.4ms) CREATE TABLE "admin_notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "admin_user_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3115
+  (0.0ms) PRAGMA index_list("admin_notes")
3116
+  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "admin_notes" ("resource_type", "resource_id")
3117
+  (0.0ms) PRAGMA index_list("admin_notes")
3118
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
3119
+  (0.2ms) CREATE INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id" ON "admin_notes" ("admin_user_type", "admin_user_id")
3120
+  (3.3ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120622211430')
3121
+  (15.9ms) commit transaction
3122
+ Migrating to MoveAdminNotesToComments (20120622211431)
3123
+  (0.3ms) begin transaction
3124
+  (0.1ms) PRAGMA index_list("admin_notes")
3125
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_admin_user_type_and_admin_user_id')
3126
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
3127
+  (0.4ms) DROP INDEX "index_admin_notes_on_admin_user_type_and_admin_user_id"
3128
+  (0.2ms) ALTER TABLE "admin_notes" RENAME TO "active_admin_comments"
3129
+  (0.8ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3130
+  (0.0ms) PRAGMA index_list("active_admin_comments")
3131
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
3132
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
3133
+  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")
3134
+  (0.3ms) SELECT * FROM "active_admin_comments"
3135
+  (0.4ms) DROP TABLE "active_admin_comments"
3136
+  (0.1ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "admin_user_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
3137
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
3138
+  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')
3139
+  (0.0ms) PRAGMA index_list("active_admin_comments")
3140
+  (8.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")
3141
+  (0.1ms) SELECT * FROM "altered_active_admin_comments"
3142
+  (0.5ms) DROP TABLE "altered_active_admin_comments"
3143
+  (0.3ms) CREATE TEMPORARY TABLE "altered_active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3144
+  (0.0ms) PRAGMA index_list("active_admin_comments")
3145
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
3146
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
3147
+  (0.1ms) CREATE INDEX "temp_index_admin_notes_on_resource_type_and_resource_id" ON "altered_active_admin_comments" ("resource_type", "resource_id")
3148
+  (0.8ms) SELECT * FROM "active_admin_comments"
3149
+  (0.3ms) DROP TABLE "active_admin_comments"
3150
+  (0.2ms) CREATE TABLE "active_admin_comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "resource_id" varchar(255) NOT NULL, "resource_type" varchar(255) NOT NULL, "author_id" integer, "author_type" varchar(255), "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
3151
+  (0.0ms) PRAGMA index_list("altered_active_admin_comments")
3152
+  (0.0ms) PRAGMA index_info('temp_index_admin_notes_on_resource_type_and_resource_id')
3153
+  (0.0ms) PRAGMA index_list("active_admin_comments")
3154
+  (0.1ms) CREATE INDEX "index_admin_notes_on_resource_type_and_resource_id" ON "active_admin_comments" ("resource_type", "resource_id")
3155
+  (4.2ms) SELECT * FROM "altered_active_admin_comments"
3156
+  (0.2ms) DROP TABLE "altered_active_admin_comments"
3157
+  (0.2ms) ALTER TABLE "active_admin_comments" ADD "namespace" varchar(255)
3158
+  (0.0ms) PRAGMA index_list("active_admin_comments")
3159
+  (0.1ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
3160
+  (15.0ms) CREATE INDEX "index_active_admin_comments_on_namespace" ON "active_admin_comments" ("namespace")
3161
+  (0.0ms) PRAGMA index_list("active_admin_comments")
3162
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')
3163
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
3164
+  (0.1ms) CREATE INDEX "index_active_admin_comments_on_author_type_and_author_id" ON "active_admin_comments" ("author_type", "author_id")
3165
+  (0.1ms) UPDATE active_admin_comments SET namespace='admin'
3166
+  (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120622211431')
3167
+  (22.7ms) commit transaction
3168
+ Migrating to CreateEcmCmsCoreFolders (20120622211432)
3169
+  (0.1ms) begin transaction
3170
+  (0.3ms) CREATE TABLE "ecm_cms_core_folders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer, "basename" varchar(255), "pathname" varchar(255), "lft" integer, "rgt" integer, "depth" integer, "children_count" integer DEFAULT 0, "templates_count" integer DEFAULT 0, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3171
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120622211432')
3172
+  (22.1ms) commit transaction
3173
+ Migrating to CreateEcmCmsCoreTemplates (20120622211433)
3174
+  (0.1ms) begin transaction
3175
+  (0.6ms) CREATE TABLE "ecm_cms_core_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "folder_id" integer, "pathname" varchar(255), "basename" varchar(255), "title" varchar(255), "meta_description" text, "body" text, "layout" varchar(255), "locale" varchar(255), "format" varchar(255), "handler" varchar(255), "partial" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3176
+  (4.7ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120622211433')
3177
+  (25.1ms) commit transaction
3178
+  (0.5ms) select sqlite_version(*)
3179
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3180
+  (0.0ms) PRAGMA index_list("active_admin_comments")
3181
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_author_type_and_author_id')
3182
+  (0.0ms) PRAGMA index_info('index_active_admin_comments_on_namespace')
3183
+  (0.0ms) PRAGMA index_info('index_admin_notes_on_resource_type_and_resource_id')
3184
+  (0.1ms) PRAGMA index_list("admin_users")
3185
+  (0.0ms) PRAGMA index_info('index_admin_users_on_reset_password_token')
3186
+  (0.0ms) PRAGMA index_info('index_admin_users_on_email')
3187
+  (0.0ms) PRAGMA index_list("ecm_cms_core_folders")
3188
+  (0.0ms) PRAGMA index_list("ecm_cms_core_templates")
3189
+ Connecting to database specified by database.yml
3190
+
3191
+
3192
+ Started GET "/admin/login" for 192.168.0.37 at 2012-06-22 21:15:51 +0200
3193
+ Processing by ActiveAdmin::Devise::SessionsController#new as HTML
3194
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
3195
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
3196
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/shared/_links.erb (1.7ms)
3197
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (365.3ms)
3198
+ Completed 200 OK in 666ms (Views: 652.3ms | ActiveRecord: 0.4ms)
3199
+
3200
+
3201
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3202
+ Served asset /active_admin.css - 200 OK (59ms)
3203
+
3204
+
3205
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3206
+ Served asset /jquery.js - 304 Not Modified (14ms)
3207
+
3208
+
3209
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3210
+ Served asset /jquery-ui.js - 304 Not Modified (40ms)
3211
+
3212
+
3213
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3214
+ Served asset /jquery_ujs.js - 304 Not Modified (10ms)
3215
+
3216
+
3217
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3218
+ Served asset /active_admin/application.js - 304 Not Modified (8ms)
3219
+
3220
+
3221
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3222
+ Served asset /active_admin/base.js - 304 Not Modified (75ms)
3223
+
3224
+
3225
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3226
+ Served asset /active_admin.js - 200 OK (104ms)
3227
+
3228
+
3229
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:52 +0200
3230
+ Served asset /jquery.js - 304 Not Modified (1ms)
3231
+
3232
+
3233
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:53 +0200
3234
+ Served asset /jquery-ui.js - 304 Not Modified (1ms)
3235
+
3236
+
3237
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:53 +0200
3238
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
3239
+
3240
+
3241
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:53 +0200
3242
+ Served asset /active_admin/application.js - 304 Not Modified (1ms)
3243
+
3244
+
3245
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:53 +0200
3246
+ Served asset /active_admin/base.js - 304 Not Modified (2ms)
3247
+
3248
+
3249
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:15:53 +0200
3250
+ Served asset /active_admin.js - 200 OK (10ms)
3251
+
3252
+
3253
+ Started GET "/admin/login" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3254
+ Processing by ActiveAdmin::Devise::SessionsController#new as HTML
3255
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
3256
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from realtime at /home/robo/.rvm/rubies/ruby-1.9.2-p136/lib/ruby/1.9.1/benchmark.rb:309)
3257
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/shared/_links.erb (0.4ms)
3258
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/devise/sessions/new.html.erb within layouts/active_admin_logged_out (61.7ms)
3259
+ Completed 200 OK in 156ms (Views: 155.6ms | ActiveRecord: 0.0ms)
3260
+
3261
+
3262
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3263
+ Served asset /active_admin.css - 200 OK (11ms)
3264
+
3265
+
3266
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3267
+ Served asset /jquery.js - 200 OK (6ms)
3268
+
3269
+
3270
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3271
+ Served asset /active_admin.js - 200 OK (7ms)
3272
+
3273
+
3274
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3275
+ Served asset /jquery-ui.js - 200 OK (7ms)
3276
+
3277
+
3278
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3279
+ Served asset /jquery_ujs.js - 200 OK (0ms)
3280
+
3281
+
3282
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3283
+ Served asset /active_admin/application.js - 200 OK (0ms)
3284
+
3285
+
3286
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:08 +0200
3287
+ Served asset /active_admin/base.js - 200 OK (11ms)
3288
+
3289
+
3290
+ Started GET "/assets/jquery.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:09 +0200
3291
+ Served asset /jquery.js - 200 OK (1ms)
3292
+
3293
+
3294
+ Started GET "/assets/jquery-ui.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:09 +0200
3295
+ Served asset /jquery-ui.js - 200 OK (1ms)
3296
+
3297
+
3298
+ Started GET "/assets/jquery_ujs.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:10 +0200
3299
+ Served asset /jquery_ujs.js - 200 OK (0ms)
3300
+
3301
+
3302
+ Started GET "/assets/active_admin/application.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:10 +0200
3303
+ Served asset /active_admin/application.js - 200 OK (0ms)
3304
+
3305
+
3306
+ Started GET "/assets/active_admin/base.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:10 +0200
3307
+ Served asset /active_admin/base.js - 200 OK (7ms)
3308
+
3309
+
3310
+ Started GET "/assets/active_admin.js?body=1" for 192.168.0.37 at 2012-06-22 21:16:10 +0200
3311
+ Served asset /active_admin.js - 200 OK (2ms)
3312
+
3313
+
3314
+ Started POST "/admin/login" for 192.168.0.37 at 2012-06-22 21:16:16 +0200
3315
+ Processing by ActiveAdmin::Devise::SessionsController#create as HTML
3316
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Q/033+Wv5NMkxdPbTecHdJOt65gQpIwGWsYc3PdRmCI=", "admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Login"}
3317
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."email" = 'admin@example.com' LIMIT 1
3318
+  (0.4ms) begin transaction
3319
+  (1.7ms) UPDATE "admin_users" SET "last_sign_in_at" = '2012-06-22 19:16:16.863058', "current_sign_in_at" = '2012-06-22 19:16:16.863058', "last_sign_in_ip" = '192.168.0.37', "current_sign_in_ip" = '192.168.0.37', "sign_in_count" = 1, "updated_at" = '2012-06-22 19:16:16.864594' WHERE "admin_users"."id" = 1
3320
+  (17.5ms) commit transaction
3321
+ Redirected to http://192.168.0.38:3000/admin
3322
+ Completed 302 Found in 286ms (ActiveRecord: 0.0ms)
3323
+
3324
+
3325
+ Started GET "/admin" for 192.168.0.37 at 2012-06-22 21:16:16 +0200
3326
+ Processing by Admin::DashboardController#index as HTML
3327
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3328
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/dashboard/index.html.arb (125.2ms)
3329
+ Completed 200 OK in 142ms (Views: 137.5ms | ActiveRecord: 0.3ms)
3330
+
3331
+
3332
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:16:17 +0200
3333
+ Served asset /active_admin.js - 200 OK (40ms)
3334
+
3335
+
3336
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:16:17 +0200
3337
+ Served asset /active_admin.css - 200 OK (23ms)
3338
+
3339
+
3340
+ Started GET "/admin" for 192.168.0.37 at 2012-06-22 21:16:24 +0200
3341
+ Processing by Admin::DashboardController#index as HTML
3342
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3343
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/dashboard/index.html.arb (83.1ms)
3344
+ Completed 200 OK in 90ms (Views: 88.7ms | ActiveRecord: 0.2ms)
3345
+
3346
+
3347
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:16:24 +0200
3348
+ Served asset /active_admin.css - 200 OK (45ms)
3349
+
3350
+
3351
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:16:24 +0200
3352
+ Served asset /active_admin.js - 200 OK (3ms)
3353
+
3354
+
3355
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:16:25 +0200
3356
+ Served asset /active_admin.js - 200 OK (3ms)
3357
+
3358
+
3359
+ Started GET "/assets/active_admin/nested_menu_arrow.gif" for 192.168.0.37 at 2012-06-22 21:16:25 +0200
3360
+ Served asset /active_admin/nested_menu_arrow.gif - 200 OK (9ms)
3361
+
3362
+
3363
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:16:29 +0200
3364
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (10ms)
3365
+ Connecting to database specified by database.yml
3366
+
3367
+
3368
+ Started GET "/admin" for 192.168.0.37 at 2012-06-22 21:17:58 +0200
3369
+ Processing by Admin::DashboardController#index as HTML
3370
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3371
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/dashboard/index.html.arb (146.4ms)
3372
+ Completed 200 OK in 263ms (Views: 216.7ms | ActiveRecord: 0.7ms)
3373
+
3374
+
3375
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:17:58 +0200
3376
+ Served asset /active_admin.css - 200 OK (29ms)
3377
+
3378
+
3379
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:17:58 +0200
3380
+ Served asset /active_admin.js - 200 OK (82ms)
3381
+
3382
+
3383
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:17:59 +0200
3384
+ Served asset /active_admin.js - 200 OK (2ms)
3385
+
3386
+
3387
+ Started GET "/assets/active_admin/nested_menu_arrow.gif" for 192.168.0.37 at 2012-06-22 21:17:59 +0200
3388
+ Served asset /active_admin/nested_menu_arrow.gif - 200 OK (3ms)
3389
+ Connecting to database specified by database.yml
3390
+ Connecting to database specified by database.yml
3391
+
3392
+
3393
+ Started GET "/admin" for 192.168.0.37 at 2012-06-22 21:25:28 +0200
3394
+ Processing by Admin::DashboardController#index as HTML
3395
+ AdminUser Load (0.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3396
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/dashboard/index.html.arb (160.7ms)
3397
+ Completed 200 OK in 281ms (Views: 233.8ms | ActiveRecord: 1.1ms)
3398
+
3399
+
3400
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:25:29 +0200
3401
+ Served asset /active_admin.css - 200 OK (22ms)
3402
+
3403
+
3404
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:25:29 +0200
3405
+ Served asset /active_admin.js - 200 OK (54ms)
3406
+
3407
+
3408
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:25:29 +0200
3409
+ Served asset /active_admin.js - 200 OK (4ms)
3410
+
3411
+
3412
+ Started GET "/assets/active_admin/nested_menu_arrow.gif" for 192.168.0.37 at 2012-06-22 21:25:30 +0200
3413
+ Served asset /active_admin/nested_menu_arrow.gif - 200 OK (3ms)
3414
+
3415
+
3416
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:25:31 +0200
3417
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (38ms)
3418
+
3419
+
3420
+ Started GET "/admin" for 192.168.0.37 at 2012-06-22 21:29:29 +0200
3421
+ Processing by Admin::DashboardController#index as HTML
3422
+ AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3423
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/dashboard/index.html.arb (117.6ms)
3424
+ Completed 200 OK in 143ms (Views: 121.7ms | ActiveRecord: 0.5ms)
3425
+
3426
+
3427
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:29:30 +0200
3428
+ Served asset /active_admin.css - 200 OK (11ms)
3429
+
3430
+
3431
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:30 +0200
3432
+ Served asset /active_admin.js - 200 OK (2ms)
3433
+
3434
+
3435
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:30 +0200
3436
+ Served asset /active_admin.js - 200 OK (3ms)
3437
+
3438
+
3439
+ Started GET "/assets/active_admin/nested_menu_arrow.gif" for 192.168.0.37 at 2012-06-22 21:29:30 +0200
3440
+ Served asset /active_admin/nested_menu_arrow.gif - 200 OK (0ms)
3441
+
3442
+
3443
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:29:31 +0200
3444
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3445
+
3446
+
3447
+ Started GET "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-06-22 21:29:33 +0200
3448
+ Processing by Admin::EcmCmsCoreTemplatesController#index as HTML
3449
+ AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3450
+  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count
3451
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" 
3452
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 'f')
3453
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 't')
3454
+ Ecm::CmsCore::Template Exists (0.1ms) SELECT 1 AS one FROM "ecm_cms_core_templates" LIMIT 1 OFFSET 0
3455
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
3456
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/index.html.arb (919.7ms)
3457
+ Completed 200 OK in 958ms (Views: 923.0ms | ActiveRecord: 1.7ms)
3458
+
3459
+
3460
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:34 +0200
3461
+ Served asset /active_admin.js - 200 OK (2ms)
3462
+
3463
+
3464
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:29:34 +0200
3465
+ Served asset /active_admin.css - 200 OK (18ms)
3466
+
3467
+
3468
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:35 +0200
3469
+ Served asset /active_admin.js - 200 OK (2ms)
3470
+
3471
+
3472
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:29:36 +0200
3473
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3474
+
3475
+
3476
+ Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.0.37 at 2012-06-22 21:29:36 +0200
3477
+ Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (7ms)
3478
+
3479
+
3480
+ Started GET "/admin/ecm_cms_core_folders" for 192.168.0.37 at 2012-06-22 21:29:37 +0200
3481
+ Processing by Admin::EcmCmsCoreFoldersController#index as HTML
3482
+ AdminUser Load (0.5ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3483
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_folders" LIMIT 30 OFFSET 0) subquery_for_count 
3484
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_folders"
3485
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL
3486
+ Ecm::CmsCore::Folder Exists (0.1ms) SELECT 1 AS one FROM "ecm_cms_core_folders" LIMIT 1 OFFSET 0
3487
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
3488
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/index.html.arb (352.8ms)
3489
+ Completed 200 OK in 362ms (Views: 356.0ms | ActiveRecord: 1.4ms)
3490
+
3491
+
3492
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:29:38 +0200
3493
+ Served asset /active_admin.css - 200 OK (12ms)
3494
+
3495
+
3496
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:38 +0200
3497
+ Served asset /active_admin.js - 200 OK (2ms)
3498
+
3499
+
3500
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:38 +0200
3501
+ Served asset /active_admin.js - 200 OK (2ms)
3502
+
3503
+
3504
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:29:39 +0200
3505
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3506
+
3507
+
3508
+ Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.0.37 at 2012-06-22 21:29:39 +0200
3509
+ Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (0ms)
3510
+
3511
+
3512
+ Started GET "/admin/ecm_cms_core_templates" for 192.168.0.37 at 2012-06-22 21:29:41 +0200
3513
+ Processing by Admin::EcmCmsCoreTemplatesController#index as HTML
3514
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3515
+  (0.3ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_templates" LIMIT 30 OFFSET 0) subquery_for_count 
3516
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates"
3517
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 'f')
3518
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_templates" WHERE (partial = 't')
3519
+ Ecm::CmsCore::Template Exists (0.1ms) SELECT 1 AS one FROM "ecm_cms_core_templates" LIMIT 1 OFFSET 0
3520
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
3521
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/index.html.arb (417.8ms)
3522
+ Completed 200 OK in 422ms (Views: 419.1ms | ActiveRecord: 1.2ms)
3523
+
3524
+
3525
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:29:42 +0200
3526
+ Served asset /active_admin.css - 200 OK (12ms)
3527
+
3528
+
3529
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:42 +0200
3530
+ Served asset /active_admin.js - 200 OK (2ms)
3531
+
3532
+
3533
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:42 +0200
3534
+ Served asset /active_admin.js - 200 OK (3ms)
3535
+
3536
+
3537
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:29:43 +0200
3538
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3539
+
3540
+
3541
+ Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.0.37 at 2012-06-22 21:29:43 +0200
3542
+ Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (0ms)
3543
+
3544
+
3545
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:29:44 +0200
3546
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3547
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3548
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3549
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:23)
3550
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:23)
3551
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (285.4ms)
3552
+ Completed 200 OK in 304ms (Views: 287.7ms | ActiveRecord: 0.5ms)
3553
+
3554
+
3555
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:45 +0200
3556
+ Served asset /active_admin.js - 200 OK (2ms)
3557
+
3558
+
3559
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:29:45 +0200
3560
+ Served asset /active_admin.css - 200 OK (17ms)
3561
+
3562
+
3563
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:29:45 +0200
3564
+ Served asset /active_admin.js - 200 OK (9ms)
3565
+
3566
+
3567
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:29:46 +0200
3568
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (1ms)
3569
+ Connecting to database specified by database.yml
3570
+
3571
+
3572
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:47:47 +0200
3573
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3574
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3575
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3576
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:23)
3577
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:23)
3578
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (651.3ms)
3579
+ Completed 200 OK in 805ms (Views: 719.8ms | ActiveRecord: 1.4ms)
3580
+
3581
+
3582
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:47:48 +0200
3583
+ Served asset /active_admin.css - 200 OK (23ms)
3584
+
3585
+
3586
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:47:48 +0200
3587
+ Served asset /active_admin.js - 200 OK (111ms)
3588
+
3589
+
3590
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:47:48 +0200
3591
+ Served asset /active_admin.js - 200 OK (2ms)
3592
+
3593
+
3594
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:47:49 +0200
3595
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (2ms)
3596
+
3597
+
3598
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:51:27 +0200
3599
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3600
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3601
+ Ecm::CmsCore::Folder Load (0.4ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3602
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3603
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3604
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (224.3ms)
3605
+ Completed 200 OK in 285ms (Views: 228.4ms | ActiveRecord: 1.5ms)
3606
+
3607
+
3608
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:51:28 +0200
3609
+ Served asset /active_admin.css - 200 OK (12ms)
3610
+
3611
+
3612
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:51:28 +0200
3613
+ Served asset /active_admin.js - 200 OK (3ms)
3614
+
3615
+
3616
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:51:29 +0200
3617
+ Served asset /active_admin.js - 200 OK (2ms)
3618
+
3619
+
3620
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:51:29 +0200
3621
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3622
+
3623
+
3624
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:52:55 +0200
3625
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3626
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3627
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3628
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3629
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3630
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (178.9ms)
3631
+ Completed 200 OK in 223ms (Views: 182.5ms | ActiveRecord: 1.1ms)
3632
+
3633
+
3634
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:52:55 +0200
3635
+ Served asset /active_admin.css - 200 OK (11ms)
3636
+
3637
+
3638
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:52:55 +0200
3639
+ Served asset /active_admin.js - 200 OK (2ms)
3640
+
3641
+
3642
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:52:56 +0200
3643
+ Served asset /active_admin.js - 200 OK (39ms)
3644
+
3645
+
3646
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:52:57 +0200
3647
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3648
+
3649
+
3650
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:55:29 +0200
3651
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3652
+ AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3653
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3654
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3655
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3656
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (184.6ms)
3657
+ Completed 200 OK in 229ms (Views: 187.5ms | ActiveRecord: 1.1ms)
3658
+
3659
+
3660
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:55:30 +0200
3661
+ Served asset /active_admin.css - 200 OK (12ms)
3662
+
3663
+
3664
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:55:30 +0200
3665
+ Served asset /active_admin.js - 200 OK (5ms)
3666
+
3667
+
3668
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:55:31 +0200
3669
+ Served asset /active_admin.js - 200 OK (4ms)
3670
+
3671
+
3672
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:55:31 +0200
3673
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3674
+
3675
+
3676
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:55:45 +0200
3677
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3678
+ AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3679
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3680
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3681
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3682
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (226.7ms)
3683
+ Completed 200 OK in 352ms (Views: 230.0ms | ActiveRecord: 1.1ms)
3684
+
3685
+
3686
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:55:46 +0200
3687
+ Served asset /active_admin.css - 200 OK (11ms)
3688
+
3689
+
3690
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:55:46 +0200
3691
+ Served asset /active_admin.js - 200 OK (2ms)
3692
+
3693
+
3694
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:55:46 +0200
3695
+ Served asset /active_admin.js - 200 OK (2ms)
3696
+
3697
+
3698
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:55:47 +0200
3699
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3700
+
3701
+
3702
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:58:03 +0200
3703
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3704
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3705
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3706
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3707
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3708
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (198.7ms)
3709
+ Completed 200 OK in 256ms (Views: 202.5ms | ActiveRecord: 1.2ms)
3710
+
3711
+
3712
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:58:03 +0200
3713
+ Served asset /active_admin.css - 200 OK (101ms)
3714
+
3715
+
3716
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:58:03 +0200
3717
+ Served asset /active_admin.js - 200 OK (2ms)
3718
+
3719
+
3720
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:58:04 +0200
3721
+ Served asset /active_admin.js - 200 OK (2ms)
3722
+
3723
+
3724
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:58:05 +0200
3725
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3726
+
3727
+
3728
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 21:58:26 +0200
3729
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3730
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3731
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3732
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3733
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3734
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (197.4ms)
3735
+ Completed 200 OK in 311ms (Views: 201.5ms | ActiveRecord: 1.2ms)
3736
+
3737
+
3738
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:58:27 +0200
3739
+ Served asset /active_admin.js - 200 OK (3ms)
3740
+
3741
+
3742
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 21:58:27 +0200
3743
+ Served asset /active_admin.css - 200 OK (15ms)
3744
+
3745
+
3746
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 21:58:28 +0200
3747
+ Served asset /active_admin.js - 200 OK (2ms)
3748
+
3749
+
3750
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 21:58:28 +0200
3751
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3752
+ Connecting to database specified by database.yml
3753
+
3754
+
3755
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 22:07:43 +0200
3756
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3757
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3758
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3759
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3760
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:25)
3761
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (689.0ms)
3762
+ Completed 200 OK in 888ms (Views: 773.3ms | ActiveRecord: 1.7ms)
3763
+
3764
+
3765
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 22:07:45 +0200
3766
+ Served asset /active_admin.css - 200 OK (22ms)
3767
+
3768
+
3769
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:07:45 +0200
3770
+ Served asset /active_admin.js - 200 OK (83ms)
3771
+
3772
+
3773
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:07:45 +0200
3774
+ Served asset /active_admin.js - 200 OK (2ms)
3775
+
3776
+
3777
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 22:07:46 +0200
3778
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (2ms)
3779
+
3780
+
3781
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 22:12:45 +0200
3782
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3783
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3784
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3785
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:26)
3786
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:26)
3787
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (199.2ms)
3788
+ Completed 200 OK in 258ms (Views: 203.2ms | ActiveRecord: 1.2ms)
3789
+
3790
+
3791
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 22:12:45 +0200
3792
+ Served asset /active_admin.css - 200 OK (12ms)
3793
+
3794
+
3795
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:12:45 +0200
3796
+ Served asset /active_admin.js - 200 OK (4ms)
3797
+
3798
+
3799
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:12:46 +0200
3800
+ Served asset /active_admin.js - 200 OK (2ms)
3801
+
3802
+
3803
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 22:12:47 +0200
3804
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3805
+
3806
+
3807
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 22:17:17 +0200
3808
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3809
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3810
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3811
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:26)
3812
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:26)
3813
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (198.0ms)
3814
+ Completed 200 OK in 260ms (Views: 202.4ms | ActiveRecord: 1.6ms)
3815
+
3816
+
3817
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 22:17:18 +0200
3818
+ Served asset /active_admin.css - 200 OK (61ms)
3819
+
3820
+
3821
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:17:18 +0200
3822
+ Served asset /active_admin.js - 200 OK (3ms)
3823
+
3824
+
3825
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:17:19 +0200
3826
+ Served asset /active_admin.js - 200 OK (2ms)
3827
+
3828
+
3829
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 22:17:20 +0200
3830
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3831
+
3832
+
3833
+ Started GET "/admin/ecm_cms_core_templates/new" for 192.168.0.37 at 2012-06-22 22:17:40 +0200
3834
+ Processing by Admin::EcmCmsCoreTemplatesController#new as HTML
3835
+ AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3836
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3837
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:26)
3838
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/templates.rb:26)
3839
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (206.3ms)
3840
+ Completed 200 OK in 335ms (Views: 210.0ms | ActiveRecord: 1.2ms)
3841
+
3842
+
3843
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 22:17:41 +0200
3844
+ Served asset /active_admin.css - 200 OK (11ms)
3845
+
3846
+
3847
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:17:41 +0200
3848
+ Served asset /active_admin.js - 200 OK (7ms)
3849
+
3850
+
3851
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:17:41 +0200
3852
+ Served asset /active_admin.js - 200 OK (3ms)
3853
+
3854
+
3855
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 22:17:42 +0200
3856
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3857
+
3858
+
3859
+ Started GET "/admin/ecm_cms_core_folders" for 192.168.0.37 at 2012-06-22 22:23:48 +0200
3860
+ Processing by Admin::EcmCmsCoreFoldersController#index as HTML
3861
+ AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3862
+  (0.2ms) SELECT COUNT(count_column) FROM (SELECT 1 AS count_column FROM "ecm_cms_core_folders" LIMIT 30 OFFSET 0) subquery_for_count
3863
+  (0.1ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" 
3864
+  (0.2ms) SELECT COUNT(*) FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL
3865
+ Ecm::CmsCore::Folder Exists (0.1ms) SELECT 1 AS one FROM "ecm_cms_core_folders" LIMIT 1 OFFSET 0
3866
+ Ecm::CmsCore::Folder Load (0.2ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" ORDER BY lft
3867
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/index.html.arb (464.6ms)
3868
+ Completed 200 OK in 539ms (Views: 467.4ms | ActiveRecord: 2.1ms)
3869
+
3870
+
3871
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 22:23:49 +0200
3872
+ Served asset /active_admin.css - 200 OK (11ms)
3873
+
3874
+
3875
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:23:49 +0200
3876
+ Served asset /active_admin.js - 200 OK (3ms)
3877
+
3878
+
3879
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:23:49 +0200
3880
+ Served asset /active_admin.js - 200 OK (4ms)
3881
+
3882
+
3883
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 22:23:50 +0200
3884
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)
3885
+
3886
+
3887
+ Started GET "/assets/active_admin/datepicker/datepicker-input-icon.png" for 192.168.0.37 at 2012-06-22 22:23:50 +0200
3888
+ Served asset /active_admin/datepicker/datepicker-input-icon.png - 200 OK (2ms)
3889
+
3890
+
3891
+ Started GET "/admin/ecm_cms_core_folders/new" for 192.168.0.37 at 2012-06-22 22:23:55 +0200
3892
+ Processing by Admin::EcmCmsCoreFoldersController#new as HTML
3893
+ AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE "admin_users"."id" = 1 LIMIT 1
3894
+ Ecm::CmsCore::Folder Load (0.3ms) SELECT "ecm_cms_core_folders".* FROM "ecm_cms_core_folders" WHERE "ecm_cms_core_folders"."parent_id" IS NULL ORDER BY lft, "lft"
3895
+ DEPRECATION WARNING: f.buttons is deprecated in favour of f.actions and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/folders.rb:15)
3896
+ DEPRECATION WARNING: f.commit_button is deprecated in favour of f.action(:submit) and will be removed from Formtastic after 2.1. Please see ActionsHelper and InputAction or ButtonAction for more information. (called from block (2 levels) in <top (required)> at /home/robo/rails/ecm_cms_core-rails-3-2/app/admin/ecm/ecm_core/folders.rb:15)
3897
+ Rendered /home/robo/.rvm/gems/ruby-1.9.2-p136@ecm_cms_core-rails-3-2/gems/activeadmin-0.4.4/app/views/active_admin/resource/new.html.arb (165.9ms)
3898
+ Completed 200 OK in 185ms (Views: 168.7ms | ActiveRecord: 0.5ms)
3899
+
3900
+
3901
+ Started GET "/assets/active_admin.css?body=1" for 192.168.0.37 at 2012-06-22 22:23:55 +0200
3902
+ Served asset /active_admin.css - 200 OK (56ms)
3903
+
3904
+
3905
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:23:55 +0200
3906
+ Served asset /active_admin.js - 200 OK (3ms)
3907
+
3908
+
3909
+ Started GET "/assets/active_admin.js" for 192.168.0.37 at 2012-06-22 22:23:56 +0200
3910
+ Served asset /active_admin.js - 200 OK (2ms)
3911
+
3912
+
3913
+ Started GET "/assets/active_admin/nested_menu_arrow_dark.gif" for 192.168.0.37 at 2012-06-22 22:23:56 +0200
3914
+ Served asset /active_admin/nested_menu_arrow_dark.gif - 200 OK (0ms)