gettext_rails 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (352) hide show
  1. data/COPYING +55 -0
  2. data/ChangeLog +4 -0
  3. data/README.rdoc +173 -0
  4. data/Rakefile +113 -0
  5. data/data/locale/bg/LC_MESSAGES/gettext_rails.mo +0 -0
  6. data/data/locale/bs/LC_MESSAGES/gettext_rails.mo +0 -0
  7. data/data/locale/ca/LC_MESSAGES/gettext_rails.mo +0 -0
  8. data/data/locale/cs/LC_MESSAGES/gettext_rails.mo +0 -0
  9. data/data/locale/de/LC_MESSAGES/gettext_rails.mo +0 -0
  10. data/data/locale/el/LC_MESSAGES/gettext_rails.mo +0 -0
  11. data/data/locale/eo/LC_MESSAGES/gettext_rails.mo +0 -0
  12. data/data/locale/es/LC_MESSAGES/gettext_rails.mo +0 -0
  13. data/data/locale/et/LC_MESSAGES/gettext_rails.mo +0 -0
  14. data/data/locale/fr/LC_MESSAGES/gettext_rails.mo +0 -0
  15. data/data/locale/hr/LC_MESSAGES/gettext_rails.mo +0 -0
  16. data/data/locale/hu/LC_MESSAGES/gettext_rails.mo +0 -0
  17. data/data/locale/it/LC_MESSAGES/gettext_rails.mo +0 -0
  18. data/data/locale/ja/LC_MESSAGES/gettext_rails.mo +0 -0
  19. data/data/locale/ko/LC_MESSAGES/gettext_rails.mo +0 -0
  20. data/data/locale/lv/LC_MESSAGES/gettext_rails.mo +0 -0
  21. data/data/locale/nb/LC_MESSAGES/gettext_rails.mo +0 -0
  22. data/data/locale/nl/LC_MESSAGES/gettext_rails.mo +0 -0
  23. data/data/locale/pt_BR/LC_MESSAGES/gettext_rails.mo +0 -0
  24. data/data/locale/ru/LC_MESSAGES/gettext_rails.mo +0 -0
  25. data/data/locale/sr/LC_MESSAGES/gettext_rails.mo +0 -0
  26. data/data/locale/ua/LC_MESSAGES/gettext_rails.mo +0 -0
  27. data/data/locale/vi/LC_MESSAGES/gettext_rails.mo +0 -0
  28. data/data/locale/zh/LC_MESSAGES/gettext_rails.mo +0 -0
  29. data/data/locale/zh_TW/LC_MESSAGES/gettext_rails.mo +0 -0
  30. data/lib/gettext_rails.rb +33 -0
  31. data/lib/gettext_rails/action_controller.rb +104 -0
  32. data/lib/gettext_rails/action_mailer.rb +45 -0
  33. data/lib/gettext_rails/action_view.rb +16 -0
  34. data/lib/gettext_rails/action_view/active_record_helper.rb +109 -0
  35. data/lib/gettext_rails/action_view/date_helper.rb +48 -0
  36. data/lib/gettext_rails/action_view/form_builder.rb +26 -0
  37. data/lib/gettext_rails/tools.rb +22 -0
  38. data/lib/gettext_rails/version.rb +14 -0
  39. data/po/bg/gettext_rails.po +89 -0
  40. data/po/bs/gettext_rails.po +98 -0
  41. data/po/ca/gettext_rails.po +90 -0
  42. data/po/cs/gettext_rails.po +102 -0
  43. data/po/de/gettext_rails.po +94 -0
  44. data/po/el/gettext_rails.po +89 -0
  45. data/po/eo/gettext_rails.po +90 -0
  46. data/po/es/gettext_rails.po +90 -0
  47. data/po/et/gettext_rails.po +90 -0
  48. data/po/fr/gettext_rails.po +94 -0
  49. data/po/gettext_rails.pot +87 -0
  50. data/po/hr/gettext_rails.po +99 -0
  51. data/po/hu/gettext_rails.po +90 -0
  52. data/po/it/gettext_rails.po +89 -0
  53. data/po/ja/gettext_rails.po +90 -0
  54. data/po/ko/gettext_rails.po +87 -0
  55. data/po/lv/gettext_rails.po +95 -0
  56. data/po/nb/gettext_rails.po +91 -0
  57. data/po/nl/gettext_rails.po +91 -0
  58. data/po/pt_BR/gettext_rails.po +91 -0
  59. data/po/ru/gettext_rails.po +98 -0
  60. data/po/sr/gettext_rails.po +98 -0
  61. data/po/test.rb +11 -0
  62. data/po/ua/gettext_rails.po +104 -0
  63. data/po/vi/gettext_rails.po +90 -0
  64. data/po/zh/gettext_rails.po +86 -0
  65. data/po/zh_TW/gettext_rails.po +86 -0
  66. data/replace.rb +21 -0
  67. data/sample/README +80 -0
  68. data/sample/Rakefile +11 -0
  69. data/sample/app/controllers/application_controller.rb +37 -0
  70. data/sample/app/controllers/articles_controller.rb +97 -0
  71. data/sample/app/helpers/application_helper.rb +3 -0
  72. data/sample/app/helpers/articles_helper.rb +60 -0
  73. data/sample/app/models/article.rb +16 -0
  74. data/sample/app/views/articles/edit.html.erb +22 -0
  75. data/sample/app/views/articles/index.html.erb +18 -0
  76. data/sample/app/views/articles/new.html.erb +20 -0
  77. data/sample/app/views/articles/show.html.erb +7 -0
  78. data/sample/app/views/layouts/articles.html.erb +27 -0
  79. data/sample/config/boot.rb +109 -0
  80. data/sample/config/database.yml +22 -0
  81. data/sample/config/environment.rb +45 -0
  82. data/sample/config/environments/development.rb +17 -0
  83. data/sample/config/environments/production.rb +27 -0
  84. data/sample/config/environments/test.rb +27 -0
  85. data/sample/config/initializers/backtrace_silencers.rb +7 -0
  86. data/sample/config/initializers/inflections.rb +10 -0
  87. data/sample/config/initializers/mime_types.rb +5 -0
  88. data/sample/config/initializers/new_rails_defaults.rb +19 -0
  89. data/sample/config/initializers/session_store.rb +15 -0
  90. data/sample/config/routes.rb +45 -0
  91. data/sample/db/development.sqlite3 +0 -0
  92. data/sample/db/production.sqlite3 +0 -0
  93. data/sample/db/schema.rb +19 -0
  94. data/sample/db/test.sqlite3 +0 -0
  95. data/sample/doc/README_FOR_APP +2 -0
  96. data/sample/lib/tasks/gettext.rake +13 -0
  97. data/sample/locale/bg/LC_MESSAGES/blog.mo +0 -0
  98. data/sample/locale/bs/LC_MESSAGES/blog.mo +0 -0
  99. data/sample/locale/ca/LC_MESSAGES/blog.mo +0 -0
  100. data/sample/locale/cs/LC_MESSAGES/blog.mo +0 -0
  101. data/sample/locale/de/LC_MESSAGES/blog.mo +0 -0
  102. data/sample/locale/el/LC_MESSAGES/blog.mo +0 -0
  103. data/sample/locale/en/LC_MESSAGES/blog.mo +0 -0
  104. data/sample/locale/eo/LC_MESSAGES/blog.mo +0 -0
  105. data/sample/locale/es/LC_MESSAGES/blog.mo +0 -0
  106. data/sample/locale/fr/LC_MESSAGES/blog.mo +0 -0
  107. data/sample/locale/hr/LC_MESSAGES/blog.mo +0 -0
  108. data/sample/locale/hu/LC_MESSAGES/blog.mo +0 -0
  109. data/sample/locale/it/LC_MESSAGES/blog.mo +0 -0
  110. data/sample/locale/ja/LC_MESSAGES/blog.mo +0 -0
  111. data/sample/locale/ko/LC_MESSAGES/blog.mo +0 -0
  112. data/sample/locale/lv/LC_MESSAGES/blog.mo +0 -0
  113. data/sample/locale/nb/LC_MESSAGES/blog.mo +0 -0
  114. data/sample/locale/nl/LC_MESSAGES/blog.mo +0 -0
  115. data/sample/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  116. data/sample/locale/ru/LC_MESSAGES/blog.mo +0 -0
  117. data/sample/locale/sr/LC_MESSAGES/blog.mo +0 -0
  118. data/sample/locale/ua/LC_MESSAGES/blog.mo +0 -0
  119. data/sample/locale/vi/LC_MESSAGES/blog.mo +0 -0
  120. data/sample/locale/zh/LC_MESSAGES/blog.mo +0 -0
  121. data/sample/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
  122. data/sample/log/development.log +635 -0
  123. data/sample/log/production.log +79475 -0
  124. data/sample/log/test.log +1592 -0
  125. data/sample/po/bg/blog.po +101 -0
  126. data/sample/po/blog.pot +102 -0
  127. data/sample/po/bs/blog.po +103 -0
  128. data/sample/po/ca/blog.po +101 -0
  129. data/sample/po/cs/blog.po +104 -0
  130. data/sample/po/de/blog.po +104 -0
  131. data/sample/po/el/blog.po +102 -0
  132. data/sample/po/en/blog.po +103 -0
  133. data/sample/po/eo/blog.po +102 -0
  134. data/sample/po/eo/tmp.patch +21 -0
  135. data/sample/po/es/blog.po +101 -0
  136. data/sample/po/fr/blog.po +102 -0
  137. data/sample/po/hr/blog.po +102 -0
  138. data/sample/po/hu/blog.po +101 -0
  139. data/sample/po/it/blog.po +102 -0
  140. data/sample/po/ja/blog.po +101 -0
  141. data/sample/po/ko/blog.po +102 -0
  142. data/sample/po/lv/blog.po +103 -0
  143. data/sample/po/nb/blog.po +102 -0
  144. data/sample/po/nl/blog.po +102 -0
  145. data/sample/po/pt_BR/blog.po +102 -0
  146. data/sample/po/ru/blog.po +102 -0
  147. data/sample/po/sr/blog.po +103 -0
  148. data/sample/po/ua/blog.po +105 -0
  149. data/sample/po/vi/blog.po +102 -0
  150. data/sample/po/zh/blog.po +101 -0
  151. data/sample/po/zh_TW/blog.po +103 -0
  152. data/sample/public/404.html +30 -0
  153. data/sample/public/422.html +30 -0
  154. data/sample/public/500.html +33 -0
  155. data/sample/public/favicon.ico +0 -0
  156. data/sample/public/images/rails.png +0 -0
  157. data/sample/public/index.html +275 -0
  158. data/sample/public/javascripts/application.js +2 -0
  159. data/sample/public/javascripts/controls.js +963 -0
  160. data/sample/public/javascripts/dragdrop.js +973 -0
  161. data/sample/public/javascripts/effects.js +1128 -0
  162. data/sample/public/javascripts/prototype.js +4320 -0
  163. data/sample/public/robots.txt +5 -0
  164. data/sample/public/stylesheets/blog.css +136 -0
  165. data/sample/public/stylesheets/scaffold.css +54 -0
  166. data/sample/script/about +4 -0
  167. data/sample/script/console +3 -0
  168. data/sample/script/dbconsole +3 -0
  169. data/sample/script/destroy +3 -0
  170. data/sample/script/generate +3 -0
  171. data/sample/script/performance/benchmarker +3 -0
  172. data/sample/script/performance/profiler +3 -0
  173. data/sample/script/plugin +3 -0
  174. data/sample/script/runner +3 -0
  175. data/sample/script/server +3 -0
  176. data/sample/test/fixtures/articles.yml +11 -0
  177. data/sample/test/functional/articles_controller_test.rb +45 -0
  178. data/sample/test/performance/browsing_test.rb +9 -0
  179. data/sample/test/result/en/list.html +69 -0
  180. data/sample/test/test_helper.rb +38 -0
  181. data/sample/test/unit/article_test.rb +8 -0
  182. data/sample/test/unit/helpers/articles_helper_test.rb +4 -0
  183. data/sample/vendor/plugins/lang_helper/README +17 -0
  184. data/sample/vendor/plugins/lang_helper/Rakefile +17 -0
  185. data/sample/vendor/plugins/lang_helper/init.rb +21 -0
  186. data/sample/vendor/plugins/lang_helper/lib/lang_helper.rb +32 -0
  187. data/sample/vendor/plugins/lang_helper/locale/bg/LC_MESSAGES/lang_helper.mo +0 -0
  188. data/sample/vendor/plugins/lang_helper/locale/bs/LC_MESSAGES/lang_helper.mo +0 -0
  189. data/sample/vendor/plugins/lang_helper/locale/ca/LC_MESSAGES/lang_helper.mo +0 -0
  190. data/sample/vendor/plugins/lang_helper/locale/cs/LC_MESSAGES/lang_helper.mo +0 -0
  191. data/sample/vendor/plugins/lang_helper/locale/de/LC_MESSAGES/lang_helper.mo +0 -0
  192. data/sample/vendor/plugins/lang_helper/locale/el/LC_MESSAGES/lang_helper.mo +0 -0
  193. data/sample/vendor/plugins/lang_helper/locale/eo/LC_MESSAGES/lang_helper.mo +0 -0
  194. data/sample/vendor/plugins/lang_helper/locale/es/LC_MESSAGES/lang_helper.mo +0 -0
  195. data/sample/vendor/plugins/lang_helper/locale/fr/LC_MESSAGES/lang_helper.mo +0 -0
  196. data/sample/vendor/plugins/lang_helper/locale/hr/LC_MESSAGES/lang_helper.mo +0 -0
  197. data/sample/vendor/plugins/lang_helper/locale/hu/LC_MESSAGES/lang_helper.mo +0 -0
  198. data/sample/vendor/plugins/lang_helper/locale/it/LC_MESSAGES/lang_helper.mo +0 -0
  199. data/sample/vendor/plugins/lang_helper/locale/ja/LC_MESSAGES/lang_helper.mo +0 -0
  200. data/sample/vendor/plugins/lang_helper/locale/ko/LC_MESSAGES/lang_helper.mo +0 -0
  201. data/sample/vendor/plugins/lang_helper/locale/lv/LC_MESSAGES/lang_helper.mo +0 -0
  202. data/sample/vendor/plugins/lang_helper/locale/nb/LC_MESSAGES/lang_helper.mo +0 -0
  203. data/sample/vendor/plugins/lang_helper/locale/nl/LC_MESSAGES/lang_helper.mo +0 -0
  204. data/sample/vendor/plugins/lang_helper/locale/pt_BR/LC_MESSAGES/lang_helper.mo +0 -0
  205. data/sample/vendor/plugins/lang_helper/locale/ru/LC_MESSAGES/lang_helper.mo +0 -0
  206. data/sample/vendor/plugins/lang_helper/locale/sr/LC_MESSAGES/lang_helper.mo +0 -0
  207. data/sample/vendor/plugins/lang_helper/locale/ua/LC_MESSAGES/lang_helper.mo +0 -0
  208. data/sample/vendor/plugins/lang_helper/locale/vi/LC_MESSAGES/lang_helper.mo +0 -0
  209. data/sample/vendor/plugins/lang_helper/locale/zh/LC_MESSAGES/lang_helper.mo +0 -0
  210. data/sample/vendor/plugins/lang_helper/locale/zh_TW/LC_MESSAGES/lang_helper.mo +0 -0
  211. data/sample/vendor/plugins/lang_helper/po/bg/lang_helper.po +27 -0
  212. data/sample/vendor/plugins/lang_helper/po/bs/lang_helper.po +27 -0
  213. data/sample/vendor/plugins/lang_helper/po/ca/lang_helper.po +27 -0
  214. data/sample/vendor/plugins/lang_helper/po/cs/lang_helper.po +29 -0
  215. data/sample/vendor/plugins/lang_helper/po/de/lang_helper.po +29 -0
  216. data/sample/vendor/plugins/lang_helper/po/el/lang_helper.po +27 -0
  217. data/sample/vendor/plugins/lang_helper/po/eo/lang_helper.po +28 -0
  218. data/sample/vendor/plugins/lang_helper/po/es/lang_helper.po +28 -0
  219. data/sample/vendor/plugins/lang_helper/po/fr/lang_helper.po +27 -0
  220. data/sample/vendor/plugins/lang_helper/po/hr/lang_helper.po +27 -0
  221. data/sample/vendor/plugins/lang_helper/po/hu/lang_helper.po +27 -0
  222. data/sample/vendor/plugins/lang_helper/po/it/lang_helper.po +27 -0
  223. data/sample/vendor/plugins/lang_helper/po/ja/lang_helper.po +28 -0
  224. data/sample/vendor/plugins/lang_helper/po/ko/lang_helper.po +27 -0
  225. data/sample/vendor/plugins/lang_helper/po/lang_helper.pot +28 -0
  226. data/sample/vendor/plugins/lang_helper/po/lv/lang_helper.po +28 -0
  227. data/sample/vendor/plugins/lang_helper/po/nb/lang_helper.po +29 -0
  228. data/sample/vendor/plugins/lang_helper/po/nl/lang_helper.po +28 -0
  229. data/sample/vendor/plugins/lang_helper/po/pt_BR/lang_helper.po +27 -0
  230. data/sample/vendor/plugins/lang_helper/po/ru/lang_helper.po +25 -0
  231. data/sample/vendor/plugins/lang_helper/po/sr/lang_helper.po +28 -0
  232. data/sample/vendor/plugins/lang_helper/po/ua/lang_helper.po +30 -0
  233. data/sample/vendor/plugins/lang_helper/po/vi/lang_helper.po +27 -0
  234. data/sample/vendor/plugins/lang_helper/po/zh/lang_helper.po +27 -0
  235. data/sample/vendor/plugins/lang_helper/po/zh_TW/lang_helper.po +29 -0
  236. data/test/README +6 -0
  237. data/test/Rakefile +27 -0
  238. data/test/app/controllers/application_controller.rb +18 -0
  239. data/test/app/controllers/articles_controller.rb +114 -0
  240. data/test/app/controllers/mailers_controller.rb +18 -0
  241. data/test/app/controllers/users_controller.rb +19 -0
  242. data/test/app/helpers/application_helper.rb +3 -0
  243. data/test/app/helpers/articles_helper.rb +2 -0
  244. data/test/app/models/article.rb +9 -0
  245. data/test/app/models/human_resources/resume.rb +3 -0
  246. data/test/app/models/mailer.rb +38 -0
  247. data/test/app/models/user.rb +4 -0
  248. data/test/app/models/user_observer.rb +7 -0
  249. data/test/app/views/articles/_form.html.erb +13 -0
  250. data/test/app/views/articles/_form_fr.html.erb +1 -0
  251. data/test/app/views/articles/active_form_error.html.erb +1 -0
  252. data/test/app/views/articles/change_title_error_messages_for.html.erb +15 -0
  253. data/test/app/views/articles/edit.html.erb +9 -0
  254. data/test/app/views/articles/list.html.erb +25 -0
  255. data/test/app/views/articles/list_fr.html.erb +1 -0
  256. data/test/app/views/articles/multi_error_messages_for.html.erb +19 -0
  257. data/test/app/views/articles/new.html.erb +8 -0
  258. data/test/app/views/articles/show.html.erb +9 -0
  259. data/test/app/views/layouts/application.html.erb +16 -0
  260. data/test/app/views/layouts/mailers.html.erb +20 -0
  261. data/test/app/views/layouts/users.html.erb +14 -0
  262. data/test/app/views/mailer/coverpage.html.erb +6 -0
  263. data/test/app/views/mailer/coverpage_fr.html.erb +6 -0
  264. data/test/app/views/mailer/index.html.erb +1 -0
  265. data/test/app/views/mailer/singlepart.html.erb +3 -0
  266. data/test/app/views/mailer/singlepart_fr.html.erb +3 -0
  267. data/test/app/views/users/custom_error_message.html.erb +13 -0
  268. data/test/app/views/users/custom_error_message_fr.html.erb +13 -0
  269. data/test/app/views/users/distance_of_time_in_words.html.erb +18 -0
  270. data/test/config/boot.rb +109 -0
  271. data/test/config/database.yml +22 -0
  272. data/test/config/environment.rb +45 -0
  273. data/test/config/environments/development.rb +17 -0
  274. data/test/config/environments/production.rb +27 -0
  275. data/test/config/environments/test.rb +27 -0
  276. data/test/config/initializers/backtrace_silencers.rb +7 -0
  277. data/test/config/initializers/inflections.rb +10 -0
  278. data/test/config/initializers/mime_types.rb +5 -0
  279. data/test/config/initializers/new_rails_defaults.rb +19 -0
  280. data/test/config/initializers/session_store.rb +15 -0
  281. data/test/config/routes.rb +13 -0
  282. data/test/db/development.sqlite3 +0 -0
  283. data/test/db/schema.rb +45 -0
  284. data/test/db/test.sqlite3 +0 -0
  285. data/test/doc/README_FOR_APP +2 -0
  286. data/test/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
  287. data/test/log/development.log +1284 -0
  288. data/test/log/test.log +5595 -0
  289. data/test/po/ja/rails_test.po +206 -0
  290. data/test/po/rails_test.pot +206 -0
  291. data/test/public/404.html +30 -0
  292. data/test/public/422.html +30 -0
  293. data/test/public/500.html +33 -0
  294. data/test/public/favicon.ico +0 -0
  295. data/test/public/images/rails.png +0 -0
  296. data/test/public/index.html +28 -0
  297. data/test/public/javascripts/application.js +2 -0
  298. data/test/public/javascripts/controls.js +963 -0
  299. data/test/public/javascripts/dragdrop.js +973 -0
  300. data/test/public/javascripts/effects.js +1128 -0
  301. data/test/public/javascripts/prototype.js +4320 -0
  302. data/test/public/robots.txt +5 -0
  303. data/test/public/stylesheets/blog.css +136 -0
  304. data/test/public/stylesheets/scaffold.css +54 -0
  305. data/test/script/about +4 -0
  306. data/test/script/console +3 -0
  307. data/test/script/dbconsole +3 -0
  308. data/test/script/destroy +3 -0
  309. data/test/script/generate +3 -0
  310. data/test/script/performance/benchmarker +3 -0
  311. data/test/script/performance/profiler +3 -0
  312. data/test/script/plugin +3 -0
  313. data/test/script/runner +3 -0
  314. data/test/script/server +3 -0
  315. data/test/test/fixtures/articles.yml +13 -0
  316. data/test/test/functional/articles_controller_test.rb +97 -0
  317. data/test/test/functional/mailers_controller_test.rb +54 -0
  318. data/test/test/functional/users_controller_test.rb +47 -0
  319. data/test/test/performance/browsing_test.rb +9 -0
  320. data/test/test/result/en/change_title_error_messages_for.html +89 -0
  321. data/test/test/result/en/create_error.html +97 -0
  322. data/test/test/result/en/custom_error_message.html +84 -0
  323. data/test/test/result/en/custom_error_message_with_plural.html +84 -0
  324. data/test/test/result/en/distance_of_time_in_words.html +32 -0
  325. data/test/test/result/en/list.html +62 -0
  326. data/test/test/result/en/multi_error_messages_for.html +155 -0
  327. data/test/test/result/en/multipart.html +175 -0
  328. data/test/test/result/en/new.html +97 -0
  329. data/test/test/result/en/show.html +33 -0
  330. data/test/test/result/en/singlepart.html +10 -0
  331. data/test/test/result/fr/custom_error_message.html +84 -0
  332. data/test/test/result/fr/custom_error_message_with_plural.html +84 -0
  333. data/test/test/result/fr/distance_of_time_in_words.html +32 -0
  334. data/test/test/result/fr/list.html +17 -0
  335. data/test/test/result/fr/multipart.html +175 -0
  336. data/test/test/result/fr/new.html +25 -0
  337. data/test/test/result/fr/singlepart.html +10 -0
  338. data/test/test/result/ja/change_title_error_messages_for.html +89 -0
  339. data/test/test/result/ja/create_error.html +97 -0
  340. data/test/test/result/ja/custom_error_message.html +84 -0
  341. data/test/test/result/ja/custom_error_message_with_plural.html +84 -0
  342. data/test/test/result/ja/distance_of_time_in_words.html +32 -0
  343. data/test/test/result/ja/list.html +62 -0
  344. data/test/test/result/ja/multi_error_messages_for.html +155 -0
  345. data/test/test/result/ja/multipart.html +175 -0
  346. data/test/test/result/ja/new.html +97 -0
  347. data/test/test/result/ja/show.html +33 -0
  348. data/test/test/result/ja/singlepart.html +10 -0
  349. data/test/test/test_helper.rb +83 -0
  350. data/test/test/unit/article_test.rb +8 -0
  351. data/test/test/unit/helpers/articles_helper_test.rb +4 -0
  352. metadata +754 -0
