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
Binary file
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
@@ -0,0 +1,1284 @@
1
+ # Logfile created on Fri Mar 20 12:16:08 +0900 2009 SQL (0.4ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+
6
+
7
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-20 12:16:44) [GET]
8
+ Article Load (0.0ms) SQLite3::SQLException: no such table: articles: SELECT * FROM "articles" 
9
+
10
+ ActiveRecord::StatementInvalid (SQLite3::SQLException: no such table: articles: SELECT * FROM "articles" ):
11
+ activerecord (2.3.0) lib/active_record/connection_adapters/abstract_adapter.rb:212:in `log'
12
+ activerecord (2.3.0) lib/active_record/connection_adapters/sqlite_adapter.rb:132:in `execute'
13
+ activerecord (2.3.0) lib/active_record/connection_adapters/sqlite_adapter.rb:372:in `catch_schema_changes'
14
+ activerecord (2.3.0) lib/active_record/connection_adapters/sqlite_adapter.rb:132:in `execute'
15
+ activerecord (2.3.0) lib/active_record/connection_adapters/sqlite_adapter.rb:275:in `select'
16
+ activerecord (2.3.0) lib/active_record/connection_adapters/abstract/database_statements.rb:7:in `select_all_without_query_cache'
17
+ activerecord (2.3.0) lib/active_record/connection_adapters/abstract/query_cache.rb:60:in `select_all'
18
+ activerecord (2.3.0) lib/active_record/connection_adapters/abstract/query_cache.rb:81:in `cache_sql'
19
+ activerecord (2.3.0) lib/active_record/connection_adapters/abstract/query_cache.rb:60:in `select_all'
20
+ activerecord (2.3.0) lib/active_record/base.rb:661:in `find_by_sql'
21
+ activerecord (2.3.0) lib/active_record/base.rb:1554:in `find_every'
22
+ activerecord (2.3.0) lib/active_record/base.rb:615:in `find'
23
+ app/controllers/articles_controller.rb:22:in `list'
24
+ app/controllers/articles_controller.rb:17:in `index'
25
+ actionpack (2.3.0) lib/action_controller/base.rb:1261:in `send'
26
+ actionpack (2.3.0) lib/action_controller/base.rb:1261:in `perform_action_without_filters'
27
+ actionpack (2.3.0) lib/action_controller/filters.rb:617:in `call_filters'
28
+ actionpack (2.3.0) lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
29
+ actionpack (2.3.0) lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
30
+ actionpack (2.3.0) lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
31
+ actionpack (2.3.0) lib/action_controller/rescue.rb:154:in `perform_action_without_flash'
32
+ actionpack (2.3.0) lib/action_controller/flash.rb:141:in `perform_action'
33
+ actionpack (2.3.0) lib/action_controller/base.rb:523:in `send'
34
+ actionpack (2.3.0) lib/action_controller/base.rb:523:in `process_without_filters'
35
+ actionpack (2.3.0) lib/action_controller/filters.rb:606:in `process'
36
+ actionpack (2.3.0) lib/action_controller/base.rb:391:in `process'
37
+ actionpack (2.3.0) lib/action_controller/base.rb:386:in `call'
38
+ actionpack (2.3.0) lib/action_controller/routing/route_set.rb:433:in `call'
39
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:65:in `dispatch'
40
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:88:in `_call'
41
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:59:in `initialize'
42
+ activerecord (2.3.0) lib/active_record/query_cache.rb:29:in `call'
43
+ activerecord (2.3.0) lib/active_record/query_cache.rb:29:in `call'
44
+ activerecord (2.3.0) lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'
45
+ activerecord (2.3.0) lib/active_record/query_cache.rb:9:in `cache'
46
+ activerecord (2.3.0) lib/active_record/query_cache.rb:28:in `call'
47
+ actionpack (2.3.0) lib/action_controller/params_parser.rb:15:in `call'
48
+ actionpack (2.3.0) lib/action_controller/rewindable_input.rb:25:in `call'
49
+ actionpack (2.3.0) lib/action_controller/session/cookie_store.rb:93:in `call'
50
+ actionpack (2.3.0) lib/action_controller/failsafe.rb:11:in `call'
51
+ actionpack (2.3.0) lib/action_controller/rack_ext/lock.rb:15:in `call'
52
+ actionpack (2.3.0) lib/action_controller/rack_ext/lock.rb:15:in `synchronize'
53
+ actionpack (2.3.0) lib/action_controller/rack_ext/lock.rb:15:in `call'
54
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:83:in `call'
55
+ rails (2.3.0) lib/rails/rack/static.rb:27:in `call'
56
+ rails (2.3.0) lib/rails/rack/log_tailer.rb:17:in `call'
57
+ rails (2.3.0) lib/commands/server.rb:100
58
+
59
+ Rendered rescues/_trace (114.4ms)
60
+ Rendered rescues/_request_and_response (0.8ms)
61
+ Rendering rescues/layout (internal_server_error)
62
+ SQL (0.3ms)  SELECT name
63
+ FROM sqlite_master
64
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
65
+ 
66
+ SQL (0.3ms) select sqlite_version(*)
67
+ SQL (0.2ms)  SELECT name
68
+ FROM sqlite_master
69
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
70
+ 
71
+ SQL (11.1ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer(11), "person_id" integer(11)) 
72
+ SQL (0.3ms)  SELECT name
73
+ FROM sqlite_master
74
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
75
+ 
76
+ SQL (6.7ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "description" text NOT NULL, "lastupdate" date) 
77
+ SQL (0.3ms)  SELECT name
78
+ FROM sqlite_master
79
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
80
+ 
81
+ SQL (16.8ms) CREATE TABLE "article_properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "article_id" integer, "key" varchar(255) NOT NULL, "value" varchar(255)) 
82
+ SQL (0.3ms)  SELECT name
83
+ FROM sqlite_master
84
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
85
+ 
86
+ SQL (4.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
87
+ SQL (0.3ms)  SELECT name
88
+ FROM sqlite_master
89
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
90
+ 
91
+ SQL (4.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' NOT NULL, "lastupdate" date) 
92
+ SQL (0.3ms)  SELECT name
93
+ FROM sqlite_master
94
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
95
+ 
96
+ SQL (4.8ms) CREATE TABLE "resumes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "content" text) 
97
+ SQL (0.4ms)  SELECT name
98
+ FROM sqlite_master
99
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
100
+ 
101
+ SQL (6.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
102
+ SQL (19.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
103
+ SQL (0.4ms)  SELECT name
104
+ FROM sqlite_master
105
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
106
+ 
107
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
108
+ SQL (4.0ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
109
+ SQL (0.8ms)  SELECT name
110
+ FROM sqlite_master
111
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
112
+ 
113
+ SQL (0.1ms) SELECT version FROM schema_migrations
114
+
115
+
116
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-20 12:18:02) [GET]
117
+ Article Load (0.6ms) SELECT * FROM "articles" 
118
+
119
+ ArgumentError (wrong number of arguments (3 for 2)):
120
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-2.3.0/lib/locale_rails/action_view.rb:59:in `find_template_without_locale_rails'
121
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-2.3.0/lib/locale_rails/action_view.rb:59:in `find_template'
122
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-2.3.0/lib/locale_rails/action_view.rb:55:in `each'
123
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-2.3.0/lib/locale_rails/action_view.rb:55:in `find_template'
124
+ actionpack (2.3.0) lib/action_controller/base.rb:1319:in `default_template'
125
+ actionpack (2.3.0) lib/action_controller/layout.rb:234:in `candidate_for_layout?'
126
+ actionpack (2.3.0) lib/action_controller/layout.rb:257:in `pick_layout'
127
+ actionpack (2.3.0) lib/action_controller/base.rb:885:in `render_without_benchmark'
128
+ actionpack (2.3.0) lib/action_controller/benchmarking.rb:51:in `render'
129
+ actionpack (2.3.0) lib/action_controller/benchmarking.rb:51:in `render'
130
+ app/controllers/articles_controller.rb:18:in `index'
131
+ actionpack (2.3.0) lib/action_controller/base.rb:1261:in `send'
132
+ actionpack (2.3.0) lib/action_controller/base.rb:1261:in `perform_action_without_filters'
133
+ actionpack (2.3.0) lib/action_controller/filters.rb:617:in `call_filters'
134
+ actionpack (2.3.0) lib/action_controller/filters.rb:610:in `perform_action_without_benchmark'
135
+ actionpack (2.3.0) lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
136
+ actionpack (2.3.0) lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
137
+ actionpack (2.3.0) lib/action_controller/rescue.rb:154:in `perform_action_without_flash'
138
+ actionpack (2.3.0) lib/action_controller/flash.rb:141:in `perform_action'
139
+ actionpack (2.3.0) lib/action_controller/base.rb:523:in `send'
140
+ actionpack (2.3.0) lib/action_controller/base.rb:523:in `process_without_filters'
141
+ actionpack (2.3.0) lib/action_controller/filters.rb:606:in `process'
142
+ actionpack (2.3.0) lib/action_controller/base.rb:391:in `process'
143
+ actionpack (2.3.0) lib/action_controller/base.rb:386:in `call'
144
+ actionpack (2.3.0) lib/action_controller/routing/route_set.rb:433:in `call'
145
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:65:in `dispatch'
146
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:88:in `_call'
147
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:59:in `initialize'
148
+ activerecord (2.3.0) lib/active_record/query_cache.rb:29:in `call'
149
+ activerecord (2.3.0) lib/active_record/query_cache.rb:29:in `call'
150
+ activerecord (2.3.0) lib/active_record/connection_adapters/abstract/query_cache.rb:34:in `cache'
151
+ activerecord (2.3.0) lib/active_record/query_cache.rb:9:in `cache'
152
+ activerecord (2.3.0) lib/active_record/query_cache.rb:28:in `call'
153
+ actionpack (2.3.0) lib/action_controller/params_parser.rb:15:in `call'
154
+ actionpack (2.3.0) lib/action_controller/rewindable_input.rb:25:in `call'
155
+ actionpack (2.3.0) lib/action_controller/session/cookie_store.rb:93:in `call'
156
+ actionpack (2.3.0) lib/action_controller/failsafe.rb:11:in `call'
157
+ actionpack (2.3.0) lib/action_controller/rack_ext/lock.rb:15:in `call'
158
+ actionpack (2.3.0) lib/action_controller/rack_ext/lock.rb:15:in `synchronize'
159
+ actionpack (2.3.0) lib/action_controller/rack_ext/lock.rb:15:in `call'
160
+ actionpack (2.3.0) lib/action_controller/dispatcher.rb:83:in `call'
161
+ rails (2.3.0) lib/rails/rack/static.rb:27:in `call'
162
+ rails (2.3.0) lib/rails/rack/log_tailer.rb:17:in `call'
163
+ rails (2.3.0) lib/commands/server.rb:100
164
+
165
+ Rendered rescues/_trace (124.8ms)
166
+ Rendered rescues/_request_and_response (0.7ms)
167
+ Rendering rescues/layout (internal_server_error)
168
+ SQL (0.8ms)  SELECT name
169
+ FROM sqlite_master
170
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
171
+ 
172
+ SQL (0.1ms) SELECT version FROM schema_migrations
173
+
174
+
175
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-20 12:23:23) [GET]
176
+ Article Load (0.9ms) SELECT * FROM "articles" 
177
+ Rendering template within layouts/application
178
+ Rendering articles/list_fr
179
+ Completed in 349ms (View: 327, DB: 1) | 200 OK [http://localhost/articles]
180
+
181
+
182
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-20 12:29:48) [GET]
183
+ Article Load (0.9ms) SELECT * FROM "articles" 
184
+ Rendering template within layouts/application
185
+ Rendering articles/list
186
+ Completed in 91ms (View: 78, DB: 1) | 200 OK [http://localhost/articles]
187
+ SQL (0.9ms)  SELECT name
188
+ FROM sqlite_master
189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
190
+ 
191
+ SQL (0.2ms) SELECT version FROM schema_migrations
192
+
193
+
194
+ Processing ArticlesController#new (for 127.0.0.1 at 2009-03-20 12:33:33) [GET]
195
+ Rendering template within layouts/application
196
+ Rendering articles/new
197
+ Rendered articles/_form (86.8ms)
198
+ Completed in 480ms (View: 467, DB: 0) | 200 OK [http://localhost/articles/new]
199
+
200
+
201
+ Processing ArticlesController#create (for 127.0.0.1 at 2009-03-20 12:33:35) [POST]
202
+ Parameters: {"article"=>{"lastupdate(2i)"=>"3", "lastupdate(3i)"=>"17", "title"=>"", "description"=>"", "lastupdate(1i)"=>"2009"}, "commit"=>"作成", "authenticity_token"=>"0rN/ar8u+GMk8tU5tXcIfbvInwkX4lRhFdKNuxAdltE="}
203
+ Article Exists (0.4ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
204
+ Rendering template within layouts/application
205
+ Rendering articles/new
206
+ Rendered articles/_form (375.0ms)
207
+ Completed in 450ms (View: 420, DB: 0) | 200 OK [http://localhost/articles]
208
+
209
+
210
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-20 12:33:38) [GET]
211
+ Article Load (0.9ms) SELECT * FROM "articles" 
212
+ Rendering template within layouts/application
213
+ Rendering articles/list
214
+ Completed in 148ms (View: 27, DB: 1) | 200 OK [http://localhost/articles]
215
+
216
+
217
+ Processing ArticlesController#new (for 127.0.0.1 at 2009-03-20 12:33:40) [GET]
218
+ Rendering template within layouts/application
219
+ Rendering articles/new
220
+ Rendered articles/_form (9.4ms)
221
+ Completed in 39ms (View: 30, DB: 0) | 200 OK [http://localhost/articles/new]
222
+
223
+
224
+ Processing ArticlesController#create (for 127.0.0.1 at 2009-03-20 12:33:42) [POST]
225
+ Parameters: {"article"=>{"lastupdate(2i)"=>"3", "lastupdate(3i)"=>"17", "title"=>"", "description"=>"", "lastupdate(1i)"=>"2009"}, "commit"=>"作成", "authenticity_token"=>"0rN/ar8u+GMk8tU5tXcIfbvInwkX4lRhFdKNuxAdltE="}
226
+ Article Exists (0.3ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
227
+ Rendering template within layouts/application
228
+ Rendering articles/new
229
+ Rendered articles/_form (16.8ms)
230
+ Completed in 57ms (View: 38, DB: 0) | 200 OK [http://localhost/articles]
231
+
232
+
233
+ Processing ArticlesController#create (for 127.0.0.1 at 2009-03-20 12:33:49) [POST]
234
+ Parameters: {"article"=>{"lastupdate(2i)"=>"3", "lastupdate(3i)"=>"17", "title"=>"aaaaaaaaaaaaaaaa", "description"=>"bbbbbbbbbbbb", "lastupdate(1i)"=>"2009"}, "commit"=>"作成", "authenticity_token"=>"0rN/ar8u+GMk8tU5tXcIfbvInwkX4lRhFdKNuxAdltE="}
235
+ Article Exists (0.2ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = 'aaaaaaaaaaaaaaaa') LIMIT 1
236
+ Article Create (0.4ms) INSERT INTO "articles" ("lastupdate", "title", "description") VALUES('2009-03-17', 'aaaaaaaaaaaaaaaa', 'bbbbbbbbbbbb')
237
+ Redirected to http://localhost:3000/articles/1
238
+ Completed in 389ms (DB: 1) | 302 Found [http://localhost/articles]
239
+
240
+
241
+ Processing ArticlesController#show (for 127.0.0.1 at 2009-03-20 12:33:49) [GET]
242
+ Parameters: {"id"=>"1"}
243
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 1) 
244
+ Rendering template within layouts/application
245
+ Rendering articles/show
246
+ Completed in 94ms (View: 85, DB: 0) | 200 OK [http://localhost/articles/1]
247
+ SQL (0.9ms)  SELECT name
248
+ FROM sqlite_master
249
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
250
+ 
251
+ SQL (0.2ms) SELECT version FROM schema_migrations
252
+
253
+
254
+ Processing ArticlesController#show (for 127.0.0.1 at 2009-03-20 12:50:01) [GET]
255
+ Parameters: {"id"=>"1"}
256
+ Article Load (0.6ms) SELECT * FROM "articles" WHERE ("articles"."id" = 1) 
257
+ Rendering template within layouts/application
258
+ Rendering articles/show
259
+ Completed in 68ms (View: 44, DB: 1) | 200 OK [http://localhost/articles/1]
260
+
261
+
262
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-20 12:50:06) [GET]
263
+ Article Load (0.6ms) SELECT * FROM "articles" 
264
+ Rendering template within layouts/application
265
+ Rendering articles/list
266
+ Completed in 27ms (View: 20, DB: 1) | 200 OK [http://localhost/articles]
267
+ SQL (0.8ms)  SELECT name
268
+ FROM sqlite_master
269
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
270
+ 
271
+ SQL (0.1ms) SELECT version FROM schema_migrations
272
+
273
+
274
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-20 12:51:14) [GET]
275
+
276
+ ActionController::UnknownAction (No action responded to distance_of_time_in_words. Actions: custom_error_message):
277
+
278
+
279
+ Rendering rescues/layout (not_found)
280
+ SQL (1.4ms)  SELECT name
281
+ FROM sqlite_master
282
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
283
+ 
284
+ SQL (0.3ms) SELECT version FROM schema_migrations
285
+
286
+
287
+ Processing UsersController#custom_error_message (for 127.0.0.1 at 2009-03-20 12:52:33) [GET]
288
+ Rendering template within layouts/users
289
+ Rendering users/custom_error_message
290
+ Completed in 142ms (View: 74, DB: 0) | 200 OK [http://localhost/users/custom_error_message]
291
+
292
+
293
+ Processing ArticlesController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-20 12:52:37) [GET]
294
+ Article Exists (0.3ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
295
+ Rendering template within layouts/application
296
+ Rendering articles/change_title_error_messages_for
297
+ Completed in 1037ms (View: 983, DB: 0) | 200 OK [http://localhost/articles/change_title_error_messages_for]
298
+
299
+
300
+ Processing ArticlesController#multi_error_messages_for (for 127.0.0.1 at 2009-03-20 12:52:46) [GET]
301
+ Article Exists (0.3ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
302
+ Rendering template within layouts/application
303
+ Rendering articles/multi_error_messages_for
304
+ Completed in 127ms (View: 89, DB: 0) | 200 OK [http://localhost/articles/multi_error_messages_for]
305
+ SQL (0.8ms)  SELECT name
306
+ FROM sqlite_master
307
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
308
+ 
309
+ SQL (0.1ms) SELECT version FROM schema_migrations
310
+
311
+
312
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-20 12:55:53) [GET]
313
+
314
+ ActionView::MissingTemplate (Missing template users/distance_of_time_in_words.erb in view path app/views):
315
+ /usr/lib/ruby/gems/1.8/gems/locale_rails-2.3.0/lib/locale_rails/action_view.rb:35:in `find_template'
316
+
317
+ Rendering rescues/layout (internal_server_error)
318
+ SQL (0.8ms)  SELECT name
319
+ FROM sqlite_master
320
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
321
+ 
322
+ SQL (0.1ms) SELECT version FROM schema_migrations
323
+
324
+
325
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-20 12:58:23) [GET]
326
+ Rendering template within layouts/users
327
+ Rendering users/distance_of_time_in_words
328
+ Completed in 82ms (View: 75, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
329
+
330
+
331
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-20 12:59:37) [GET]
332
+ Rendering template within layouts/users
333
+ Rendering users/distance_of_time_in_words
334
+ Completed in 47ms (View: 43, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
335
+ SQL (0.9ms)  SELECT name
336
+ FROM sqlite_master
337
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
338
+ 
339
+ SQL (0.2ms) SELECT version FROM schema_migrations
340
+ SQL (0.5ms)  SELECT name
341
+ FROM sqlite_master
342
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
343
+ 
344
+ SQL (0.1ms) SELECT version FROM schema_migrations
345
+ SQL (0.2ms) select sqlite_version(*)
346
+ SQL (0.2ms)  SELECT name
347
+ FROM sqlite_master
348
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
349
+ 
350
+ SQL (3.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer(11), "person_id" integer(11)) 
351
+ SQL (0.2ms)  SELECT name
352
+ FROM sqlite_master
353
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
354
+ 
355
+ SQL (3.1ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "description" text NOT NULL, "lastupdate" date) 
356
+ SQL (0.2ms)  SELECT name
357
+ FROM sqlite_master
358
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
359
+ 
360
+ SQL (5.0ms) CREATE TABLE "article_properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "article_id" integer, "key" varchar(255) NOT NULL, "value" varchar(255)) 
361
+ SQL (0.2ms)  SELECT name
362
+ FROM sqlite_master
363
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
364
+ 
365
+ SQL (4.9ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
366
+ SQL (0.3ms)  SELECT name
367
+ FROM sqlite_master
368
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
369
+ 
370
+ SQL (5.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' NOT NULL, "lastupdate" date) 
371
+ SQL (0.3ms)  SELECT name
372
+ FROM sqlite_master
373
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
374
+ 
375
+ SQL (5.1ms) CREATE TABLE "resumes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "content" text) 
376
+ SQL (0.3ms)  SELECT name
377
+ FROM sqlite_master
378
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
379
+ 
380
+ SQL (4.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
381
+ SQL (5.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
382
+ SQL (0.3ms)  SELECT name
383
+ FROM sqlite_master
384
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
385
+ 
386
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
387
+ SQL (4.7ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
388
+ SQL (0.8ms)  SELECT name
389
+ FROM sqlite_master
390
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
391
+ 
392
+ SQL (0.1ms) SELECT version FROM schema_migrations
393
+
394
+
395
+ Processing ArticlesController#show (for 127.0.0.1 at 2009-03-20 15:55:48) [GET]
396
+ Parameters: {"id"=>"1"}
397
+ Article Load (0.3ms) SELECT * FROM "articles" WHERE ("articles"."id" = 1) 
398
+ Rendering template within layouts/application
399
+ Rendering articles/show
400
+ Completed in 42ms (View: 27, DB: 0) | 200 OK [http://localhost/articles/1]
401
+
402
+
403
+ Processing ArticlesController#show (for 127.0.0.1 at 2009-03-20 15:55:54) [GET]
404
+ Parameters: {"id"=>"2"}
405
+ Article Load (0.2ms) SELECT * FROM "articles" WHERE ("articles"."id" = 2) 
406
+
407
+ ActiveRecord::RecordNotFound (Couldn't find Article with ID=2):
408
+ app/controllers/articles_controller.rb:28:in `show'
409
+
410
+ Rendered rescues/_trace (36.0ms)
411
+ Rendered rescues/_request_and_response (1.3ms)
412
+ Rendering rescues/layout (not_found)
413
+ SQL (0.9ms)  SELECT name
414
+ FROM sqlite_master
415
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
416
+ 
417
+ SQL (0.2ms) SELECT version FROM schema_migrations
418
+
419
+
420
+ Processing ArticlesController#new (for 127.0.0.1 at 2009-03-20 15:57:06) [GET]
421
+ Rendering template within layouts/application
422
+ Rendering articles/new
423
+ Rendered articles/_form (9.6ms)
424
+ Completed in 53ms (View: 38, DB: 0) | 200 OK [http://localhost/articles/new]
425
+
426
+
427
+ Processing ArticlesController#new (for 127.0.0.1 at 2009-03-20 15:57:15) [GET]
428
+ Parameters: {"lang"=>"fr"}
429
+ Rendering template within layouts/application
430
+ Rendering articles/new
431
+ Rendered articles/_form_fr (0.8ms)
432
+ Completed in 35ms (View: 22, DB: 0) | 200 OK [http://localhost/articles/new?lang=fr]
433
+ SQL (0.8ms)  SELECT name
434
+ FROM sqlite_master
435
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
436
+ 
437
+ SQL (0.1ms) SELECT version FROM schema_migrations
438
+ SQL (0.8ms)  SELECT name
439
+ FROM sqlite_master
440
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
441
+ 
442
+ SQL (0.1ms) SELECT version FROM schema_migrations
443
+ SQL (1.0ms)  SELECT name
444
+ FROM sqlite_master
445
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
446
+ 
447
+ SQL (0.2ms) SELECT version FROM schema_migrations
448
+
449
+
450
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-20 16:04:15) [GET]
451
+ Rendering template within layouts/users
452
+ Rendering users/distance_of_time_in_words
453
+ Completed in 70ms (View: 64, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
454
+ SQL (0.9ms)  SELECT name
455
+ FROM sqlite_master
456
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
457
+ 
458
+ SQL (0.2ms) SELECT version FROM schema_migrations
459
+
460
+
461
+ Processing ArticlesController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-20 16:17:36) [GET]
462
+ Article Exists (0.3ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
463
+ Rendering template within layouts/application
464
+ Rendering articles/change_title_error_messages_for
465
+ Completed in 169ms (View: 134, DB: 0) | 200 OK [http://localhost/articles/change_title_error_messages_for]
466
+ SQL (0.9ms)  SELECT name
467
+ FROM sqlite_master
468
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
469
+ 
470
+ SQL (0.2ms) SELECT version FROM schema_migrations
471
+ SQL (0.5ms)  SELECT name
472
+ FROM sqlite_master
473
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
474
+ 
475
+ SQL (0.1ms) SELECT version FROM schema_migrations
476
+ SQL (0.2ms) select sqlite_version(*)
477
+ SQL (0.2ms)  SELECT name
478
+ FROM sqlite_master
479
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
480
+ 
481
+ SQL (6.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer(11), "person_id" integer(11)) 
482
+ SQL (0.2ms)  SELECT name
483
+ FROM sqlite_master
484
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
485
+ 
486
+ SQL (3.3ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "description" text NOT NULL, "lastupdate" date) 
487
+ SQL (0.2ms)  SELECT name
488
+ FROM sqlite_master
489
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
490
+ 
491
+ SQL (4.9ms) CREATE TABLE "article_properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "article_id" integer, "key" varchar(255) NOT NULL, "value" varchar(255)) 
492
+ SQL (0.2ms)  SELECT name
493
+ FROM sqlite_master
494
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
495
+ 
496
+ SQL (5.7ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
497
+ SQL (0.3ms)  SELECT name
498
+ FROM sqlite_master
499
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
500
+ 
501
+ SQL (4.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' NOT NULL, "lastupdate" date) 
502
+ SQL (0.3ms)  SELECT name
503
+ FROM sqlite_master
504
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
505
+ 
506
+ SQL (5.3ms) CREATE TABLE "resumes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "content" text) 
507
+ SQL (0.4ms)  SELECT name
508
+ FROM sqlite_master
509
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
510
+ 
511
+ SQL (5.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
512
+ SQL (6.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
513
+ SQL (0.3ms)  SELECT name
514
+ FROM sqlite_master
515
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
516
+ 
517
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
518
+ SQL (4.4ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
519
+ SQL (1.4ms)  SELECT name
520
+ FROM sqlite_master
521
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
522
+ 
523
+ SQL (0.3ms) SELECT version FROM schema_migrations
524
+ SQL (0.7ms)  SELECT name
525
+ FROM sqlite_master
526
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
527
+ 
528
+ SQL (0.3ms) SELECT version FROM schema_migrations
529
+ SQL (0.3ms) select sqlite_version(*)
530
+ SQL (0.3ms)  SELECT name
531
+ FROM sqlite_master
532
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
533
+ 
534
+ SQL (6.8ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer(11), "person_id" integer(11)) 
535
+ SQL (0.3ms)  SELECT name
536
+ FROM sqlite_master
537
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
538
+ 
539
+ SQL (3.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "description" text NOT NULL, "lastupdate" date) 
540
+ SQL (0.4ms)  SELECT name
541
+ FROM sqlite_master
542
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
543
+ 
544
+ SQL (4.6ms) CREATE TABLE "article_properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "article_id" integer, "key" varchar(255) NOT NULL, "value" varchar(255)) 
545
+ SQL (0.4ms)  SELECT name
546
+ FROM sqlite_master
547
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
548
+ 
549
+ SQL (33.5ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
550
+ SQL (0.5ms)  SELECT name
551
+ FROM sqlite_master
552
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
553
+ 
554
+ SQL (6.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' NOT NULL, "lastupdate" date) 
555
+ SQL (0.5ms)  SELECT name
556
+ FROM sqlite_master
557
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
558
+ 
559
+ SQL (5.0ms) CREATE TABLE "resumes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "content" text) 
560
+ SQL (0.6ms)  SELECT name
561
+ FROM sqlite_master
562
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
563
+ 
564
+ SQL (6.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
565
+ SQL (6.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
566
+ SQL (0.6ms)  SELECT name
567
+ FROM sqlite_master
568
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
569
+ 
570
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
571
+ SQL (4.3ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
572
+ SQL (0.9ms)  SELECT name
573
+ FROM sqlite_master
574
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
575
+ 
576
+ SQL (0.2ms) SELECT version FROM schema_migrations
577
+ SQL (0.5ms)  SELECT name
578
+ FROM sqlite_master
579
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
580
+ 
581
+ SQL (0.1ms) SELECT version FROM schema_migrations
582
+ SQL (0.2ms) select sqlite_version(*)
583
+ SQL (0.2ms)  SELECT name
584
+ FROM sqlite_master
585
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
586
+ 
587
+ SQL (3.5ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer(11), "person_id" integer(11)) 
588
+ SQL (0.2ms)  SELECT name
589
+ FROM sqlite_master
590
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
591
+ 
592
+ SQL (2.9ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "description" text NOT NULL, "lastupdate" date) 
593
+ SQL (0.2ms)  SELECT name
594
+ FROM sqlite_master
595
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
596
+ 
597
+ SQL (3.9ms) CREATE TABLE "article_properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "article_id" integer, "key" varchar(255) NOT NULL, "value" varchar(255)) 
598
+ SQL (0.3ms)  SELECT name
599
+ FROM sqlite_master
600
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
601
+ 
602
+ SQL (6.6ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
603
+ SQL (0.3ms)  SELECT name
604
+ FROM sqlite_master
605
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
606
+ 
607
+ SQL (5.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' NOT NULL, "lastupdate" date) 
608
+ SQL (0.3ms)  SELECT name
609
+ FROM sqlite_master
610
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
611
+ 
612
+ SQL (6.0ms) CREATE TABLE "resumes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "content" text) 
613
+ SQL (0.3ms)  SELECT name
614
+ FROM sqlite_master
615
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
616
+ 
617
+ SQL (5.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
618
+ SQL (6.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
619
+ SQL (0.4ms)  SELECT name
620
+ FROM sqlite_master
621
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
622
+ 
623
+ SQL (0.1ms) SELECT version FROM "schema_migrations"
624
+ SQL (5.3ms) INSERT INTO "schema_migrations" (version) VALUES ('1')
625
+ SQL (0.8ms)  SELECT name
626
+ FROM sqlite_master
627
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
628
+ 
629
+ SQL (0.2ms) SELECT version FROM schema_migrations
630
+ SQL (0.8ms)  SELECT name
631
+ FROM sqlite_master
632
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
633
+ 
634
+ SQL (0.2ms) SELECT version FROM schema_migrations
635
+ SQL (0.9ms)  SELECT name
636
+ FROM sqlite_master
637
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
638
+ 
639
+ SQL (0.2ms) SELECT version FROM schema_migrations
640
+ SQL (0.9ms)  SELECT name
641
+ FROM sqlite_master
642
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
643
+ 
644
+ SQL (0.2ms) SELECT version FROM schema_migrations
645
+ SQL (0.9ms)  SELECT name
646
+ FROM sqlite_master
647
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
648
+ 
649
+ SQL (0.2ms) SELECT version FROM schema_migrations
650
+ SQL (0.8ms)  SELECT name
651
+ FROM sqlite_master
652
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
653
+ 
654
+ SQL (0.1ms) SELECT version FROM schema_migrations
655
+ SQL (0.2ms) select sqlite_version(*)
656
+ SQL (0.3ms)  SELECT name
657
+ FROM sqlite_master
658
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
659
+ 
660
+ SQL (4.9ms) DROP TABLE "accounts"
661
+ SQL (3.4ms) CREATE TABLE "accounts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "amount" integer(11), "person_id" integer(11)) 
662
+ SQL (0.4ms)  SELECT name
663
+ FROM sqlite_master
664
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
665
+ 
666
+ SQL (8.1ms) DROP TABLE "articles"
667
+ SQL (6.0ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255) DEFAULT '' NOT NULL, "description" text NOT NULL, "lastupdate" date) 
668
+ SQL (0.5ms)  SELECT name
669
+ FROM sqlite_master
670
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
671
+ 
672
+ SQL (6.2ms) DROP TABLE "article_properties"
673
+ SQL (4.5ms) CREATE TABLE "article_properties" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "article_id" integer, "key" varchar(255) NOT NULL, "value" varchar(255)) 
674
+ SQL (0.4ms)  SELECT name
675
+ FROM sqlite_master
676
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
677
+ 
678
+ SQL (3.5ms) DROP TABLE "people"
679
+ SQL (3.8ms) CREATE TABLE "people" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
680
+ SQL (0.4ms)  SELECT name
681
+ FROM sqlite_master
682
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
683
+ 
684
+ SQL (3.7ms) DROP TABLE "users"
685
+ SQL (3.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) DEFAULT '' NOT NULL, "lastupdate" date) 
686
+ SQL (0.4ms)  SELECT name
687
+ FROM sqlite_master
688
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
689
+ 
690
+ SQL (3.9ms) DROP TABLE "resumes"
691
+ SQL (4.0ms) CREATE TABLE "resumes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer NOT NULL, "content" text) 
692
+ SQL (0.4ms)  SELECT name
693
+ FROM sqlite_master
694
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
695
+ 
696
+ SQL (0.2ms) SELECT version FROM "schema_migrations"
697
+ SQL (0.9ms)  SELECT name
698
+ FROM sqlite_master
699
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
700
+ 
701
+ SQL (0.2ms) SELECT version FROM schema_migrations
702
+ SQL (0.9ms)  SELECT name
703
+ FROM sqlite_master
704
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
705
+ 
706
+ SQL (0.2ms) SELECT version FROM schema_migrations
707
+ SQL (0.9ms)  SELECT name
708
+ FROM sqlite_master
709
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
710
+ 
711
+ SQL (0.2ms) SELECT version FROM schema_migrations
712
+ SQL (0.9ms)  SELECT name
713
+ FROM sqlite_master
714
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
715
+ 
716
+ SQL (0.2ms) SELECT version FROM schema_migrations
717
+ SQL (0.9ms)  SELECT name
718
+ FROM sqlite_master
719
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
720
+ 
721
+ SQL (0.2ms) SELECT version FROM schema_migrations
722
+ SQL (0.7ms)  SELECT name
723
+ FROM sqlite_master
724
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
725
+ 
726
+ SQL (0.5ms)  SELECT name
727
+ FROM sqlite_master
728
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
729
+ 
730
+ SQL (0.5ms)  SELECT name
731
+ FROM sqlite_master
732
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
733
+ 
734
+ SQL (0.9ms)  SELECT name
735
+ FROM sqlite_master
736
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
737
+ 
738
+ SQL (0.5ms)  SELECT name
739
+ FROM sqlite_master
740
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
741
+ 
742
+ SQL (0.9ms)  SELECT name
743
+ FROM sqlite_master
744
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
745
+ 
746
+ SQL (0.2ms) SELECT version FROM schema_migrations
747
+ SQL (0.7ms)  SELECT name
748
+ FROM sqlite_master
749
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
750
+ 
751
+ SQL (0.5ms)  SELECT name
752
+ FROM sqlite_master
753
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
754
+ 
755
+ SQL (0.6ms)  SELECT name
756
+ FROM sqlite_master
757
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
758
+ 
759
+ SQL (0.5ms)  SELECT name
760
+ FROM sqlite_master
761
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
762
+ 
763
+ SQL (0.5ms)  SELECT name
764
+ FROM sqlite_master
765
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
766
+ 
767
+ SQL (0.9ms)  SELECT name
768
+ FROM sqlite_master
769
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
770
+ 
771
+ SQL (0.2ms) SELECT version FROM schema_migrations
772
+ SQL (0.9ms)  SELECT name
773
+ FROM sqlite_master
774
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
775
+ 
776
+ SQL (0.2ms) SELECT version FROM schema_migrations
777
+ SQL (0.7ms)  SELECT name
778
+ FROM sqlite_master
779
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
780
+ 
781
+ SQL (0.5ms)  SELECT name
782
+ FROM sqlite_master
783
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
784
+ 
785
+ SQL (0.6ms)  SELECT name
786
+ FROM sqlite_master
787
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
788
+ 
789
+ SQL (0.5ms)  SELECT name
790
+ FROM sqlite_master
791
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
792
+ 
793
+ SQL (0.5ms)  SELECT name
794
+ FROM sqlite_master
795
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
796
+ 
797
+ SQL (1.4ms)  SELECT name
798
+ FROM sqlite_master
799
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
800
+ 
801
+ SQL (0.3ms) SELECT version FROM schema_migrations
802
+ SQL (1.2ms)  SELECT name
803
+ FROM sqlite_master
804
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
805
+ 
806
+ SQL (0.6ms)  SELECT name
807
+ FROM sqlite_master
808
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
809
+ 
810
+ SQL (0.8ms)  SELECT name
811
+ FROM sqlite_master
812
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
813
+ 
814
+ SQL (0.7ms)  SELECT name
815
+ FROM sqlite_master
816
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
817
+ 
818
+ SQL (0.8ms)  SELECT name
819
+ FROM sqlite_master
820
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
821
+ 
822
+ SQL (0.9ms)  SELECT name
823
+ FROM sqlite_master
824
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
825
+ 
826
+ SQL (0.2ms) SELECT version FROM schema_migrations
827
+
828
+
829
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 17:58:48) [GET]
830
+ Rendering template within layouts/users
831
+ Rendering users/distance_of_time_in_words
832
+ Completed in 75ms (View: 72, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
833
+
834
+
835
+ Processing UsersController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-22 17:58:58) [GET]
836
+
837
+ ActionController::UnknownAction (No action responded to change_title_error_messages_for. Actions: custom_error_message and distance_of_time_in_words):
838
+
839
+
840
+ Rendering rescues/layout (not_found)
841
+
842
+
843
+ Processing UsersController#custom_error_message (for 127.0.0.1 at 2009-03-22 17:59:08) [GET]
844
+ Rendering template within layouts/users
845
+ Rendering users/custom_error_message
846
+ Completed in 405ms (View: 35, DB: 0) | 200 OK [http://localhost/users/custom_error_message]
847
+
848
+
849
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 17:59:13) [GET]
850
+ Rendering template within layouts/users
851
+ Rendering users/distance_of_time_in_words
852
+ Completed in 69ms (View: 63, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
853
+ SQL (0.8ms)  SELECT name
854
+ FROM sqlite_master
855
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
856
+ 
857
+ SQL (0.1ms) SELECT version FROM schema_migrations
858
+
859
+
860
+ Processing UsersController#custom_error_message (for 127.0.0.1 at 2009-03-22 18:01:08) [GET]
861
+ Rendering template within layouts/users
862
+ Rendering users/custom_error_message
863
+ Completed in 61ms (View: 33, DB: 0) | 200 OK [http://localhost/users/custom_error_message]
864
+
865
+
866
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-22 18:01:12) [GET]
867
+ Article Load (0.9ms) SELECT * FROM "articles" 
868
+ Rendering template within layouts/application
869
+ Rendering articles/list
870
+ Completed in 73ms (View: 36, DB: 1) | 200 OK [http://localhost/articles]
871
+
872
+
873
+ Processing ArticlesController#new (for 127.0.0.1 at 2009-03-22 18:01:14) [GET]
874
+ Rendering template within layouts/application
875
+ Rendering articles/new
876
+ Rendered articles/_form (18.3ms)
877
+ Completed in 252ms (View: 128, DB: 0) | 200 OK [http://localhost/articles/new]
878
+
879
+
880
+ Processing ArticlesController#create (for 127.0.0.1 at 2009-03-22 18:01:16) [POST]
881
+ Parameters: {"article"=>{"lastupdate(2i)"=>"3", "lastupdate(3i)"=>"17", "title"=>"", "description"=>"", "lastupdate(1i)"=>"2009"}, "commit"=>"作成", "authenticity_token"=>"Y+BCnfAzvSnQeWMhbYgOOZcTySSu06AC+QKlBKMFuyg="}
882
+ Article Exists (0.4ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
883
+ Rendering template within layouts/application
884
+ Rendering articles/new
885
+ Rendered articles/_form (22.4ms)
886
+ Completed in 63ms (View: 31, DB: 0) | 200 OK [http://localhost/articles]
887
+
888
+
889
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-22 18:01:19) [GET]
890
+ Article Load (0.6ms) SELECT * FROM "articles" 
891
+ Rendering template within layouts/application
892
+ Rendering articles/list
893
+ Completed in 158ms (View: 149, DB: 1) | 200 OK [http://localhost/articles]
894
+
895
+
896
+ Processing MailersController#multipart (for 127.0.0.1 at 2009-03-22 18:01:23) [GET]
897
+ Parameters: {"lang"=>"en"}
898
+
899
+ NoMethodError (undefined method `create_bang_without_gettext' for #<Mailer:0x7f4841656068>):
900
+ /usr/lib/ruby/gems/1.8/gems/gettext_rails-2.0.0/lib/gettext_rails/action_mailer.rb:30:in `create!'
901
+ app/controllers/mailers_controller.rb:15:in `multipart'
902
+
903
+ Rendered rescues/_trace (35.8ms)
904
+ Rendered rescues/_request_and_response (1.4ms)
905
+ Rendering rescues/layout (internal_server_error)
906
+ SQL (0.8ms)  SELECT name
907
+ FROM sqlite_master
908
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
909
+ 
910
+ SQL (0.2ms) SELECT version FROM schema_migrations
911
+
912
+
913
+ Processing MailersController#multipart (for 127.0.0.1 at 2009-03-22 18:02:47) [GET]
914
+ Parameters: {"lang"=>"en"}
915
+ Sent mail to mutomasa@gmail.com
916
+
917
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
918
+ From: mutomasa@gmail.com
919
+ To: mutomasa@gmail.com
920
+ Subject: multipart test mail
921
+ Mime-Version: 1.0
922
+ Content-Type: multipart/mixed; boundary=mimepart_49c5feb7f3b7c_27d33fc57700d97c1de
923
+
924
+
925
+ --mimepart_49c5feb7f3b7c_27d33fc57700d97c1de
926
+ Content-Type: text/plain; charset=iso-2022-jp
927
+ Content-Transfer-Encoding: 7bit
928
+ Content-Disposition: inline
929
+
930
+ Hi foo,
931
+
932
+ I attached public/images/* for example.
933
+
934
+ --
935
+ bar@example.com
936
+
937
+ --mimepart_49c5feb7f3b7c_27d33fc57700d97c1de
938
+ Content-Type: application/octet-stream; name=rails.png
939
+ Content-Transfer-Encoding: Base64
940
+ Content-Disposition: attachment; filename=rails.png
941
+
942
+ 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
1017
+ FaZRp2GGdo+mhpv6bBkNhepRzERpdASeW1aKSZ5RidpoUsRAvQ+NJCnJHHl+
1018
+ bcZ80vjkij661vo/rWMQSitWskgnNv7LP+MNN38NadYuCPtYCItIFTjMRgfe
1019
+ qClkhkFZ+FXCQmpFuyKXii7xNI93LT9szdrUMsNZnJkuwZX6zlKdaqRXrESi
1020
+ q/e19kBC3NisLt+Gc/7jW0gtZ51Bl1MCmUaoM//aRv0aapnF0l362KIUnI6E
1021
+ yuhCUOuWrIVfAZcRAj5NJWJ0C5epP19y1awJLWhdt/a1t3KcGF8Yxb5bbsLI
1022
+ toeYmxZRkRWq46IrR9StX/tcw4oKsYH+nlrZpmbcZQ7R1tDPBvMbdIwofLpV
1023
+ KIfcJy5nCa5WRhnDFkVOx+s5kr29GPzpfUxsuxg0zlQUxSZudG/CqNOSIJxY
1024
+ CclGCA7fDRDpiCK6gIVfidVmWXrHRh0fmBd+eSYIIEcWdRhdJJsWp+aQT1vI
1025
+ 9nYjnl3wuhSJLuhAJJ1WQWDisadUELCi0bD1WlscMpq6lrV1Ft0riC9tVcFD
1026
+ 8odfDVS9bod5pNGgC3+XFnxsXA2rsw25/gHMTcwiRxdbvLgPsY7s61IktWSZ
1027
+ inw6l8SbupNGvUlphB1yZY3aIhfZtRmz4XS3oMoA5JP6BywdvBIr24ytMdzs
1028
+ WjHaMcnI0nXRG5FkdCrnS6gy6QzccxeMZDsJW+r1KbJ4pbKAVy6huXoyauVU
1029
+ aAUjRK5WjN9cH05PCiZl84VfsXaSVTKf191C6F61qCXjtjAORtvTSPb0sgYo
1030
+ Ei/UmEmnMj6JkpXA6z2cTAbxxV26GdEEZB12DVVV63BrIuwYaWpCGZyuJBWS
1031
+ FSxPLTB5PH1+rhDDKlQbuvajNUzE+UVyRTTdQt+zWIrGWIJOozo8hjmashq8
1032
+ PkXsZAoty1Yqi/gVnq6ru+p1pUKFTM3dENJzu421TiqKKq3hhUp45apSyM1V
1033
+ GMH0xOi+liz0yOxUyijs2w2DlRjI+8tHB3XUIP+fGBxA9+LFr1kRgwV769p1
1034
+ fPkEQ+9KRq+dKE9MsGKc1BmxltEC7W6CEdW0aUtocIvw0tcSt5JGu3R4OA+z
1035
+ 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
1090
+
1091
+ --mimepart_49c5feb7f3b7c_27d33fc57700d97c1de--
1092
+ Rendering template within layouts/mailers
1093
+ Completed in 917ms (View: 29, DB: 0) | 200 OK [http://localhost/mailers/multipart?lang=en]
1094
+
1095
+
1096
+ Processing UsersController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-22 18:02:57) [GET]
1097
+
1098
+ ActionController::UnknownAction (No action responded to change_title_error_messages_for. Actions: custom_error_message and distance_of_time_in_words):
1099
+
1100
+
1101
+ Rendering rescues/layout (not_found)
1102
+ SQL (0.8ms)  SELECT name
1103
+ FROM sqlite_master
1104
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1105
+ 
1106
+ SQL (0.2ms) SELECT version FROM schema_migrations
1107
+
1108
+
1109
+ Processing UsersController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-22 18:04:17) [GET]
1110
+
1111
+ ActionController::UnknownAction (No action responded to change_title_error_messages_for. Actions: custom_error_message and distance_of_time_in_words):
1112
+
1113
+
1114
+ Rendering rescues/layout (not_found)
1115
+
1116
+
1117
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:04:21) [GET]
1118
+ Rendering template within layouts/users
1119
+ Rendering users/distance_of_time_in_words
1120
+ Completed in 79ms (View: 74, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1121
+ SQL (0.8ms)  SELECT name
1122
+ FROM sqlite_master
1123
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1124
+ 
1125
+ SQL (0.1ms) SELECT version FROM schema_migrations
1126
+
1127
+
1128
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:05:10) [GET]
1129
+ Rendering template within layouts/users
1130
+ Rendering users/distance_of_time_in_words
1131
+ Completed in 90ms (View: 83, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1132
+
1133
+
1134
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:05:12) [GET]
1135
+ Rendering template within layouts/users
1136
+ Rendering users/distance_of_time_in_words
1137
+ Completed in 182ms (View: 176, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1138
+
1139
+
1140
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:05:13) [GET]
1141
+ Rendering template within layouts/users
1142
+ Rendering users/distance_of_time_in_words
1143
+ Completed in 76ms (View: 70, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1144
+ SQL (1.4ms)  SELECT name
1145
+ FROM sqlite_master
1146
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1147
+ 
1148
+ SQL (0.3ms) SELECT version FROM schema_migrations
1149
+
1150
+
1151
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:05:48) [GET]
1152
+ Rendering template within layouts/users
1153
+ Rendering users/distance_of_time_in_words
1154
+ Completed in 99ms (View: 70, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1155
+ SQL (0.9ms)  SELECT name
1156
+ FROM sqlite_master
1157
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1158
+ 
1159
+ SQL (0.1ms) SELECT version FROM schema_migrations
1160
+ SQL (1.4ms)  SELECT name
1161
+ FROM sqlite_master
1162
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1163
+ 
1164
+ SQL (0.3ms) SELECT version FROM schema_migrations
1165
+
1166
+
1167
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:13:15) [GET]
1168
+ Rendering template within layouts/users
1169
+ Rendering users/distance_of_time_in_words
1170
+ Completed in 41ms (View: 37, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1171
+ SQL (0.8ms)  SELECT name
1172
+ FROM sqlite_master
1173
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1174
+ 
1175
+ SQL (0.1ms) SELECT version FROM schema_migrations
1176
+
1177
+
1178
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:14:04) [GET]
1179
+ Rendering template within layouts/users
1180
+ Rendering users/distance_of_time_in_words
1181
+ Completed in 76ms (View: 72, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1182
+ SQL (0.8ms)  SELECT name
1183
+ FROM sqlite_master
1184
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1185
+ 
1186
+ SQL (0.1ms) SELECT version FROM schema_migrations
1187
+ SQL (1.5ms)  SELECT name
1188
+ FROM sqlite_master
1189
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1190
+ 
1191
+ SQL (0.4ms) SELECT version FROM schema_migrations
1192
+
1193
+
1194
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:20:58) [GET]
1195
+ Rendering template within layouts/users
1196
+ Rendering users/distance_of_time_in_words
1197
+ Completed in 100ms (View: 70, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1198
+
1199
+
1200
+ Processing UsersController#distance_of_time_in_words (for 127.0.0.1 at 2009-03-22 18:21:01) [GET]
1201
+ Rendering template within layouts/users
1202
+ Rendering users/distance_of_time_in_words
1203
+ Completed in 68ms (View: 62, DB: 0) | 200 OK [http://localhost/users/distance_of_time_in_words]
1204
+
1205
+
1206
+ Processing UsersController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-22 18:21:04) [GET]
1207
+
1208
+ ActionController::UnknownAction (No action responded to change_title_error_messages_for. Actions: custom_error_message and distance_of_time_in_words):
1209
+
1210
+
1211
+ Rendering rescues/layout (not_found)
1212
+
1213
+
1214
+ Processing UsersController#custom_error_message (for 127.0.0.1 at 2009-03-22 18:21:17) [GET]
1215
+ Rendering template within layouts/users
1216
+ Rendering users/custom_error_message
1217
+ Completed in 65ms (View: 39, DB: 0) | 200 OK [http://localhost/users/custom_error_message]
1218
+
1219
+
1220
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-22 18:21:20) [GET]
1221
+ Article Load (0.9ms) SELECT * FROM "articles" 
1222
+ Rendering template within layouts/application
1223
+ Rendering articles/list
1224
+ Completed in 53ms (View: 34, DB: 1) | 200 OK [http://localhost/articles]
1225
+
1226
+
1227
+ Processing ArticlesController#new (for 127.0.0.1 at 2009-03-22 18:21:21) [GET]
1228
+ Rendering template within layouts/application
1229
+ Rendering articles/new
1230
+ Rendered articles/_form (12.7ms)
1231
+ Completed in 142ms (View: 125, DB: 0) | 200 OK [http://localhost/articles/new]
1232
+
1233
+
1234
+ Processing ArticlesController#create (for 127.0.0.1 at 2009-03-22 18:21:23) [POST]
1235
+ Parameters: {"article"=>{"lastupdate(2i)"=>"3", "lastupdate(3i)"=>"17", "title"=>"", "description"=>"", "lastupdate(1i)"=>"2009"}, "commit"=>"作成", "authenticity_token"=>"Y+BCnfAzvSnQeWMhbYgOOZcTySSu06AC+QKlBKMFuyg="}
1236
+ Article Exists (0.3ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
1237
+ Rendering template within layouts/application
1238
+ Rendering articles/new
1239
+ Rendered articles/_form (19.0ms)
1240
+ Completed in 62ms (View: 31, DB: 0) | 200 OK [http://localhost/articles]
1241
+ SQL (0.9ms)  SELECT name
1242
+ FROM sqlite_master
1243
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1244
+ 
1245
+ SQL (0.2ms) SELECT version FROM schema_migrations
1246
+
1247
+
1248
+ Processing UsersController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-22 18:31:42) [GET]
1249
+
1250
+ ActionController::UnknownAction (No action responded to change_title_error_messages_for. Actions: custom_error_message and distance_of_time_in_words):
1251
+
1252
+
1253
+ Rendering rescues/layout (not_found)
1254
+
1255
+
1256
+ Processing ArticlesController#index (for 127.0.0.1 at 2009-03-22 18:31:45) [GET]
1257
+ Article Load (0.6ms) SELECT * FROM "articles" 
1258
+ Rendering template within layouts/application
1259
+ Rendering articles/list
1260
+ Completed in 34ms (View: 22, DB: 1) | 200 OK [http://localhost/articles]
1261
+
1262
+
1263
+ Processing ArticlesController#new (for 127.0.0.1 at 2009-03-22 18:31:46) [GET]
1264
+ Rendering template within layouts/application
1265
+ Rendering articles/new
1266
+ Rendered articles/_form (120.1ms)
1267
+ Completed in 155ms (View: 141, DB: 0) | 200 OK [http://localhost/articles/new]
1268
+
1269
+
1270
+ Processing ArticlesController#create (for 127.0.0.1 at 2009-03-22 18:31:48) [POST]
1271
+ Parameters: {"article"=>{"lastupdate(2i)"=>"3", "lastupdate(3i)"=>"17", "title"=>"", "description"=>"", "lastupdate(1i)"=>"2009"}, "commit"=>"作成", "authenticity_token"=>"Y+BCnfAzvSnQeWMhbYgOOZcTySSu06AC+QKlBKMFuyg="}
1272
+ Article Exists (0.3ms) SELECT "articles".id FROM "articles" WHERE ("articles"."title" = '') LIMIT 1
1273
+ Rendering template within layouts/application
1274
+ Rendering articles/new
1275
+ Rendered articles/_form (16.6ms)
1276
+ Completed in 44ms (View: 24, DB: 0) | 200 OK [http://localhost/articles]
1277
+
1278
+
1279
+ Processing UsersController#change_title_error_messages_for (for 127.0.0.1 at 2009-03-22 18:31:53) [GET]
1280
+
1281
+ ActionController::UnknownAction (No action responded to change_title_error_messages_for. Actions: custom_error_message and distance_of_time_in_words):
1282
+
1283
+
1284
+ Rendering rescues/layout (not_found)