@@ -0,0 +1,1592 @@
1
+ # Logfile created on Sun Mar 15 22:31:52 +0900 2009 SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
2
+
3
+
4
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:31:55) [POST]
5
+ Parameters: {"article"=>{}}
6
+ Rendering template within layouts/articles
7
+ Rendering articles/new
8
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
9
+ Completed in 299ms (View: 277, DB: 2) | 200 OK [http://test.host/articles?]
10
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
11
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
12
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
13
+
14
+
15
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:31:55) [DELETE]
16
+ Parameters: {"id"=>"953125641"}
17
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
18
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
19
+ Redirected to http://test.host/articles
20
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
21
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
22
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
23
+
24
+
25
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:31:55) [GET]
26
+ Parameters: {"id"=>"953125641"}
27
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
28
+ Rendering template within layouts/articles
29
+ Rendering articles/edit
30
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
31
+ Completed in 28ms (View: 24, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
32
+
33
+
34
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:31:55) [GET]
35
+ Article Load (0.5ms) SELECT * FROM "articles" 
36
+ Rendering template within layouts/articles
37
+ Rendering articles/index
38
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
39
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles]
40
+
41
+
42
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:31:55) [GET]
43
+ Rendering template within layouts/articles
44
+ Rendering articles/new
45
+ Article Load (0.7ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
46
+ Completed in 25ms (View: 22, DB: 1) | 200 OK [http://test.host/articles/new]
47
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
48
+
49
+
50
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:31:55) [GET]
51
+ Parameters: {"id"=>"953125641"}
52
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
53
+ Rendering template within layouts/articles
54
+ Rendering articles/show
55
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
56
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles/953125641]
57
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
58
+
59
+
60
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:31:55) [PUT]
61
+ Parameters: {"article"=>{}, "id"=>"953125641"}
62
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
63
+ Rendering template within layouts/articles
64
+ Rendering articles/edit
65
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
66
+ Completed in 35ms (View: 29, DB: 1) | 200 OK [http://test.host/articles/953125641?]
67
+ SQL (0.6ms) SELECT count(*) AS count_all FROM "articles" 
68
+
69
+
70
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:37:45) [POST]
71
+ Parameters: {"article"=>{}}
72
+ Rendering template within layouts/articles
73
+ Rendering articles/new
74
+ Article Load (1.7ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
75
+ Completed in 298ms (View: 276, DB: 4) | 200 OK [http://test.host/articles?]
76
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
77
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
78
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
79
+
80
+
81
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:37:46) [DELETE]
82
+ Parameters: {"id"=>"953125641"}
83
+ Article Load (0.7ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
84
+ Article Destroy (0.4ms) DELETE FROM "articles" WHERE "id" = 953125641
85
+ Redirected to http://test.host/articles
86
+ Completed in 7ms (DB: 2) | 302 Found [http://test.host/articles/953125641]
87
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
88
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
89
+
90
+
91
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:37:46) [GET]
92
+ Parameters: {"id"=>"953125641"}
93
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
94
+ Rendering template within layouts/articles
95
+ Rendering articles/edit
96
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
97
+ Completed in 48ms (View: 42, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
98
+
99
+
100
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:37:46) [GET]
101
+ Article Load (0.8ms) SELECT * FROM "articles" 
102
+ Rendering template within layouts/articles
103
+ Rendering articles/index
104
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
105
+ Completed in 34ms (View: 27, DB: 2) | 200 OK [http://test.host/articles]
106
+
107
+
108
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:37:46) [GET]
109
+ Rendering template within layouts/articles
110
+ Rendering articles/new
111
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
112
+ Completed in 43ms (View: 38, DB: 1) | 200 OK [http://test.host/articles/new]
113
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
114
+
115
+
116
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:37:46) [GET]
117
+ Parameters: {"id"=>"953125641"}
118
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
119
+ Rendering template within layouts/articles
120
+ Rendering articles/show
121
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
122
+ Completed in 33ms (View: 26, DB: 2) | 200 OK [http://test.host/articles/953125641]
123
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
124
+
125
+
126
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:37:46) [PUT]
127
+ Parameters: {"article"=>{}, "id"=>"953125641"}
128
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
129
+ Rendering template within layouts/articles
130
+ Rendering articles/edit
131
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
132
+ Completed in 59ms (View: 50, DB: 2) | 200 OK [http://test.host/articles/953125641?]
133
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
134
+
135
+
136
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:46:11) [POST]
137
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
138
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:46:11', 'AAAAAAAAAAA', '2009-03-15 13:46:11', 'BBBBBBBBBB')
139
+ Redirected to #<Article:0x7fa4db0f8548>
140
+ Completed in 35ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
141
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
142
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
143
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
144
+
145
+
146
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:46:11) [DELETE]
147
+ Parameters: {"id"=>"953125641"}
148
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
149
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
150
+ Redirected to http://test.host/articles
151
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
152
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
153
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
154
+
155
+
156
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:46:11) [GET]
157
+ Parameters: {"id"=>"953125641"}
158
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
159
+ Rendering template within layouts/articles
160
+ Rendering articles/edit
161
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
162
+ Completed in 164ms (View: 160, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
163
+
164
+
165
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:46:11) [GET]
166
+ Article Load (0.5ms) SELECT * FROM "articles" 
167
+ Rendering template within layouts/articles
168
+ Rendering articles/index
169
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
170
+ Completed in 21ms (View: 17, DB: 1) | 200 OK [http://test.host/articles]
171
+
172
+
173
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:46:12) [GET]
174
+ Rendering template within layouts/articles
175
+ Rendering articles/new
176
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
177
+ Completed in 26ms (View: 23, DB: 1) | 200 OK [http://test.host/articles/new]
178
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
179
+
180
+
181
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:46:12) [GET]
182
+ Parameters: {"id"=>"953125641"}
183
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
184
+ Rendering template within layouts/articles
185
+ Rendering articles/show
186
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
187
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles/953125641]
188
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
189
+
190
+
191
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:46:12) [PUT]
192
+ Parameters: {"article"=>{}, "id"=>"953125641"}
193
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
194
+ Rendering template within layouts/articles
195
+ Rendering articles/edit
196
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
197
+ Completed in 52ms (View: 43, DB: 1) | 200 OK [http://test.host/articles/953125641?]
198
+ SQL (0.6ms) SELECT count(*) AS count_all FROM "articles" 
199
+
200
+
201
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:46:41) [POST]
202
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
203
+ Article Create (0.6ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:46:41', 'AAAAAAAAAAA', '2009-03-15 13:46:41', 'BBBBBBBBBB')
204
+ Redirected to #<Article:0x7f109c808488>
205
+ Completed in 58ms (DB: 5) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
206
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
207
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
208
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
209
+
210
+
211
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:46:41) [DELETE]
212
+ Parameters: {"id"=>"953125641"}
213
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
214
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
215
+ Redirected to http://test.host/articles
216
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
217
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
218
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
219
+
220
+
221
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:46:41) [GET]
222
+ Parameters: {"id"=>"953125641"}
223
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
224
+ Rendering template within layouts/articles
225
+ Rendering articles/edit
226
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
227
+ Completed in 172ms (View: 168, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
228
+
229
+
230
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:46:41) [GET]
231
+ Article Load (0.8ms) SELECT * FROM "articles" 
232
+ Rendering template within layouts/articles
233
+ Rendering articles/index
234
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
235
+ Completed in 33ms (View: 26, DB: 2) | 200 OK [http://test.host/articles]
236
+
237
+
238
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:46:41) [GET]
239
+ Rendering template within layouts/articles
240
+ Rendering articles/new
241
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
242
+ Completed in 43ms (View: 38, DB: 1) | 200 OK [http://test.host/articles/new]
243
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
244
+
245
+
246
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:46:41) [GET]
247
+ Parameters: {"id"=>"953125641"}
248
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
249
+ Rendering template within layouts/articles
250
+ Rendering articles/show
251
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
252
+ Completed in 32ms (View: 25, DB: 2) | 200 OK [http://test.host/articles/953125641]
253
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
254
+
255
+
256
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:46:41) [PUT]
257
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
258
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
259
+ Article Update (0.6ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:46:41', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
260
+ Redirected to #<Article:0x7f109c788198>
261
+ Completed in 51ms (DB: 2) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
262
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
263
+
264
+
265
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:47:25) [POST]
266
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
267
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:47:25', 'AAAAAAAAAAA', '2009-03-15 13:47:25', 'BBBBBBBBBB')
268
+ Redirected to #<Article:0x7fb6e53491f0>
269
+ Completed in 35ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
270
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
271
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
272
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
273
+
274
+
275
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:47:25) [DELETE]
276
+ Parameters: {"id"=>"953125641"}
277
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
278
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
279
+ Redirected to http://test.host/articles
280
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
281
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
282
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
283
+
284
+
285
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:47:25) [GET]
286
+ Parameters: {"id"=>"953125641"}
287
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
288
+ Rendering template within layouts/articles
289
+ Rendering articles/edit
290
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
291
+ Completed in 161ms (View: 157, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
292
+
293
+
294
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:47:25) [GET]
295
+ Article Load (0.5ms) SELECT * FROM "articles" 
296
+ Rendering template within layouts/articles
297
+ Rendering articles/index
298
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
299
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles]
300
+
301
+
302
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:47:25) [GET]
303
+ Rendering template within layouts/articles
304
+ Rendering articles/new
305
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
306
+ Completed in 25ms (View: 22, DB: 1) | 200 OK [http://test.host/articles/new]
307
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
308
+
309
+
310
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:47:25) [GET]
311
+ Parameters: {"id"=>"953125641"}
312
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
313
+ Rendering template within layouts/articles
314
+ Rendering articles/show
315
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
316
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles/953125641]
317
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
318
+
319
+
320
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:47:25) [PUT]
321
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
322
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
323
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:47:25', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
324
+ Redirected to #<Article:0x7fb6e52c8910>
325
+ Completed in 30ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
326
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
327
+
328
+
329
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:47:25) [POST]
330
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
331
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:47:25', 'AAAAAAAAAAA', '2009-03-15 13:47:25', 'BBBBBBBBBB')
332
+ Redirected to #<Article:0x7fb6e525ea60>
333
+ Completed in 29ms (DB: 1) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
334
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
335
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
336
+
337
+
338
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:47:39) [POST]
339
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
340
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:47:39', 'AAAAAAAAAAA', '2009-03-15 13:47:39', 'BBBBBBBBBB')
341
+ Redirected to #<Article:0x7fa1c62794c0>
342
+ Completed in 35ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
343
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
344
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
345
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
346
+
347
+
348
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:47:39) [DELETE]
349
+ Parameters: {"id"=>"953125641"}
350
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
351
+ Article Destroy (0.3ms) DELETE FROM "articles" WHERE "id" = 953125641
352
+ Redirected to http://test.host/articles
353
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
354
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
355
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
356
+
357
+
358
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:47:39) [GET]
359
+ Parameters: {"id"=>"953125641"}
360
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
361
+ Rendering template within layouts/articles
362
+ Rendering articles/edit
363
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
364
+ Completed in 163ms (View: 160, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
365
+
366
+
367
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:47:39) [GET]
368
+ Article Load (0.5ms) SELECT * FROM "articles" 
369
+ Rendering template within layouts/articles
370
+ Rendering articles/index
371
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
372
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles]
373
+
374
+
375
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:47:39) [GET]
376
+ Rendering template within layouts/articles
377
+ Rendering articles/new
378
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
379
+ Completed in 26ms (View: 23, DB: 1) | 200 OK [http://test.host/articles/new]
380
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
381
+
382
+
383
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:47:39) [GET]
384
+ Parameters: {"id"=>"953125641"}
385
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
386
+ Rendering template within layouts/articles
387
+ Rendering articles/show
388
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
389
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles/953125641]
390
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
391
+
392
+
393
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:47:39) [PUT]
394
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
395
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
396
+ Article Update (0.5ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:47:39', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
397
+ Redirected to #<Article:0x7fa1c61f8be0>
398
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
399
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
400
+
401
+
402
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:47:39) [POST]
403
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
404
+ Rendering template within layouts/articles
405
+ Rendering articles/new
406
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
407
+ Completed in 50ms (View: 42, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
408
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
409
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
410
+
411
+
412
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:48:24) [POST]
413
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
414
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:48:24', 'AAAAAAAAAAA', '2009-03-15 13:48:24', 'BBBBBBBBBB')
415
+ Redirected to #<Article:0x7fce5f5a35e0>
416
+ Completed in 35ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
417
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
418
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
419
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
420
+
421
+
422
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:48:24) [DELETE]
423
+ Parameters: {"id"=>"953125641"}
424
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
425
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
426
+ Redirected to http://test.host/articles
427
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
428
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
429
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
430
+
431
+
432
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:48:24) [GET]
433
+ Parameters: {"id"=>"953125641"}
434
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
435
+ Rendering template within layouts/articles
436
+ Rendering articles/edit
437
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
438
+ Completed in 160ms (View: 156, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
439
+
440
+
441
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:48:25) [GET]
442
+ Article Load (0.5ms) SELECT * FROM "articles" 
443
+ Rendering template within layouts/articles
444
+ Rendering articles/index
445
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
446
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles]
447
+
448
+
449
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:48:25) [GET]
450
+ Rendering template within layouts/articles
451
+ Rendering articles/new
452
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
453
+ Completed in 25ms (View: 22, DB: 1) | 200 OK [http://test.host/articles/new]
454
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
455
+
456
+
457
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:48:25) [GET]
458
+ Parameters: {"id"=>"953125641"}
459
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
460
+ Rendering template within layouts/articles
461
+ Rendering articles/show
462
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
463
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles/953125641]
464
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
465
+
466
+
467
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:48:25) [PUT]
468
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
469
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
470
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:48:25', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
471
+ Redirected to #<Article:0x7fce5f522d50>
472
+ Completed in 30ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
473
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
474
+
475
+
476
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:48:25) [POST]
477
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
478
+ Rendering template within layouts/articles
479
+ Rendering articles/new
480
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
481
+ Completed in 49ms (View: 41, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
482
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
483
+ SQL (1.0ms) SELECT count(*) AS count_all FROM "articles" 
484
+
485
+
486
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:48:48) [POST]
487
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
488
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:48:48', 'AAAAAAAAAAA', '2009-03-15 13:48:48', 'BBBBBBBBBB')
489
+ Redirected to #<Article:0x7f23319df4a8>
490
+ Completed in 34ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
491
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
492
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
493
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
494
+
495
+
496
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:48:48) [DELETE]
497
+ Parameters: {"id"=>"953125641"}
498
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
499
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
500
+ Redirected to http://test.host/articles
501
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
502
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
503
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
504
+
505
+
506
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:48:48) [GET]
507
+ Parameters: {"id"=>"953125641"}
508
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
509
+ Rendering template within layouts/articles
510
+ Rendering articles/edit
511
+ Article Load (1.3ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
512
+ Completed in 164ms (View: 160, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
513
+
514
+
515
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:48:48) [GET]
516
+ Article Load (0.5ms) SELECT * FROM "articles" 
517
+ Rendering template within layouts/articles
518
+ Rendering articles/index
519
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
520
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles]
521
+
522
+
523
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:48:48) [GET]
524
+ Rendering template within layouts/articles
525
+ Rendering articles/new
526
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
527
+ Completed in 26ms (View: 23, DB: 1) | 200 OK [http://test.host/articles/new]
528
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
529
+
530
+
531
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:48:48) [GET]
532
+ Parameters: {"id"=>"953125641"}
533
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
534
+ Rendering template within layouts/articles
535
+ Rendering articles/show
536
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
537
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles/953125641]
538
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
539
+
540
+
541
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:48:48) [PUT]
542
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
543
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
544
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:48:48', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
545
+ Redirected to #<Article:0x7f233195ebc8>
546
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
547
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
548
+
549
+
550
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:48:48) [POST]
551
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
552
+ Rendering template within layouts/articles
553
+ Rendering articles/new
554
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
555
+ Completed in 50ms (View: 42, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
556
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
557
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
558
+
559
+
560
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:48:58) [POST]
561
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
562
+ Article Create (0.6ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:48:58', 'AAAAAAAAAAA', '2009-03-15 13:48:58', 'BBBBBBBBBB')
563
+ Redirected to #<Article:0x7f1b5a4ac5c8>
564
+ Completed in 45ms (DB: 3) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
565
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
566
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
567
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
568
+
569
+
570
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:48:58) [DELETE]
571
+ Parameters: {"id"=>"953125641"}
572
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
573
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
574
+ Redirected to http://test.host/articles
575
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
576
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
577
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
578
+
579
+
580
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:48:58) [GET]
581
+ Parameters: {"id"=>"953125641"}
582
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
583
+ Rendering template within layouts/articles
584
+ Rendering articles/edit
585
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
586
+ Completed in 180ms (View: 176, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
587
+
588
+
589
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:48:59) [GET]
590
+ Article Load (0.8ms) SELECT * FROM "articles" 
591
+ Rendering template within layouts/articles
592
+ Rendering articles/index
593
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
594
+ Completed in 34ms (View: 28, DB: 2) | 200 OK [http://test.host/articles]
595
+
596
+
597
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:48:59) [GET]
598
+ Rendering template within layouts/articles
599
+ Rendering articles/new
600
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
601
+ Completed in 45ms (View: 40, DB: 1) | 200 OK [http://test.host/articles/new]
602
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
603
+
604
+
605
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:48:59) [GET]
606
+ Parameters: {"id"=>"953125641"}
607
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
608
+ Rendering template within layouts/articles
609
+ Rendering articles/show
610
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
611
+ Completed in 34ms (View: 27, DB: 2) | 200 OK [http://test.host/articles/953125641]
612
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
613
+
614
+
615
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:48:59) [PUT]
616
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
617
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
618
+ Article Update (0.6ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:48:59', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
619
+ Redirected to #<Article:0x7f1b5a42bc98>
620
+ Completed in 52ms (DB: 2) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
621
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
622
+
623
+
624
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:48:59) [POST]
625
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
626
+ Rendering template within layouts/articles
627
+ Rendering articles/new
628
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
629
+ Completed in 88ms (View: 73, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
630
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
631
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
632
+
633
+
634
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:49:15) [POST]
635
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
636
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:49:15', 'AAAAAAAAAAA', '2009-03-15 13:49:15', 'BBBBBBBBBB')
637
+ Redirected to #<Article:0x7ffe74acd5f8>
638
+ Completed in 35ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
639
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
640
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
641
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
642
+
643
+
644
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:49:15) [DELETE]
645
+ Parameters: {"id"=>"953125641"}
646
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
647
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
648
+ Redirected to http://test.host/articles
649
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
650
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
651
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
652
+
653
+
654
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:49:15) [GET]
655
+ Parameters: {"id"=>"953125641"}
656
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
657
+ Rendering template within layouts/articles
658
+ Rendering articles/edit
659
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
660
+ Completed in 163ms (View: 160, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
661
+
662
+
663
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:49:15) [GET]
664
+ Article Load (0.5ms) SELECT * FROM "articles" 
665
+ Rendering template within layouts/articles
666
+ Rendering articles/index
667
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
668
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles]
669
+
670
+
671
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:49:15) [GET]
672
+ Rendering template within layouts/articles
673
+ Rendering articles/new
674
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
675
+ Completed in 25ms (View: 22, DB: 1) | 200 OK [http://test.host/articles/new]
676
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
677
+
678
+
679
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:49:15) [GET]
680
+ Parameters: {"id"=>"953125641"}
681
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
682
+ Rendering template within layouts/articles
683
+ Rendering articles/show
684
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
685
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles/953125641]
686
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
687
+
688
+
689
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:49:15) [PUT]
690
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
691
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
692
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:49:15', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
693
+ Redirected to #<Article:0x7ffe74a4cd68>
694
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
695
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
696
+
697
+
698
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:49:15) [POST]
699
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
700
+ Rendering template within layouts/articles
701
+ Rendering articles/new
702
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
703
+ Completed in 50ms (View: 42, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
704
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
705
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
706
+
707
+
708
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:58:11) [POST]
709
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
710
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 13:58:11', 'AAAAAAAAAAA', '2009-03-15 13:58:11', 'BBBBBBBBBB')
711
+ Redirected to #<Article:0x7f355df76158>
712
+ Completed in 34ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
713
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
714
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
715
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
716
+
717
+
718
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 22:58:11) [DELETE]
719
+ Parameters: {"id"=>"953125641"}
720
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
721
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
722
+ Redirected to http://test.host/articles
723
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
724
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
725
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
726
+
727
+
728
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 22:58:11) [GET]
729
+ Parameters: {"id"=>"953125641"}
730
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
731
+ Rendering template within layouts/articles
732
+ Rendering articles/edit
733
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
734
+ Completed in 159ms (View: 155, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
735
+
736
+
737
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 22:58:11) [GET]
738
+ Article Load (0.5ms) SELECT * FROM "articles" 
739
+ Rendering template within layouts/articles
740
+ Rendering articles/index
741
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
742
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles]
743
+
744
+
745
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 22:58:11) [GET]
746
+ Rendering template within layouts/articles
747
+ Rendering articles/new
748
+ Article Load (0.7ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
749
+ Completed in 30ms (View: 27, DB: 1) | 200 OK [http://test.host/articles/new]
750
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
751
+
752
+
753
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 22:58:11) [GET]
754
+ Parameters: {"id"=>"953125641"}
755
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
756
+ Rendering template within layouts/articles
757
+ Rendering articles/show
758
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
759
+ Completed in 22ms (View: 18, DB: 2) | 200 OK [http://test.host/articles/953125641]
760
+ Article Load (0.7ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
761
+
762
+
763
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 22:58:11) [PUT]
764
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
765
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
766
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 13:58:11', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
767
+ Redirected to #<Article:0x7f355dee5e50>
768
+ Completed in 35ms (DB: 2) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
769
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
770
+
771
+
772
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 22:58:11) [POST]
773
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
774
+ Rendering template within layouts/articles
775
+ Rendering articles/new
776
+ Article Load (0.7ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
777
+ Completed in 56ms (View: 46, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
778
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
779
+ SQL (0.8ms) SELECT count(*) AS count_all FROM "articles" 
780
+
781
+
782
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:21:39) [POST]
783
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
784
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:21:39', 'AAAAAAAAAAA', '2009-03-15 14:21:39', 'BBBBBBBBBB')
785
+ Redirected to #<Article:0x7f1e072d81c0>
786
+ Completed in 34ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
787
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
788
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
789
+ Article Load (1.0ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
790
+
791
+
792
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:21:39) [DELETE]
793
+ Parameters: {"id"=>"953125641"}
794
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
795
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
796
+ Redirected to http://test.host/articles
797
+ Completed in 4ms (DB: 2) | 302 Found [http://test.host/articles/953125641]
798
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
799
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
800
+
801
+
802
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:21:39) [GET]
803
+ Parameters: {"id"=>"953125641"}
804
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
805
+ Rendering template within layouts/articles
806
+ Rendering articles/edit
807
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
808
+ Completed in 165ms (View: 161, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
809
+
810
+
811
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:21:40) [GET]
812
+ Article Load (0.5ms) SELECT * FROM "articles" 
813
+ Rendering template within layouts/articles
814
+ Rendering articles/index
815
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
816
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles]
817
+
818
+
819
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:21:40) [GET]
820
+ Rendering template within layouts/articles
821
+ Rendering articles/new
822
+ Article Load (1.1ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
823
+ Completed in 26ms (View: 22, DB: 1) | 200 OK [http://test.host/articles/new]
824
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
825
+
826
+
827
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:21:40) [GET]
828
+ Parameters: {"id"=>"953125641"}
829
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
830
+ Rendering template within layouts/articles
831
+ Rendering articles/show
832
+ Article Load (0.7ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
833
+ Completed in 21ms (View: 17, DB: 1) | 200 OK [http://test.host/articles/953125641]
834
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
835
+
836
+
837
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:21:40) [PUT]
838
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
839
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
840
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:21:40', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
841
+ Redirected to #<Article:0x7f1e072579f8>
842
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
843
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
844
+
845
+
846
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:21:40) [POST]
847
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
848
+ Rendering template within layouts/articles
849
+ Rendering articles/new
850
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
851
+ Completed in 51ms (View: 42, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
852
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
853
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
854
+
855
+
856
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:23:12) [POST]
857
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
858
+ Article Create (0.6ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:23:12', 'AAAAAAAAAAA', '2009-03-15 14:23:12', 'BBBBBBBBBB')
859
+ Redirected to #<Article:0x7f74e548e188>
860
+ Completed in 52ms (DB: 3) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
861
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
862
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
863
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
864
+
865
+
866
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:23:12) [DELETE]
867
+ Parameters: {"id"=>"953125641"}
868
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
869
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
870
+ Redirected to http://test.host/articles
871
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
872
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
873
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
874
+
875
+
876
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:23:12) [GET]
877
+ Parameters: {"id"=>"953125641"}
878
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
879
+ Rendering template within layouts/articles
880
+ Rendering articles/edit
881
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
882
+ Completed in 171ms (View: 167, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
883
+
884
+
885
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:23:12) [GET]
886
+ Article Load (0.5ms) SELECT * FROM "articles" 
887
+ Rendering template within layouts/articles
888
+ Rendering articles/index
889
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
890
+ Completed in 22ms (View: 17, DB: 1) | 200 OK [http://test.host/articles]
891
+
892
+
893
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:23:12) [GET]
894
+ Rendering template within layouts/articles
895
+ Rendering articles/new
896
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
897
+ Completed in 26ms (View: 22, DB: 1) | 200 OK [http://test.host/articles/new]
898
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
899
+
900
+
901
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:23:12) [GET]
902
+ Parameters: {"id"=>"953125641"}
903
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
904
+ Rendering template within layouts/articles
905
+ Rendering articles/show
906
+ Article Load (0.5ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
907
+ Completed in 19ms (View: 16, DB: 1) | 200 OK [http://test.host/articles/953125641]
908
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
909
+
910
+
911
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:23:12) [PUT]
912
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
913
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
914
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:23:12', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
915
+ Redirected to #<Article:0x7f74e540d970>
916
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
917
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
918
+
919
+
920
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:23:12) [POST]
921
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
922
+ Rendering template within layouts/articles
923
+ Rendering articles/new
924
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
925
+ Completed in 53ms (View: 45, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
926
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
927
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
928
+
929
+
930
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:24:04) [POST]
931
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
932
+ Article Create (0.9ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:24:04', 'AAAAAAAAAAA', '2009-03-15 14:24:04', 'BBBBBBBBBB')
933
+ Redirected to #<Article:0x7f1ca359d500>
934
+ Completed in 59ms (DB: 3) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
935
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
936
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
937
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
938
+
939
+
940
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:24:04) [DELETE]
941
+ Parameters: {"id"=>"953125641"}
942
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
943
+ Article Destroy (0.5ms) DELETE FROM "articles" WHERE "id" = 953125641
944
+ Redirected to http://test.host/articles
945
+ Completed in 7ms (DB: 2) | 302 Found [http://test.host/articles/953125641]
946
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
947
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
948
+
949
+
950
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:24:04) [GET]
951
+ Parameters: {"id"=>"953125641"}
952
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
953
+ Rendering template within layouts/articles
954
+ Rendering articles/edit
955
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
956
+ Completed in 240ms (View: 233, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
957
+
958
+
959
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:24:04) [GET]
960
+ Article Load (0.8ms) SELECT * FROM "articles" 
961
+ Rendering template within layouts/articles
962
+ Rendering articles/index
963
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
964
+ Completed in 34ms (View: 27, DB: 2) | 200 OK [http://test.host/articles]
965
+
966
+
967
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:24:04) [GET]
968
+ Rendering template within layouts/articles
969
+ Rendering articles/new
970
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
971
+ Completed in 44ms (View: 39, DB: 1) | 200 OK [http://test.host/articles/new]
972
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
973
+
974
+
975
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:24:04) [GET]
976
+ Parameters: {"id"=>"953125641"}
977
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
978
+ Rendering template within layouts/articles
979
+ Rendering articles/show
980
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
981
+ Completed in 33ms (View: 26, DB: 2) | 200 OK [http://test.host/articles/953125641]
982
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
983
+
984
+
985
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:24:05) [PUT]
986
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
987
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
988
+ Article Update (0.6ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:24:05', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
989
+ Redirected to #<Article:0x7f1ca351cd38>
990
+ Completed in 52ms (DB: 2) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
991
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
992
+
993
+
994
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:24:05) [POST]
995
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
996
+ Rendering template within layouts/articles
997
+ Rendering articles/new
998
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
999
+ Completed in 89ms (View: 74, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1000
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1001
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
1002
+
1003
+
1004
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:25:37) [POST]
1005
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1006
+ Article Create (0.6ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:25:37', 'AAAAAAAAAAA', '2009-03-15 14:25:37', 'BBBBBBBBBB')
1007
+ Redirected to #<Article:0x7fce79911500>
1008
+ Completed in 53ms (DB: 3) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1009
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1010
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1011
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1012
+
1013
+
1014
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:25:37) [DELETE]
1015
+ Parameters: {"id"=>"953125641"}
1016
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1017
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
1018
+ Redirected to http://test.host/articles
1019
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
1020
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1021
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1022
+
1023
+
1024
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:25:37) [GET]
1025
+ Parameters: {"id"=>"953125641"}
1026
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1027
+ Rendering template within layouts/articles
1028
+ Rendering articles/edit
1029
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1030
+ Completed in 182ms (View: 178, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
1031
+
1032
+
1033
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:25:37) [GET]
1034
+ Article Load (0.8ms) SELECT * FROM "articles" 
1035
+ Rendering template within layouts/articles
1036
+ Rendering articles/index
1037
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1038
+ Completed in 34ms (View: 27, DB: 2) | 200 OK [http://test.host/articles]
1039
+
1040
+
1041
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:25:37) [GET]
1042
+ Rendering template within layouts/articles
1043
+ Rendering articles/new
1044
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1045
+ Completed in 43ms (View: 38, DB: 1) | 200 OK [http://test.host/articles/new]
1046
+ Article Load (0.7ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1047
+
1048
+
1049
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:25:37) [GET]
1050
+ Parameters: {"id"=>"953125641"}
1051
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1052
+ Rendering template within layouts/articles
1053
+ Rendering articles/show
1054
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1055
+ Completed in 32ms (View: 26, DB: 2) | 200 OK [http://test.host/articles/953125641]
1056
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1057
+
1058
+
1059
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:25:37) [PUT]
1060
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1061
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1062
+ Article Update (0.6ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:25:37', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1063
+ Redirected to #<Article:0x7fce7988a960>
1064
+ Completed in 52ms (DB: 2) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1065
+ SQL (1.8ms) SELECT count(*) AS count_all FROM "articles" 
1066
+
1067
+
1068
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:25:37) [POST]
1069
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1070
+ Rendering template within layouts/articles
1071
+ Rendering articles/new
1072
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1073
+ Completed in 89ms (View: 72, DB: 3) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1074
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1075
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1076
+
1077
+
1078
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:25:56) [POST]
1079
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1080
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:25:56', 'AAAAAAAAAAA', '2009-03-15 14:25:56', 'BBBBBBBBBB')
1081
+ Redirected to #<Article:0x7f9d73ec1108>
1082
+ Completed in 34ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1083
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1084
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1085
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1086
+
1087
+
1088
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:25:56) [DELETE]
1089
+ Parameters: {"id"=>"953125641"}
1090
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1091
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
1092
+ Redirected to http://test.host/articles
1093
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
1094
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1095
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1096
+
1097
+
1098
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:25:56) [GET]
1099
+ Parameters: {"id"=>"953125641"}
1100
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1101
+ Rendering template within layouts/articles
1102
+ Rendering articles/edit
1103
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1104
+ Completed in 161ms (View: 158, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
1105
+
1106
+
1107
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:25:56) [GET]
1108
+ Article Load (0.5ms) SELECT * FROM "articles" 
1109
+ Rendering template within layouts/articles
1110
+ Rendering articles/index
1111
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1112
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles]
1113
+
1114
+
1115
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:25:56) [GET]
1116
+ Rendering template within layouts/articles
1117
+ Rendering articles/new
1118
+ Article Load (0.8ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1119
+ Completed in 29ms (View: 26, DB: 1) | 200 OK [http://test.host/articles/new]
1120
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1121
+
1122
+
1123
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:25:56) [GET]
1124
+ Parameters: {"id"=>"953125641"}
1125
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1126
+ Rendering template within layouts/articles
1127
+ Rendering articles/show
1128
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1129
+ Completed in 21ms (View: 17, DB: 2) | 200 OK [http://test.host/articles/953125641]
1130
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1131
+
1132
+
1133
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:25:56) [PUT]
1134
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1135
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1136
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:25:56', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1137
+ Redirected to #<Article:0x7f9d73e3b350>
1138
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1139
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1140
+
1141
+
1142
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:25:56) [POST]
1143
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1144
+ Rendering template within layouts/articles
1145
+ Rendering articles/new
1146
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1147
+ Completed in 49ms (View: 41, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1148
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1149
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1150
+
1151
+
1152
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:26:24) [POST]
1153
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1154
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:26:24', 'AAAAAAAAAAA', '2009-03-15 14:26:24', 'BBBBBBBBBB')
1155
+ Redirected to #<Article:0x7f23d5aa20d0>
1156
+ Completed in 34ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1157
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1158
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1159
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1160
+
1161
+
1162
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:26:24) [DELETE]
1163
+ Parameters: {"id"=>"953125641"}
1164
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1165
+ Article Destroy (0.3ms) DELETE FROM "articles" WHERE "id" = 953125641
1166
+ Redirected to http://test.host/articles
1167
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
1168
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1169
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1170
+
1171
+
1172
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:26:24) [GET]
1173
+ Parameters: {"id"=>"953125641"}
1174
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1175
+ Rendering template within layouts/articles
1176
+ Rendering articles/edit
1177
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1178
+ Completed in 161ms (View: 158, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
1179
+
1180
+
1181
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:26:24) [GET]
1182
+ Article Load (0.5ms) SELECT * FROM "articles" 
1183
+ Rendering template within layouts/articles
1184
+ Rendering articles/index
1185
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1186
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles]
1187
+
1188
+
1189
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:26:24) [GET]
1190
+ Rendering template within layouts/articles
1191
+ Rendering articles/new
1192
+ Article Load (0.7ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1193
+ Completed in 27ms (View: 24, DB: 1) | 200 OK [http://test.host/articles/new]
1194
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1195
+
1196
+
1197
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:26:24) [GET]
1198
+ Parameters: {"id"=>"953125641"}
1199
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1200
+ Rendering template within layouts/articles
1201
+ Rendering articles/show
1202
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1203
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles/953125641]
1204
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1205
+
1206
+
1207
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:26:24) [PUT]
1208
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1209
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1210
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:26:24', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1211
+ Redirected to #<Article:0x7f23d5a1c2f0>
1212
+ Completed in 32ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1213
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1214
+
1215
+
1216
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:26:24) [POST]
1217
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1218
+ Rendering template within layouts/articles
1219
+ Rendering articles/new
1220
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1221
+ Completed in 49ms (View: 41, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1222
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1223
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1224
+
1225
+
1226
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:26:52) [POST]
1227
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1228
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:26:52', 'AAAAAAAAAAA', '2009-03-15 14:26:52', 'BBBBBBBBBB')
1229
+ Redirected to #<Article:0x7f5419f4d520>
1230
+ Completed in 34ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1231
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1232
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1233
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1234
+
1235
+
1236
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:26:52) [DELETE]
1237
+ Parameters: {"id"=>"953125641"}
1238
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1239
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
1240
+ Redirected to http://test.host/articles
1241
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
1242
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1243
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1244
+
1245
+
1246
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:26:52) [GET]
1247
+ Parameters: {"id"=>"953125641"}
1248
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1249
+ Rendering template within layouts/articles
1250
+ Rendering articles/edit
1251
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1252
+ Completed in 184ms (View: 180, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
1253
+
1254
+
1255
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:26:52) [GET]
1256
+ Article Load (0.8ms) SELECT * FROM "articles" 
1257
+ Rendering template within layouts/articles
1258
+ Rendering articles/index
1259
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1260
+ Completed in 33ms (View: 26, DB: 2) | 200 OK [http://test.host/articles]
1261
+
1262
+
1263
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:26:52) [GET]
1264
+ Rendering template within layouts/articles
1265
+ Rendering articles/new
1266
+ Article Load (1.0ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1267
+ Completed in 44ms (View: 39, DB: 1) | 200 OK [http://test.host/articles/new]
1268
+ Article Load (0.7ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1269
+
1270
+
1271
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:26:52) [GET]
1272
+ Parameters: {"id"=>"953125641"}
1273
+ Article Load (0.7ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1274
+ Rendering template within layouts/articles
1275
+ Rendering articles/show
1276
+ Article Load (0.9ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1277
+ Completed in 33ms (View: 26, DB: 2) | 200 OK [http://test.host/articles/953125641]
1278
+ Article Load (0.7ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1279
+
1280
+
1281
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:26:52) [PUT]
1282
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1283
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1284
+ Article Update (0.7ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:26:52', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1285
+ Redirected to #<Article:0x7f5419ec6958>
1286
+ Completed in 51ms (DB: 2) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1287
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1288
+
1289
+
1290
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:26:52) [POST]
1291
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1292
+ Rendering template within layouts/articles
1293
+ Rendering articles/new
1294
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1295
+ Completed in 69ms (View: 55, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1296
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1297
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
1298
+
1299
+
1300
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:27:26) [POST]
1301
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1302
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:27:26', 'AAAAAAAAAAA', '2009-03-15 14:27:26', 'BBBBBBBBBB')
1303
+ Redirected to #<Article:0x7fa233c32e68>
1304
+ Completed in 34ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1305
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1306
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1307
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1308
+
1309
+
1310
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:27:26) [DELETE]
1311
+ Parameters: {"id"=>"953125641"}
1312
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1313
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
1314
+ Redirected to http://test.host/articles
1315
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
1316
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1317
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1318
+
1319
+
1320
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:27:26) [GET]
1321
+ Parameters: {"id"=>"953125641"}
1322
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1323
+ Rendering template within layouts/articles
1324
+ Rendering articles/edit
1325
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1326
+ Completed in 161ms (View: 157, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
1327
+
1328
+
1329
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:27:26) [GET]
1330
+ Article Load (0.5ms) SELECT * FROM "articles" 
1331
+ Rendering template within layouts/articles
1332
+ Rendering articles/index
1333
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1334
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles]
1335
+
1336
+
1337
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:27:26) [GET]
1338
+ Rendering template within layouts/articles
1339
+ Rendering articles/new
1340
+ Article Load (0.7ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1341
+ Completed in 27ms (View: 24, DB: 1) | 200 OK [http://test.host/articles/new]
1342
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1343
+
1344
+
1345
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:27:26) [GET]
1346
+ Parameters: {"id"=>"953125641"}
1347
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1348
+ Rendering template within layouts/articles
1349
+ Rendering articles/show
1350
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1351
+ Completed in 20ms (View: 16, DB: 2) | 200 OK [http://test.host/articles/953125641]
1352
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1353
+
1354
+
1355
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:27:26) [PUT]
1356
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1357
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1358
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:27:26', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1359
+ Redirected to #<Article:0x7fa233ba9fc8>
1360
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1361
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1362
+
1363
+
1364
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:27:26) [POST]
1365
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1366
+ Rendering template within layouts/articles
1367
+ Rendering articles/new
1368
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1369
+ Completed in 50ms (View: 41, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1370
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1371
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
1372
+
1373
+
1374
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:28:06) [POST]
1375
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1376
+ Article Create (0.6ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 14:28:06', 'AAAAAAAAAAA', '2009-03-15 14:28:06', 'BBBBBBBBBB')
1377
+ Redirected to #<Article:0x7f3c5926d0d0>
1378
+ Completed in 62ms (DB: 3) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1379
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1380
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1381
+ Article Load (0.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1382
+
1383
+
1384
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-15 23:28:06) [DELETE]
1385
+ Parameters: {"id"=>"953125641"}
1386
+ Article Load (1.5ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1387
+ Article Destroy (0.4ms) DELETE FROM "articles" WHERE "id" = 953125641
1388
+ Redirected to http://test.host/articles
1389
+ Completed in 8ms (DB: 3) | 302 Found [http://test.host/articles/953125641]
1390
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1391
+ Article Load (1.8ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1392
+
1393
+
1394
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-15 23:28:06) [GET]
1395
+ Parameters: {"id"=>"953125641"}
1396
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1397
+ Rendering template within layouts/articles
1398
+ Rendering articles/edit
1399
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1400
+ Completed in 172ms (View: 168, DB: 3) | 200 OK [http://test.host/articles/953125641/edit]
1401
+
1402
+
1403
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-15 23:28:06) [GET]
1404
+ Article Load (0.5ms) SELECT * FROM "articles" 
1405
+ Rendering template within layouts/articles
1406
+ Rendering articles/index
1407
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1408
+ Completed in 19ms (View: 15, DB: 1) | 200 OK [http://test.host/articles]
1409
+
1410
+
1411
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-15 23:28:06) [GET]
1412
+ Rendering template within layouts/articles
1413
+ Rendering articles/new
1414
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1415
+ Completed in 27ms (View: 23, DB: 1) | 200 OK [http://test.host/articles/new]
1416
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1417
+
1418
+
1419
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-15 23:28:06) [GET]
1420
+ Parameters: {"id"=>"953125641"}
1421
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1422
+ Rendering template within layouts/articles
1423
+ Rendering articles/show
1424
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1425
+ Completed in 21ms (View: 17, DB: 1) | 200 OK [http://test.host/articles/953125641]
1426
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1427
+
1428
+
1429
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-15 23:28:06) [PUT]
1430
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1431
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1432
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 14:28:06', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1433
+ Redirected to #<Article:0x7f3c591d1e50>
1434
+ Completed in 31ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1435
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1436
+
1437
+
1438
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-15 23:28:06) [POST]
1439
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1440
+ Rendering template within layouts/articles
1441
+ Rendering articles/new
1442
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1443
+ Completed in 52ms (View: 43, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1444
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1445
+ SQL (0.4ms) SELECT count(*) AS count_all FROM "articles" 
1446
+
1447
+
1448
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-16 00:06:13) [POST]
1449
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1450
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 15:06:13', 'AAAAAAAAAAA', '2009-03-15 15:06:13', 'BBBBBBBBBB')
1451
+ Redirected to #<Article:0x7f31819c22c8>
1452
+ Completed in 36ms (DB: 2) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1453
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1454
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1455
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1456
+
1457
+
1458
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-16 00:06:13) [DELETE]
1459
+ Parameters: {"id"=>"953125641"}
1460
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1461
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
1462
+ Redirected to http://test.host/articles
1463
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
1464
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1465
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1466
+
1467
+
1468
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-16 00:06:13) [GET]
1469
+ Parameters: {"id"=>"953125641"}
1470
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1471
+ Rendering template within layouts/articles
1472
+ Rendering articles/edit
1473
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1474
+ Completed in 66ms (View: 62, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
1475
+
1476
+
1477
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-16 00:06:13) [GET]
1478
+ Article Load (0.6ms) SELECT * FROM "articles" 
1479
+ Rendering template within layouts/articles
1480
+ Rendering articles/index
1481
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1482
+ Completed in 22ms (View: 17, DB: 1) | 200 OK [http://test.host/articles]
1483
+
1484
+
1485
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-16 00:06:13) [GET]
1486
+ Rendering template within layouts/articles
1487
+ Rendering articles/new
1488
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1489
+ Completed in 43ms (View: 40, DB: 1) | 200 OK [http://test.host/articles/new]
1490
+ Article Load (0.7ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1491
+
1492
+
1493
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-16 00:06:13) [GET]
1494
+ Parameters: {"id"=>"953125641"}
1495
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1496
+ Rendering template within layouts/articles
1497
+ Rendering articles/show
1498
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1499
+ Completed in 20ms (View: 17, DB: 2) | 200 OK [http://test.host/articles/953125641]
1500
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1501
+
1502
+
1503
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-16 00:06:13) [PUT]
1504
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1505
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1506
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 15:06:13', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1507
+ Redirected to #<Article:0x7f318192d768>
1508
+ Completed in 32ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1509
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1510
+
1511
+
1512
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-16 00:06:13) [POST]
1513
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1514
+ Rendering template within layouts/articles
1515
+ Rendering articles/new
1516
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1517
+ Completed in 51ms (View: 43, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1518
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1519
+ SQL (0.5ms) SELECT count(*) AS count_all FROM "articles" 
1520
+
1521
+
1522
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-16 00:06:44) [POST]
1523
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}}
1524
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "created_at", "title", "updated_at", "description") VALUES(NULL, '2009-03-15 15:06:44', 'AAAAAAAAAAA', '2009-03-15 15:06:44', 'BBBBBBBBBB')
1525
+ Redirected to #<Article:0x7f7d83f73e58>
1526
+ Completed in 40ms (DB: 3) | 302 Found [http://test.host/articles?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1527
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1528
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1529
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1530
+
1531
+
1532
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2009-03-16 00:06:44) [DELETE]
1533
+ Parameters: {"id"=>"953125641"}
1534
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1535
+ Article Destroy (0.2ms) DELETE FROM "articles" WHERE "id" = 953125641
1536
+ Redirected to http://test.host/articles
1537
+ Completed in 4ms (DB: 1) | 302 Found [http://test.host/articles/953125641]
1538
+ SQL (0.2ms) SELECT count(*) AS count_all FROM "articles" 
1539
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1540
+
1541
+
1542
+ Processing ArticlesController#edit (for 0.0.0.0 at 2009-03-16 00:06:45) [GET]
1543
+ Parameters: {"id"=>"953125641"}
1544
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1545
+ Rendering template within layouts/articles
1546
+ Rendering articles/edit
1547
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1548
+ Completed in 147ms (View: 143, DB: 2) | 200 OK [http://test.host/articles/953125641/edit]
1549
+
1550
+
1551
+ Processing ArticlesController#index (for 0.0.0.0 at 2009-03-16 00:06:45) [GET]
1552
+ Article Load (0.6ms) SELECT * FROM "articles" 
1553
+ Rendering template within layouts/articles
1554
+ Rendering articles/index
1555
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1556
+ Completed in 21ms (View: 17, DB: 1) | 200 OK [http://test.host/articles]
1557
+
1558
+
1559
+ Processing ArticlesController#new (for 0.0.0.0 at 2009-03-16 00:06:45) [GET]
1560
+ Rendering template within layouts/articles
1561
+ Rendering articles/new
1562
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1563
+ Completed in 41ms (View: 38, DB: 1) | 200 OK [http://test.host/articles/new]
1564
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1565
+
1566
+
1567
+ Processing ArticlesController#show (for 0.0.0.0 at 2009-03-16 00:06:45) [GET]
1568
+ Parameters: {"id"=>"953125641"}
1569
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1570
+ Rendering template within layouts/articles
1571
+ Rendering articles/show
1572
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1573
+ Completed in 20ms (View: 16, DB: 1) | 200 OK [http://test.host/articles/953125641]
1574
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1575
+
1576
+
1577
+ Processing ArticlesController#update (for 0.0.0.0 at 2009-03-16 00:06:45) [PUT]
1578
+ Parameters: {"article"=>{"title"=>"AAAAAAAAAAA", "description"=>"BBBBBBBBBB"}, "id"=>"953125641"}
1579
+ Article Load (0.4ms) SELECT * FROM "articles" WHERE ("articles"."id" = 953125641) 
1580
+ Article Update (0.4ms) UPDATE "articles" SET "updated_at" = '2009-03-15 15:06:45', "title" = 'AAAAAAAAAAA', "description" = 'BBBBBBBBBB' WHERE "id" = 953125641
1581
+ Redirected to #<Article:0x7f7d83ec6e38>
1582
+ Completed in 30ms (DB: 1) | 302 Found [http://test.host/articles/953125641?article%5Bdescription%5D=BBBBBBBBBB&article%5Btitle%5D=AAAAAAAAAAA]
1583
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles" 
1584
+
1585
+
1586
+ Processing ArticlesController#create (for 0.0.0.0 at 2009-03-16 00:06:45) [POST]
1587
+ Parameters: {"article"=>{"title"=>"AAAA", "description"=>"BB"}}
1588
+ Rendering template within layouts/articles
1589
+ Rendering articles/new
1590
+ Article Load (0.6ms) SELECT * FROM "articles" ORDER BY lastupdate desc, id desc
1591
+ Completed in 51ms (View: 43, DB: 1) | 200 OK [http://test.host/articles?article%5Bdescription%5D=BB&article%5Btitle%5D=AAAA]
1592
+ SQL (0.3ms) SELECT count(*) AS count_all FROM "articles"