gettext 1.10.0 → 1.90.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (327) hide show
  1. data/ChangeLog +156 -2
  2. data/NEWS +28 -0
  3. data/README +128 -138
  4. data/Rakefile +83 -43
  5. data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
  6. data/data/locale/hu/LC_MESSAGES/rails.mo +0 -0
  7. data/data/locale/hu/LC_MESSAGES/rgettext.mo +0 -0
  8. data/data/locale/ua/LC_MESSAGES/rails.mo +0 -0
  9. data/data/locale/ua/LC_MESSAGES/rgettext.mo +0 -0
  10. data/doc/classes/ActiveRecord/Base.html +360 -0
  11. data/doc/classes/ActiveRecord/ConnectionAdapters/Column.html +182 -0
  12. data/doc/classes/ActiveRecord/Migration.html +118 -0
  13. data/doc/classes/GetText.html +1790 -0
  14. data/doc/classes/GetText/ActiveRecordParser.html +236 -0
  15. data/doc/classes/GetText/Container.html +119 -0
  16. data/doc/classes/GetText/ErbContainer.html +223 -0
  17. data/doc/classes/GetText/ErbParser.html +156 -0
  18. data/doc/classes/GetText/GladeParser.html +133 -0
  19. data/doc/classes/GetText/NoboundTextDomainError.html +119 -0
  20. data/doc/classes/GetText/PoParser.html +169 -0
  21. data/doc/classes/GetText/Rails.html +293 -0
  22. data/doc/classes/GetText/RubyParser.html +123 -0
  23. data/doc/classes/GetText/TextDomain.html +572 -0
  24. data/doc/classes/GetText/TextDomainManager.html +443 -0
  25. data/doc/classes/Iconv.html +257 -0
  26. data/doc/classes/Iconv/Failure.html +105 -0
  27. data/doc/classes/Iconv/IllegalSequence.html +118 -0
  28. data/doc/classes/Iconv/InvalidCharacter.html +118 -0
  29. data/doc/classes/Iconv/InvalidEncoding.html +118 -0
  30. data/doc/classes/Locale.html +839 -0
  31. data/doc/classes/Locale/Object.html +799 -0
  32. data/doc/classes/Locale/SystemBase.html +271 -0
  33. data/doc/classes/Locale/SystemCGI.html +312 -0
  34. data/doc/classes/Locale/SystemJRuby.html +112 -0
  35. data/doc/classes/Locale/SystemPosix.html +113 -0
  36. data/doc/classes/Locale/SystemWin32.html +182 -0
  37. data/doc/classes/MOFile.html +678 -0
  38. data/doc/classes/MOFile/InvalidFormat.html +111 -0
  39. data/doc/classes/Module.html +158 -0
  40. data/doc/classes/String.html +225 -0
  41. data/doc/created.rid +1 -0
  42. data/doc/files/ChangeLog.html +2355 -0
  43. data/doc/files/README.html +510 -0
  44. data/doc/files/lib/gettext/active_record_rb.html +110 -0
  45. data/doc/files/lib/gettext/cgi_rb.html +110 -0
  46. data/doc/files/lib/gettext/container_rb.html +108 -0
  47. data/doc/files/lib/gettext/erb_rb.html +109 -0
  48. data/doc/files/lib/gettext/iconv_rb.html +109 -0
  49. data/doc/files/lib/gettext/mo_rb.html +108 -0
  50. data/doc/files/lib/gettext/parser/active_record_rb.html +119 -0
  51. data/doc/files/lib/gettext/parser/erb_rb.html +109 -0
  52. data/doc/files/lib/gettext/parser/glade_rb.html +109 -0
  53. data/doc/files/lib/gettext/parser/ruby_rb.html +110 -0
  54. data/doc/files/lib/gettext/poparser_rb.html +108 -0
  55. data/doc/files/lib/gettext/rails_compat_rb.html +108 -0
  56. data/doc/files/lib/gettext/rails_rb.html +112 -0
  57. data/doc/files/lib/gettext/rgettext_rb.html +110 -0
  58. data/doc/files/lib/gettext/rmsgfmt_rb.html +112 -0
  59. data/doc/files/lib/gettext/rmsgmerge_rb.html +112 -0
  60. data/doc/files/lib/gettext/string_rb.html +101 -0
  61. data/doc/files/lib/gettext/textdomain_rb.html +109 -0
  62. data/doc/files/lib/gettext/textdomainmanager_rb.html +109 -0
  63. data/doc/files/lib/gettext/utils_rb.html +111 -0
  64. data/doc/files/lib/gettext/version_rb.html +101 -0
  65. data/doc/files/lib/gettext_rb.html +113 -0
  66. data/doc/files/lib/locale/base_rb.html +101 -0
  67. data/doc/files/lib/locale/cgi_rb.html +108 -0
  68. data/doc/files/lib/locale/jruby_rb.html +110 -0
  69. data/doc/files/lib/locale/object_rb.html +101 -0
  70. data/doc/files/lib/locale/posix_rb.html +108 -0
  71. data/doc/files/lib/locale/win32_rb.html +110 -0
  72. data/doc/files/lib/locale/win32_table_rb.html +101 -0
  73. data/doc/files/lib/locale_rb.html +111 -0
  74. data/doc/fr_class_index.html +57 -0
  75. data/doc/fr_file_index.html +58 -0
  76. data/doc/fr_method_index.html +155 -0
  77. data/doc/index.html +24 -0
  78. data/doc/rdoc-style.css +208 -0
  79. data/lib/gettext.rb +102 -50
  80. data/lib/gettext/cgi.rb +2 -27
  81. data/lib/gettext/iconv.rb +76 -62
  82. data/lib/gettext/mo.rb +3 -3
  83. data/lib/gettext/parser/erb.rb +2 -2
  84. data/lib/gettext/rails.rb +69 -48
  85. data/lib/gettext/rgettext.rb +2 -2
  86. data/lib/gettext/rmsgmerge.rb +2 -2
  87. data/lib/gettext/string.rb +9 -5
  88. data/lib/gettext/textdomain.rb +3 -3
  89. data/lib/gettext/textdomainmanager.rb +5 -5
  90. data/lib/gettext/utils.rb +4 -3
  91. data/lib/gettext/version.rb +1 -1
  92. data/lib/{gettext/locale.rb → locale.rb} +11 -58
  93. data/lib/locale/base.rb +60 -0
  94. data/lib/{gettext/locale_cgi.rb → locale/cgi.rb} +30 -28
  95. data/lib/locale/jruby.rb +36 -0
  96. data/lib/{gettext/locale_object.rb → locale/object.rb} +78 -24
  97. data/lib/locale/posix.rb +22 -0
  98. data/lib/locale/win32.rb +48 -0
  99. data/lib/{gettext/locale_table_win32.rb → locale/win32_table.rb} +3 -2
  100. data/po/es/rails.po +1 -2
  101. data/po/hu/rails.po +139 -0
  102. data/po/hu/rgettext.po +126 -0
  103. data/po/ja/rails.po +5 -5
  104. data/po/ua/rails.po +150 -0
  105. data/po/ua/rgettext.po +132 -0
  106. data/pre-setup.rb +2 -4
  107. data/samples/cgi/cookie.cgi +1 -0
  108. data/samples/cgi/helloerb1.cgi +6 -3
  109. data/samples/cgi/helloerb2.cgi +6 -3
  110. data/samples/cgi/http.rb +3 -7
  111. data/samples/cgi/index.cgi +2 -1
  112. data/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo +0 -0
  113. data/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo +0 -0
  114. data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
  115. data/samples/cgi/locale/hu/LC_MESSAGES/main.mo +0 -0
  116. data/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo +0 -0
  117. data/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo +0 -0
  118. data/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo +0 -0
  119. data/samples/cgi/locale/ua/LC_MESSAGES/main.mo +0 -0
  120. data/samples/cgi/po/hu/helloerb1.po +59 -0
  121. data/samples/cgi/po/hu/helloerb2.po +51 -0
  122. data/samples/cgi/po/hu/hellolib.po +23 -0
  123. data/samples/cgi/po/hu/main.po +82 -0
  124. data/samples/cgi/po/ua/helloerb1.po +62 -0
  125. data/samples/cgi/po/ua/helloerb2.po +54 -0
  126. data/samples/cgi/po/ua/hellolib.po +26 -0
  127. data/samples/cgi/po/ua/main.po +84 -0
  128. data/samples/locale/hu/LC_MESSAGES/hello.mo +0 -0
  129. data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
  130. data/samples/locale/hu/LC_MESSAGES/hello_noop.mo +0 -0
  131. data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
  132. data/samples/locale/hu/LC_MESSAGES/helloglade2.mo +0 -0
  133. data/samples/locale/hu/LC_MESSAGES/hellogtk.mo +0 -0
  134. data/samples/locale/hu/LC_MESSAGES/hellotk.mo +0 -0
  135. data/samples/locale/ua/LC_MESSAGES/hello.mo +0 -0
  136. data/samples/locale/ua/LC_MESSAGES/hello2.mo +0 -0
  137. data/samples/locale/ua/LC_MESSAGES/hello_noop.mo +0 -0
  138. data/samples/locale/ua/LC_MESSAGES/hello_plural.mo +0 -0
  139. data/samples/locale/ua/LC_MESSAGES/helloglade2.mo +0 -0
  140. data/samples/locale/ua/LC_MESSAGES/hellogtk.mo +0 -0
  141. data/samples/locale/ua/LC_MESSAGES/hellotk.mo +0 -0
  142. data/samples/po/hu/hello.po +22 -0
  143. data/samples/po/hu/hello2.po +30 -0
  144. data/samples/po/hu/hello_noop.po +26 -0
  145. data/samples/po/hu/hello_plural.po +25 -0
  146. data/samples/po/hu/helloglade2.po +31 -0
  147. data/samples/po/hu/hellogtk.po +22 -0
  148. data/samples/po/hu/hellotk.po +23 -0
  149. data/samples/po/ua/hello.po +22 -0
  150. data/samples/po/ua/hello2.po +30 -0
  151. data/samples/po/ua/hello_noop.po +26 -0
  152. data/samples/po/ua/hello_plural.po +29 -0
  153. data/samples/po/ua/helloglade2.po +34 -0
  154. data/samples/po/ua/hellogtk.po +22 -0
  155. data/samples/po/ua/hellotk.po +26 -0
  156. data/samples/rails/README +15 -31
  157. data/samples/rails/Rakefile +1 -1
  158. data/samples/rails/app/controllers/application.rb +11 -4
  159. data/samples/rails/app/controllers/articles_controller.rb +96 -0
  160. data/samples/rails/app/helpers/application_helper.rb +1 -1
  161. data/samples/rails/app/helpers/{blog_helper.rb → articles_helper.rb} +6 -7
  162. data/samples/rails/app/views/articles/edit.html.erb +18 -0
  163. data/samples/rails/app/views/articles/index.html.erb +17 -0
  164. data/samples/rails/app/views/articles/new.html.erb +16 -0
  165. data/samples/rails/app/views/articles/show.html.erb +6 -0
  166. data/samples/rails/app/views/layouts/articles.html.erb +26 -0
  167. data/samples/rails/config/boot.rb +104 -13
  168. data/samples/rails/config/database.yml +24 -21
  169. data/samples/rails/config/environment.rb +35 -30
  170. data/samples/rails/config/environments/development.rb +5 -6
  171. data/samples/rails/config/environments/production.rb +2 -3
  172. data/samples/rails/config/environments/test.rb +5 -2
  173. data/samples/rails/config/initializers/inflections.rb +10 -0
  174. data/samples/rails/config/initializers/mime_types.rb +5 -0
  175. data/samples/rails/config/routes.rb +30 -11
  176. data/samples/rails/db/migrate/001_create_articles.rb +14 -0
  177. data/samples/rails/db/schema.rb +16 -5
  178. data/samples/rails/lib/tasks/gettext.rake +2 -2
  179. data/samples/rails/locale/bs/LC_MESSAGES/blog.mo +0 -0
  180. data/samples/rails/locale/ca/LC_MESSAGES/blog.mo +0 -0
  181. data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
  182. data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
  183. data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
  184. data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
  185. data/samples/rails/locale/eo/LC_MESSAGES/blog.mo +0 -0
  186. data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
  187. data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
  188. data/samples/rails/locale/hr/LC_MESSAGES/blog.mo +0 -0
  189. data/samples/rails/locale/hu/LC_MESSAGES/blog.mo +0 -0
  190. data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
  191. data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
  192. data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
  193. data/samples/rails/locale/nb/LC_MESSAGES/blog.mo +0 -0
  194. data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
  195. data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
  196. data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
  197. data/samples/rails/locale/ua/LC_MESSAGES/blog.mo +0 -0
  198. data/samples/rails/locale/vi/LC_MESSAGES/blog.mo +0 -0
  199. data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
  200. data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
  201. data/samples/rails/po/blog.pot +24 -24
  202. data/samples/rails/po/bs/blog.po +29 -29
  203. data/samples/rails/po/ca/blog.po +27 -27
  204. data/samples/rails/po/cs/blog.po +27 -27
  205. data/samples/rails/po/de/blog.po +27 -27
  206. data/samples/rails/po/el/blog.po +27 -27
  207. data/samples/rails/po/en/blog.po +24 -24
  208. data/samples/rails/po/eo/blog.po +27 -27
  209. data/samples/rails/po/es/blog.po +27 -27
  210. data/samples/rails/po/fr/blog.po +27 -27
  211. data/samples/rails/po/hr/blog.po +29 -29
  212. data/samples/rails/po/hu/blog.po +105 -0
  213. data/samples/rails/po/it/blog.po +27 -27
  214. data/samples/rails/po/ja/blog.po +27 -27
  215. data/samples/rails/po/ko/blog.po +27 -27
  216. data/samples/rails/po/nb/blog.po +26 -27
  217. data/samples/rails/po/nl/blog.po +27 -27
  218. data/samples/rails/po/pt_BR/blog.po +27 -27
  219. data/samples/rails/po/ru/blog.po +27 -27
  220. data/samples/rails/po/ua/blog.po +108 -0
  221. data/samples/rails/po/vi/blog.po +26 -31
  222. data/samples/rails/po/zh/blog.po +27 -27
  223. data/samples/rails/po/zh_TW/blog.po +27 -27
  224. data/samples/rails/public/404.html +27 -5
  225. data/samples/rails/public/422.html +30 -0
  226. data/samples/rails/public/500.html +27 -5
  227. data/samples/rails/public/index.html +6 -6
  228. data/samples/rails/public/javascripts/application.js +2 -0
  229. data/samples/rails/public/javascripts/controls.js +532 -319
  230. data/samples/rails/public/javascripts/dragdrop.js +521 -133
  231. data/samples/rails/public/javascripts/effects.js +708 -442
  232. data/samples/rails/public/javascripts/prototype.js +3393 -953
  233. data/samples/rails/public/stylesheets/blog.css +4 -0
  234. data/samples/rails/public/stylesheets/scaffold.css +5 -5
  235. data/samples/rails/test/functional/articles_controller_test.rb +51 -0
  236. data/samples/rails/test/test_helper.rb +31 -19
  237. data/samples/rails/test/unit/article_test.rb +2 -9
  238. data/samples/rails/vendor/plugins/gettext/init.rb +5 -3
  239. data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +9 -10
  240. data/samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES/gettext_plugin.mo +0 -0
  241. data/samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES/gettext_plugin.mo +0 -0
  242. data/samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES/gettext_plugin.mo +0 -0
  243. data/samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po +28 -0
  244. data/samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po +27 -0
  245. data/samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po +30 -0
  246. data/test/Rakefile +2 -1
  247. data/test/benchmark.rb +28 -0
  248. data/test/fixtures/topic.rb +15 -0
  249. data/test/rails/Rakefile +2 -1
  250. data/test/rails/app/controllers/articles_controller.rb +1 -1
  251. data/test/rails/app/controllers/users_controller.rb +10 -0
  252. data/test/rails/app/models/user.rb +2 -1
  253. data/test/rails/app/views/articles/{_form.rhtml → _form.html.erb} +0 -0
  254. data/test/rails/app/views/articles/active_form_error.html.erb +1 -0
  255. data/test/rails/app/views/articles/change_title_error_messages_for.html.erb +21 -0
  256. data/test/rails/app/views/articles/{edit.rhtml → edit.html.erb} +0 -0
  257. data/test/rails/app/views/articles/{list.rhtml → list.html.erb} +0 -3
  258. data/test/rails/app/views/articles/{list_fr.rhtml → list_fr.html.erb} +0 -0
  259. data/test/rails/app/views/articles/{multi_error_messages_for.rhtml → multi_error_messages_for.html.erb} +0 -0
  260. data/test/rails/app/views/articles/{new.rhtml → new.html.erb} +0 -0
  261. data/test/rails/app/views/articles/{show.rhtml → show.html.erb} +0 -0
  262. data/test/rails/app/views/layouts/{application.rhtml → application.html.erb} +0 -0
  263. data/test/rails/app/views/layouts/{mailer.rhtml → mailer.html.erb} +0 -0
  264. data/test/rails/app/views/layouts/users.html.erb +13 -0
  265. data/test/rails/app/views/users/custom_error_message.html.erb +13 -0
  266. data/test/rails/app/views/users/custom_error_message_fr.html.erb +13 -0
  267. data/test/rails/config/environment.rb +6 -1
  268. data/test/rails/config/environments/development.rb +0 -3
  269. data/test/rails/db/schema.rb +17 -10
  270. data/test/rails/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
  271. data/test/rails/log/development.log +136 -29
  272. data/test/rails/log/test.log +2002 -128
  273. data/test/rails/po/ja/rails_test.po +68 -61
  274. data/test/rails/po/rails_test.pot +57 -55
  275. data/test/rails/test/fixtures/users.yml +5 -0
  276. data/test/rails/test/functional/articles_controller_test.rb +6 -1
  277. data/test/rails/test/functional/users_controller_test.rb +65 -0
  278. data/test/rails/test/result/en/custom_error_message.html +83 -0
  279. data/test/rails/test/result/en/custom_error_message_with_plural.html +83 -0
  280. data/test/rails/test/result/en/list.html +0 -3
  281. data/test/rails/test/result/en/multi_error_messages_for.html +1 -1
  282. data/test/rails/test/result/fr/custom_error_message.html +83 -0
  283. data/test/rails/test/result/fr/custom_error_message_with_plural.html +83 -0
  284. data/test/rails/test/result/ja/custom_error_message.html +83 -0
  285. data/test/rails/test/result/ja/custom_error_message_with_plural.html +83 -0
  286. data/test/rails/test/result/ja/list.html +0 -3
  287. data/test/rails/test/result/ja/multi_error_messages_for.html +1 -1
  288. data/test/test.sh +5 -7
  289. data/test/{gettext_test_active_record.rb → test_active_record.rb} +20 -10
  290. data/test/{gettext_test_cgi.rb → test_cgi.rb} +0 -0
  291. data/test/{gettext_test.rb → test_gettext.rb} +91 -9
  292. data/test/test_java.sh +12 -0
  293. data/test/{gettext_test_locale.rb → test_locale.rb} +3 -8
  294. data/test/{gettext_test_multi_textdomain.rb → test_multi_textdomain.rb} +2 -2
  295. data/test/{gettext_test_parser.rb → test_parser.rb} +77 -77
  296. data/test/{gettext_test_rails.rb → test_rails.rb} +0 -0
  297. data/test/{gettext_test_rails_caching.rb → test_rails_caching.rb} +16 -2
  298. data/test/{gettext_test_string.rb → test_string.rb} +1 -0
  299. data/test/{test_rubyparser_N.rb → testlib/N_.rb} +0 -0
  300. data/test/testlib/erb.rhtml +15 -0
  301. data/test/testlib/erb.rxml +16 -0
  302. data/test/{test_rubyparser.rb → testlib/gettext.rb} +0 -0
  303. data/test/testlib/gladeparser.glade +183 -0
  304. data/test/{test_rubyparser_n_.rb → testlib/ngettext.rb} +0 -0
  305. data/test/{test_nsgettext.rb → testlib/nsgettext.rb} +0 -0
  306. data/test/{test_sgettext.rb → testlib/sgettext.rb} +0 -0
  307. data/test/{testlib1.rb → testlib/testlib1.rb} +0 -0
  308. data/test/{testlib2.rb → testlib/testlib2.rb} +1 -1
  309. data/test/{testlib3.rb → testlib/testlib3.rb} +0 -0
  310. data/test/{testlib4.rb → testlib/testlib4.rb} +1 -1
  311. data/test/{testlib5.rb → testlib/testlib5.rb} +0 -0
  312. data/test/{testlib6.rb → testlib/testlib6.rb} +0 -0
  313. metadata +1374 -1171
  314. data/ext/gettext/extconf.rb +0 -20
  315. data/ext/gettext/locale_system.c +0 -83
  316. data/lib/gettext/locale_posix.rb +0 -82
  317. data/lib/gettext/locale_win32.rb +0 -82
  318. data/samples/cgi/ruby.bat +0 -4
  319. data/samples/rails/app/controllers/blog_controller.rb +0 -58
  320. data/samples/rails/app/views/blog/_form.rhtml +0 -25
  321. data/samples/rails/app/views/blog/edit.rhtml +0 -22
  322. data/samples/rails/app/views/blog/list.rhtml +0 -29
  323. data/samples/rails/app/views/blog/new.rhtml +0 -21
  324. data/samples/rails/app/views/blog/show.rhtml +0 -18
  325. data/samples/rails/app/views/layouts/blog.rhtml +0 -36
  326. data/samples/rails/test/functional/blog_controller_test.rb +0 -98
  327. data/test/gettext_runner.rb +0 -22
@@ -1,3 +1,4 @@
1
1
  class User < ActiveRecord::Base
2
- validates_presence_of :name
2
+ validates_length_of :name, :minimum => 10
3
+ validates_presence_of :lastupdate
3
4
  end
@@ -0,0 +1 @@
1
+ <%= error_messages_for 'search' %>
@@ -0,0 +1,21 @@
1
+ <%= error_messages_for 'article', :message_title => Nn_("Message Title","Message Titles"),
2
+ :message_explanation => Nn_("Message Explanation", "Message Explanations")
3
+ %>
4
+
5
+ <!--[form:article]-->
6
+ <p><label for="article_title"><%= _("Title") %></label><br/>
7
+ <%= text_field 'article', 'title' %></p>
8
+
9
+ <p><label for="article_description"><%= _("Description") %></label><br/>
10
+ <%= text_area 'article', 'description' %></p>
11
+
12
+ <p><label for="article_lastupdate"><%= _("Lastupdate") %></label><br/>
13
+ <%= date_select 'article', 'lastupdate' %></p>
14
+
15
+ <p><label for="user_name"><%= _("Name") %></label><br/>
16
+ <%= text_field 'user', 'name' %></p>
17
+
18
+ <p><label for="user_lastupdate"><%= _("Lastupdate") %></label><br/>
19
+ <%= date_select 'user', 'lastupdate' %></p>
20
+ <!--[eoform:article]-->
21
+
@@ -19,9 +19,6 @@
19
19
  <% end %>
20
20
  </table>
21
21
 
22
- <%= link_to 'Previous page', { :page => @article_pages.current.previous } if @article_pages.current.previous %>
23
- <%= link_to 'Next page', { :page => @article_pages.current.next } if @article_pages.current.next %>
24
-
25
22
  <br />
26
23
 
27
24
  <%= link_to _('New article'), :action => 'new' %>
@@ -0,0 +1,13 @@
1
+ <html>
2
+ <head>
3
+ <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
4
+ <title>Ruby-GetText-Package Test Application</title>
5
+ <link href="/stylesheets/scaffold.css" media="screen" rel="Stylesheet" type="text/css" />
6
+ </head>
7
+ <body>
8
+ <p style="color: green"><%= flash[:notice] %></p>
9
+
10
+ <%= yield %>
11
+
12
+ </body>
13
+ </html>
@@ -0,0 +1,13 @@
1
+ <%= error_messages_for 'user', {
2
+ :message_title => Nn_("Singular Custom Error message %{record}: %{num}", "Plural Custom Error message %{record}: %{num}"),
3
+ :message_explanation => Nn_("Singular Custom Error explanation %{num}", "Plural Custom Error explanation %{num}")
4
+ } %>
5
+
6
+ <!--[form:article]-->
7
+ <p><label for="user_name"><%= _("Name") %></label><br/>
8
+ <%= text_field 'user', 'name' %></p>
9
+
10
+ <p><label for="user_lastupdate"><%= _("Lastupdate") %></label><br/>
11
+ <%= date_select 'user', 'lastupdate' %></p>
12
+ <!--[eoform:article]-->
13
+
@@ -0,0 +1,13 @@
1
+ <%= error_messages_for 'user', {
2
+ :message_title => Nn_("French: Singular Custom Error message %{record}: %{num}", "French: Plural Custom Error message %{record}: %{num}"),
3
+ :message_explanation => Nn_("French: Singular Custom Error explanation %{num}", "French: Plural Custom Error explanation %{num}")
4
+ } %>
5
+
6
+ <!--[form:article]-->
7
+ <p><label for="user_name"><%= _("Name") %></label><br/>
8
+ <%= text_field 'user', 'name' %></p>
9
+
10
+ <p><label for="user_lastupdate"><%= _("Lastupdate") %></label><br/>
11
+ <%= date_select 'user', 'lastupdate' %></p>
12
+ <!--[eoform:article]-->
13
+
@@ -7,10 +7,11 @@
7
7
  $KCODE = "U"
8
8
 
9
9
  # Specifies gem version of Rails to use when vendor/rails is not present
10
- RAILS_GEM_VERSION = '1.2.3' unless defined? RAILS_GEM_VERSION
10
+ RAILS_GEM_VERSION = '2.0.1' unless defined? RAILS_GEM_VERSION
11
11
 
12
12
  # Bootstrap the Rails environment, frameworks, and default configuration
13
13
  require File.join(File.dirname(__FILE__), 'boot')
14
+ $:.insert RAILS_ROOT + "/../../lib"
14
15
 
15
16
  Rails::Initializer.run do |config|
16
17
  # Settings in config/environments/* take precedence over those specified here
@@ -44,6 +45,10 @@ Rails::Initializer.run do |config|
44
45
  # config.active_record.default_timezone = :utc
45
46
 
46
47
  # See Rails::Configuration for more options
48
+ config.action_controller.session = {
49
+ :session_key => '_blog_session',
50
+ :secret => '481e79cd6d557ee64d26390fb85013f3'
51
+ }
47
52
  end
48
53
 
49
54
  # Add new inflection rules using the following format
@@ -8,9 +8,6 @@ config.cache_classes = false
8
8
  # Log error messages when you accidentally call methods on nil.
9
9
  config.whiny_nils = true
10
10
 
11
- # Enable the breakpoint server that script/breakpointer connects to
12
- config.breakpoint_server = true
13
-
14
11
  # Show full error reports and disable caching
15
12
  config.action_controller.consider_all_requests_local = true
16
13
  config.action_controller.perform_caching = false
@@ -1,27 +1,34 @@
1
- # This file is autogenerated. Instead of editing this file, please use the
2
- # migrations feature of ActiveRecord to incrementally modify your database, and
1
+ # This file is auto-generated from the current state of the database. Instead of editing this file,
2
+ # please use the migrations feature of ActiveRecord to incrementally modify your database, and
3
3
  # then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your database schema. If you need
6
+ # to create the application database on another system, you should be using db:schema:load, not running
7
+ # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
8
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
9
+ #
10
+ # It's strongly recommended to check this file into your version control system.
4
11
 
5
12
  ActiveRecord::Schema.define(:version => 1) do
6
13
 
7
14
  create_table "accounts", :force => true do |t|
8
- t.column "amount", :integer
9
- t.column "person_id", :integer
15
+ t.integer "amount"
16
+ t.integer "person_id"
10
17
  end
11
18
 
12
19
  create_table "articles", :force => true do |t|
13
- t.column "title", :string, :default => "", :null => false
14
- t.column "description", :text, :default => "", :null => false
15
- t.column "lastupdate", :date
20
+ t.string "title", :default => "", :null => false
21
+ t.text "description", :default => "", :null => false
22
+ t.date "lastupdate"
16
23
  end
17
24
 
18
25
  create_table "people", :force => true do |t|
19
- t.column "name", :string
26
+ t.string "name"
20
27
  end
21
28
 
22
29
  create_table "users", :force => true do |t|
23
- t.column "name", :string, :default => "", :null => false
24
- t.column "lastupdate", :date
30
+ t.string "name", :default => "", :null => false
31
+ t.date "lastupdate"
25
32
  end
26
33
 
27
34
  end
@@ -1,29 +1,136 @@
1
- # Logfile created on Thu Jul 05 00:41:55 +0900 2007 by /
2
- SQL (0.000176) SET SQL_AUTO_IS_NULL=0
3
- SQL (0.000347) SELECT version FROM schema_info
4
- SQL (0.000466) SELECT * FROM schema_info
5
- SQL (0.023176) SHOW TABLES
6
- SQL (0.030570) SHOW FIELDS FROM accounts
7
- SQL (0.001122) SHOW KEYS FROM accounts
8
- SQL (0.001240) SHOW FIELDS FROM articles
9
- SQL (0.001041) SHOW KEYS FROM articles
10
- SQL (0.001056) SHOW FIELDS FROM people
11
- SQL (0.001026) SHOW KEYS FROM people
12
- SQL (0.001114) SHOW FIELDS FROM users
13
- SQL (0.017316) SHOW KEYS FROM users
14
- SQL (0.000152) SET SQL_AUTO_IS_NULL=0
15
- SQL (0.223728) DROP DATABASE IF EXISTS `rails_unittest`
16
- SQL (0.000440) CREATE DATABASE `rails_unittest`
17
- SQL (0.000378) SET SQL_AUTO_IS_NULL=0
18
- SQL (0.000000) Mysql::Error: #42S02Unknown table 'accounts': DROP TABLE accounts
19
- SQL (0.010599) CREATE TABLE accounts (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB
20
- SQL (0.000000) Mysql::Error: #42S02Unknown table 'articles': DROP TABLE articles
21
- SQL (0.005200) CREATE TABLE articles (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255) DEFAULT '' NOT NULL, `description` text DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
22
- SQL (0.000000) Mysql::Error: #42S02Unknown table 'people': DROP TABLE people
23
- SQL (0.006510) CREATE TABLE people (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB
24
- SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE users
25
- SQL (0.005207) CREATE TABLE users (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
26
- SQL (0.004379) CREATE TABLE schema_info (version int(11))
27
- SQL (0.000437) INSERT INTO schema_info (version) VALUES(0)
28
- SQL (0.001619) SHOW FIELDS FROM schema_info
29
- SQL (0.000287) UPDATE schema_info SET version = 1
1
+ # Logfile created on Sun Feb 03 01:55:22 +0900 2008WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
2
+ SQL (0.000138) SET SQL_AUTO_IS_NULL=0
3
+ SQL (0.000287) SELECT version FROM schema_info
4
+ SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))
5
+ SQL (0.000339) SELECT * FROM schema_info
6
+ SQL (0.000387) SHOW TABLES
7
+ SQL (0.000926) SHOW FIELDS FROM `accounts`
8
+ SQL (0.000804) describe `accounts`
9
+ SQL (0.000830) SHOW KEYS FROM `accounts`
10
+ SQL (0.000880) SHOW FIELDS FROM `articles`
11
+ SQL (0.000862) describe `articles`
12
+ SQL (0.000816) SHOW KEYS FROM `articles`
13
+ SQL (0.000827) SHOW FIELDS FROM `people`
14
+ SQL (0.000741) describe `people`
15
+ SQL (0.000801) SHOW KEYS FROM `people`
16
+ SQL (0.000791) SHOW FIELDS FROM `users`
17
+ SQL (0.000782) describe `users`
18
+ SQL (0.000802) SHOW KEYS FROM `users`
19
+ SQL (0.000134) SET SQL_AUTO_IS_NULL=0
20
+ SQL (0.022413) DROP DATABASE IF EXISTS `rails_unittest`
21
+ SQL (0.000231) CREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`
22
+ SQL (0.000127) SET SQL_AUTO_IS_NULL=0
23
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`
24
+ SQL (0.004974) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB
25
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`
26
+ SQL (0.002455) CREATE TABLE `articles` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255) DEFAULT '' NOT NULL, `description` text DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
27
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'people': DROP TABLE `people`
28
+ SQL (0.002927) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB
29
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users`
30
+ SQL (0.002801) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
31
+ SQL (0.002161) CREATE TABLE `schema_info` (version int(11))
32
+ SQL (0.000284) INSERT INTO `schema_info` (version) VALUES(0)
33
+ SQL (0.000770) SHOW FIELDS FROM `schema_info`
34
+ SQL (0.000170) UPDATE schema_info SET version = 1
35
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
36
+ SQL (0.000209) SET SQL_AUTO_IS_NULL=0
37
+ SQL (0.000447) SELECT version FROM schema_info
38
+ SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))
39
+ SQL (0.000504) SELECT * FROM schema_info
40
+ SQL (0.000619) SHOW TABLES
41
+ SQL (0.001582) SHOW FIELDS FROM `accounts`
42
+ SQL (0.001398) describe `accounts`
43
+ SQL (0.001449) SHOW KEYS FROM `accounts`
44
+ SQL (0.001495) SHOW FIELDS FROM `articles`
45
+ SQL (0.001531) describe `articles`
46
+ SQL (0.001434) SHOW KEYS FROM `articles`
47
+ SQL (0.001404) SHOW FIELDS FROM `people`
48
+ SQL (0.001280) describe `people`
49
+ SQL (0.001397) SHOW KEYS FROM `people`
50
+ SQL (0.001395) SHOW FIELDS FROM `users`
51
+ SQL (0.001370) describe `users`
52
+ SQL (0.001409) SHOW KEYS FROM `users`
53
+ SQL (0.000187) SET SQL_AUTO_IS_NULL=0
54
+ SQL (0.016610) DROP DATABASE IF EXISTS `rails_unittest`
55
+ SQL (0.000346) CREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`
56
+ SQL (0.000187) SET SQL_AUTO_IS_NULL=0
57
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`
58
+ SQL (0.004405) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB
59
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`
60
+ SQL (0.003410) CREATE TABLE `articles` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255) DEFAULT '' NOT NULL, `description` text DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
61
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'people': DROP TABLE `people`
62
+ SQL (0.003338) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB
63
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users`
64
+ SQL (0.003485) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
65
+ SQL (0.002077) CREATE TABLE `schema_info` (version int(11))
66
+ SQL (0.000401) INSERT INTO `schema_info` (version) VALUES(0)
67
+ SQL (0.001277) SHOW FIELDS FROM `schema_info`
68
+ SQL (0.000251) UPDATE schema_info SET version = 1
69
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
70
+ SQL (0.000133) SET SQL_AUTO_IS_NULL=0
71
+ SQL (0.000283) SELECT version FROM schema_info
72
+ SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))
73
+ SQL (0.000352) SELECT * FROM schema_info
74
+ SQL (0.000374) SHOW TABLES
75
+ SQL (0.000924) SHOW FIELDS FROM `accounts`
76
+ SQL (0.000795) describe `accounts`
77
+ SQL (0.000837) SHOW KEYS FROM `accounts`
78
+ SQL (0.000847) SHOW FIELDS FROM `articles`
79
+ SQL (0.000844) describe `articles`
80
+ SQL (0.000810) SHOW KEYS FROM `articles`
81
+ SQL (0.000800) SHOW FIELDS FROM `people`
82
+ SQL (0.000719) describe `people`
83
+ SQL (0.000794) SHOW KEYS FROM `people`
84
+ SQL (0.000783) SHOW FIELDS FROM `users`
85
+ SQL (0.000769) describe `users`
86
+ SQL (0.000804) SHOW KEYS FROM `users`
87
+ SQL (0.000121) SET SQL_AUTO_IS_NULL=0
88
+ SQL (0.015543) DROP DATABASE IF EXISTS `rails_unittest`
89
+ SQL (0.000228) CREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`
90
+ SQL (0.000125) SET SQL_AUTO_IS_NULL=0
91
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`
92
+ SQL (0.003462) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB
93
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`
94
+ SQL (0.003007) CREATE TABLE `articles` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255) DEFAULT '' NOT NULL, `description` text DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
95
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'people': DROP TABLE `people`
96
+ SQL (0.002417) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB
97
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users`
98
+ SQL (0.003187) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
99
+ SQL (0.002010) CREATE TABLE `schema_info` (version int(11))
100
+ SQL (0.000280) INSERT INTO `schema_info` (version) VALUES(0)
101
+ SQL (0.000754) SHOW FIELDS FROM `schema_info`
102
+ SQL (0.000159) UPDATE schema_info SET version = 1
103
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
104
+ SQL (0.000132) SET SQL_AUTO_IS_NULL=0
105
+ SQL (0.000287) SELECT version FROM schema_info
106
+ SQL (0.000000) Mysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))
107
+ SQL (0.000340) SELECT * FROM schema_info
108
+ SQL (0.000370) SHOW TABLES
109
+ SQL (0.000928) SHOW FIELDS FROM `accounts`
110
+ SQL (0.000794) describe `accounts`
111
+ SQL (0.000827) SHOW KEYS FROM `accounts`
112
+ SQL (0.000852) SHOW FIELDS FROM `articles`
113
+ SQL (0.000849) describe `articles`
114
+ SQL (0.000804) SHOW KEYS FROM `articles`
115
+ SQL (0.000792) SHOW FIELDS FROM `people`
116
+ SQL (0.000715) describe `people`
117
+ SQL (0.000795) SHOW KEYS FROM `people`
118
+ SQL (0.000780) SHOW FIELDS FROM `users`
119
+ SQL (0.000768) describe `users`
120
+ SQL (0.000807) SHOW KEYS FROM `users`
121
+ SQL (0.000127) SET SQL_AUTO_IS_NULL=0
122
+ SQL (0.017021) DROP DATABASE IF EXISTS `rails_unittest`
123
+ SQL (0.000226) CREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`
124
+ SQL (0.000124) SET SQL_AUTO_IS_NULL=0
125
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`
126
+ SQL (0.004192) CREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB
127
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`
128
+ SQL (0.002801) CREATE TABLE `articles` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `title` varchar(255) DEFAULT '' NOT NULL, `description` text DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
129
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'people': DROP TABLE `people`
130
+ SQL (0.002576) CREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB
131
+ SQL (0.000000) Mysql::Error: #42S02Unknown table 'users': DROP TABLE `users`
132
+ SQL (0.002906) CREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB
133
+ SQL (0.001929) CREATE TABLE `schema_info` (version int(11))
134
+ SQL (0.000255) INSERT INTO `schema_info` (version) VALUES(0)
135
+ SQL (0.000763) SHOW FIELDS FROM `schema_info`
136
+ SQL (0.000160) UPDATE schema_info SET version = 1
@@ -1,119 +1,1771 @@
1
- # Logfile created on Thu Jul 05 00:41:57 +0900 2007 by /
2
- SQL (0.000154) SET SQL_AUTO_IS_NULL=0
3
- SQL (0.000201) BEGIN
4
- Article Columns (0.002118) SHOW FIELDS FROM articles
5
- Article Load (0.145503) SELECT * FROM articles WHERE (articles.`id` = 1) 
6
- Article Load (0.000950) SELECT * FROM articles WHERE (articles.`id` = 2) 
7
- SQL (0.006518) ROLLBACK
8
- SQL (0.000145) SET SQL_AUTO_IS_NULL=0
9
- SQL (0.000259) BEGIN
10
- Article Columns (0.002101) SHOW FIELDS FROM articles
11
- Article Load (0.000909) SELECT * FROM articles WHERE (articles.`id` = 1) 
12
-
13
-
14
- Processing ArticlesController#create (for 0.0.0.0 at 2007-07-05 00:42:01) [POST]
15
- Session ID:
16
- Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>#<Date: 4908383/2,0,2299161>}, "action"=>"create", "controller"=>"articles", "lang"=>"ja"}
17
- Article Load (0.070937) SELECT * FROM articles WHERE (articles.title = '') LIMIT 1
18
- Rendering layoutfalseactionnew within layouts/application
1
+ # Logfile created on Sun Feb 03 01:55:23 +0900 2008WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
2
+ SQL (0.000131) SET SQL_AUTO_IS_NULL=0
3
+ SQL (0.000072) BEGIN
4
+ Article Load (0.000513) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
5
+ Article Load (0.000486) SELECT * FROM `articles` WHERE (`articles`.`id` = 2) 
6
+ SQL (0.000208) ROLLBACK
7
+ UsersController: missing default helper path users_helper
8
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
9
+ SQL (0.000692) SET SQL_AUTO_IS_NULL=0
10
+ SQL (0.000074) BEGIN
11
+ Article Load (0.000622) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
12
+
13
+
14
+ Processing ArticlesController#create (for 0.0.0.0 at 2008-02-03 01:55:25) [POST]
15
+ Session ID:
16
+ Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>Sun, 01 Apr 2007}, "action"=>"create", "controller"=>"articles", "lang"=>"ja"}
17
+ Article Load (0.000607) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
18
+ Rendering template within layouts/application
19
+ SQL (0.000156) ROLLBACK
20
+ SQL (0.000073) BEGIN
21
+ Article Load (0.000468) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
22
+ Article Load (0.000374) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
23
+
24
+
25
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2008-02-03 01:55:25) [POST]
26
+ Session ID:
27
+ Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"articles"}
28
+ Article Load (0.000500) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
29
+ Article Destroy (0.000184)  DELETE FROM `articles`
30
+ WHERE `id` = 1
31
+ 
32
+ Redirected to http://test.host/articles/list
33
+ Completed in 0.00200 (498 reqs/sec) | DB: 0.00175 (87%) | 302 Found [http://test.host/articles/destroy/1]
34
+ Article Load (0.000416) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
35
+ SQL (0.000548) ROLLBACK
36
+ SQL (0.000084) BEGIN
37
+ Article Load (0.000440) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
38
+
39
+
40
+ Processing ArticlesController#list (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
41
+ Session ID:
42
+ Parameters: {"action"=>"list", "controller"=>"articles", "lang"=>"ja"}
43
+ Article Load (0.000504) SELECT * FROM `articles` 
44
+ Rendering template within layouts/application
45
+ SQL (0.000135) ROLLBACK
46
+ SQL (0.000074) BEGIN
47
+ Article Load (0.000442) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
48
+
49
+
50
+ Processing ArticlesController#multi_error_messages_for (for 0.0.0.0 at 2008-02-03 01:55:25) [POST]
51
+ Session ID:
52
+ Parameters: {"article"=>{"article_description"=>"", "article_title"=>"", "user_name"=>""}, "action"=>"multi_error_messages_for", "controller"=>"articles", "lang"=>"ja"}
53
+ User Columns (0.001077) SHOW FIELDS FROM `users`
54
+ Article Load (0.000491) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
55
+ Rendering template within layouts/application
56
+ SQL (0.000148) ROLLBACK
57
+ SQL (0.000073) BEGIN
58
+ Article Load (0.000459) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
59
+
60
+
61
+ Processing ArticlesController#new (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
62
+ Session ID:
63
+ Parameters: {"action"=>"new", "controller"=>"articles", "lang"=>"ja"}
64
+ Rendering template within layouts/application
65
+ SQL (0.000324) ROLLBACK
66
+ SQL (0.000254) BEGIN
67
+ Article Load (0.000524) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
68
+
69
+
70
+ Processing ArticlesController#show (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
71
+ Session ID:
72
+ Parameters: {"action"=>"show", "id"=>"1", "controller"=>"articles", "lang"=>"ja"}
73
+ Article Load (0.000498) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
74
+ Rendering template within layouts/application
75
+ SQL (0.000140) ROLLBACK
76
+ SQL (0.000073) BEGIN
77
+ Article Load (0.000465) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
78
+
79
+
80
+ Processing ArticlesController#update (for 0.0.0.0 at 2008-02-03 01:55:25) [POST]
81
+ Session ID:
82
+ Parameters: {"action"=>"update", "id"=>"1", "controller"=>"articles"}
83
+ Article Load (0.000487) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
84
+ Article Load (0.000496) SELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1
85
+ Article Update (0.000209) UPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1
86
+ Redirected to http://test.host/articles/show/1
87
+ Completed in 0.00389 (257 reqs/sec) | DB: 0.00187 (48%) | 302 Found [http://test.host/articles/update/1]
88
+ SQL (0.000141) ROLLBACK
89
+ SQL (0.000082) BEGIN
90
+
91
+
92
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
93
+ Session ID:
94
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"ja"}
95
+ Sent mail:
96
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
97
+ From: mutoh@highway.ne.jp
98
+ To: mutoh@highway.ne.jp
99
+ Subject: =?iso-2022-jp?B?GyRCJV4layVBJVEhPCVIJUYlOSVIJWEhPCVrGyhC?=
100
+ Mime-Version: 1.0
101
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a07d30693_6b1815555559cf08157
102
+
103
+
104
+ --mimepart_47a4a07d30693_6b1815555559cf08157
105
+ Content-Type: text/plain; charset=iso-2022-jp
106
+ Content-Transfer-Encoding: 7bit
107
+ Content-Disposition: inline
108
+
109
+ Hi foo,
110
+
111
+ $B%5%s%W%k$H$7$F(Bpublic/images/*$B$rE:IU$7$^$7$?!#(B
112
+
113
+ --
114
+ bar@example.com
115
+
116
+ --mimepart_47a4a07d30693_6b1815555559cf08157
117
+ Content-Type: application/octet-stream; name=rails.png
118
+ Content-Transfer-Encoding: Base64
119
+ Content-Disposition: attachment; filename=rails.png
120
+
121
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
122
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
123
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
124
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
125
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
126
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
127
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
128
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
129
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
130
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
131
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
132
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
133
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
134
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
135
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
136
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
137
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
138
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
139
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
140
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
141
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
142
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
143
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
144
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
145
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
146
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
147
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
148
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
149
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
150
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
151
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
152
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
153
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
154
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
155
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
156
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
157
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
158
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
159
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
160
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
161
+
162
+ --mimepart_47a4a07d30693_6b1815555559cf08157--
163
+ Rendering template within layouts/mailer
164
+ Completed in 0.01997 (50 reqs/sec) | Rendering: 0.00195 (9%) | DB: 0.00022 (1%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
165
+
166
+
167
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
168
+ Session ID:
169
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"en"}
170
+ Sent mail:
171
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
172
+ From: mutoh@highway.ne.jp
173
+ To: mutoh@highway.ne.jp
174
+ Subject: multipart test mail
175
+ Mime-Version: 1.0
176
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a07d33f1e_6b1815555559cf084e5
177
+
178
+
179
+ --mimepart_47a4a07d33f1e_6b1815555559cf084e5
180
+ Content-Type: text/plain; charset=iso-2022-jp
181
+ Content-Transfer-Encoding: 7bit
182
+ Content-Disposition: inline
183
+
184
+ Hi foo,
185
+
186
+ I attached public/images/* for example.
187
+
188
+ --
189
+ bar@example.com
190
+
191
+ --mimepart_47a4a07d33f1e_6b1815555559cf084e5
192
+ Content-Type: application/octet-stream; name=rails.png
193
+ Content-Transfer-Encoding: Base64
194
+ Content-Disposition: attachment; filename=rails.png
195
+
196
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
197
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
198
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
199
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
200
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
201
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
202
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
203
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
204
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
205
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
206
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
207
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
208
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
209
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
210
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
211
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
212
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
213
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
214
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
215
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
216
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
217
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
218
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
219
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
220
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
221
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
222
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
223
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
224
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
225
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
226
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
227
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
228
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
229
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
230
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
231
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
232
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
233
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
234
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
235
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
236
+
237
+ --mimepart_47a4a07d33f1e_6b1815555559cf084e5--
238
+ Rendering template within layouts/mailer
239
+ Completed in 0.00861 (116 reqs/sec) | Rendering: 0.00091 (10%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
240
+
241
+
242
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
243
+ Session ID:
244
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"kr"}
245
+ Sent mail:
246
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
247
+ From: mutoh@highway.ne.jp
248
+ To: mutoh@highway.ne.jp
249
+ Subject: multipart test mail
250
+ Mime-Version: 1.0
251
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a07d3a1df_6b1815555559cf0879a
252
+
253
+
254
+ --mimepart_47a4a07d3a1df_6b1815555559cf0879a
255
+ Content-Type: text/plain; charset=iso-2022-jp
256
+ Content-Transfer-Encoding: 7bit
257
+ Content-Disposition: inline
258
+
259
+ Hi foo,
260
+
261
+ I attached public/images/* for example.
262
+
263
+ --
264
+ bar@example.com
265
+
266
+ --mimepart_47a4a07d3a1df_6b1815555559cf0879a
267
+ Content-Type: application/octet-stream; name=rails.png
268
+ Content-Transfer-Encoding: Base64
269
+ Content-Disposition: attachment; filename=rails.png
270
+
271
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
272
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
273
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
274
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
275
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
276
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
277
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
278
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
279
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
280
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
281
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
282
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
283
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
284
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
285
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
286
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
287
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
288
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
289
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
290
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
291
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
292
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
293
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
294
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
295
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
296
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
297
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
298
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
299
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
300
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
301
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
302
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
303
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
304
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
305
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
306
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
307
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
308
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
309
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
310
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
311
+
312
+ --mimepart_47a4a07d3a1df_6b1815555559cf0879a--
313
+ Rendering template within layouts/mailer
314
+ Completed in 0.00974 (102 reqs/sec) | Rendering: 0.00092 (9%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
315
+
316
+
317
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
318
+ Session ID:
319
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"fr"}
320
+ Sent mail:
321
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
322
+ From: mutoh@highway.ne.jp
323
+ To: mutoh@highway.ne.jp
324
+ Subject: multipart test mail
325
+ Mime-Version: 1.0
326
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a07d3d219_6b1815555559cf081022
327
+
328
+
329
+ --mimepart_47a4a07d3d219_6b1815555559cf081022
330
+ Content-Type: text/plain; charset=iso-2022-jp
331
+ Content-Transfer-Encoding: 7bit
332
+ Content-Disposition: inline
333
+
334
+ Hi foo,
335
+
336
+ I attached public/images/* for example for French.
337
+
338
+ --
339
+ bar@example.com
340
+
341
+ --mimepart_47a4a07d3d219_6b1815555559cf081022
342
+ Content-Type: application/octet-stream; name=rails.png
343
+ Content-Transfer-Encoding: Base64
344
+ Content-Disposition: attachment; filename=rails.png
345
+
346
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
347
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
348
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
349
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
350
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
351
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
352
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
353
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
354
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
355
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
356
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
357
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
358
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
359
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
360
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
361
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
362
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
363
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
364
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
365
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
366
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
367
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
368
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
369
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
370
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
371
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
372
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
373
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
374
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
375
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
376
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
377
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
378
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
379
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
380
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
381
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
382
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
383
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
384
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
385
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
386
+
387
+ --mimepart_47a4a07d3d219_6b1815555559cf081022--
388
+ Rendering template within layouts/mailer
389
+ Completed in 0.01070 (93 reqs/sec) | Rendering: 0.00094 (8%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
390
+ SQL (0.000168) ROLLBACK
391
+ SQL (0.000082) BEGIN
392
+
393
+
394
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
395
+ Session ID:
396
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"ja"}
397
+ Sent mail:
398
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
399
+ From: mutoh@highway.ne.jp
400
+ To: mutoh@highway.ne.jp
401
+ Subject: =?iso-2022-jp?B?GyRCJTclcyUwJWslUSE8JUglRiU5JUglYSE8JWsbKEI=?=
402
+ Mime-Version: 1.0
403
+ Content-Type: text/plain; charset=iso-2022-jp
404
+
405
+ $B$3$s$K$A$o(B foo$B$5$s(B
406
+
407
+ $B%7%s%0%k%Q!<%H%a!<%k$G$9!#$$$$$G$9$+!)(B
408
+ Rendering template within layouts/mailer
409
+ Completed in 0.02166 (46 reqs/sec) | Rendering: 0.00078 (3%) | DB: 0.00025 (1%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
410
+
411
+
412
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
413
+ Session ID:
414
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"en"}
415
+ Sent mail:
416
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
417
+ From: mutoh@highway.ne.jp
418
+ To: mutoh@highway.ne.jp
419
+ Subject: singlepart test mail
420
+ Mime-Version: 1.0
421
+ Content-Type: text/plain; charset=utf-8
422
+
423
+ Hi foo,
424
+
425
+ This is a singlepart mail. OK?
426
+ Rendering template within layouts/mailer
427
+ Completed in 0.00628 (159 reqs/sec) | Rendering: 0.00070 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
428
+
429
+
430
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
431
+ Session ID:
432
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"kr"}
433
+ Sent mail:
434
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
435
+ From: mutoh@highway.ne.jp
436
+ To: mutoh@highway.ne.jp
437
+ Subject: singlepart test mail
438
+ Mime-Version: 1.0
439
+ Content-Type: text/plain; charset=utf-8
440
+
441
+ Hi foo,
442
+
443
+ This is a singlepart mail. OK?
444
+ Rendering template within layouts/mailer
445
+ Completed in 0.00604 (165 reqs/sec) | Rendering: 0.00068 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
446
+
447
+
448
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:55:25) [GET]
449
+ Session ID:
450
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"fr"}
451
+ Sent mail:
452
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
453
+ From: mutoh@highway.ne.jp
454
+ To: mutoh@highway.ne.jp
455
+ Subject: singlepart test mail
456
+ Mime-Version: 1.0
457
+ Content-Type: text/plain; charset=utf-8
458
+
459
+ Hi foo,
460
+
461
+ This is a singlepart mail in french. OK?
462
+ Rendering template within layouts/mailer
463
+ Completed in 0.00750 (133 reqs/sec) | Rendering: 0.00070 (9%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
464
+ SQL (0.000225) ROLLBACK
465
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
466
+ SQL (0.000131) SET SQL_AUTO_IS_NULL=0
467
+ SQL (0.000072) BEGIN
468
+ Article Load (0.000519) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
469
+ Article Load (0.000487) SELECT * FROM `articles` WHERE (`articles`.`id` = 2) 
470
+ SQL (0.000117) ROLLBACK
471
+ UsersController: missing default helper path users_helper
472
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
473
+ SQL (0.000152) SET SQL_AUTO_IS_NULL=0
474
+ SQL (0.000089) BEGIN
475
+ Article Load (0.000466) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
476
+
477
+
478
+ Processing ArticlesController#create (for 0.0.0.0 at 2008-02-03 01:57:22) [POST]
479
+ Session ID:
480
+ Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>Sun, 01 Apr 2007}, "action"=>"create", "controller"=>"articles", "lang"=>"ja"}
481
+ Article Load (0.000609) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
482
+ Rendering template within layouts/application
483
+ SQL (0.000154) ROLLBACK
484
+ SQL (0.000074) BEGIN
485
+ Article Load (0.000466) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
486
+ Article Load (0.000368) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
487
+
488
+
489
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2008-02-03 01:57:22) [POST]
490
+ Session ID:
491
+ Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"articles"}
492
+ Article Load (0.000649) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
493
+ Article Destroy (0.000214)  DELETE FROM `articles`
494
+ WHERE `id` = 1
495
+ 
496
+ Redirected to http://test.host/articles/list
497
+ Completed in 0.00260 (384 reqs/sec) | DB: 0.00193 (74%) | 302 Found [http://test.host/articles/destroy/1]
498
+ Article Load (0.000458) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
499
+ SQL (0.000475) ROLLBACK
500
+ SQL (0.000088) BEGIN
501
+ Article Load (0.000430) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
502
+
503
+
504
+ Processing ArticlesController#list (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
505
+ Session ID:
506
+ Parameters: {"action"=>"list", "controller"=>"articles", "lang"=>"ja"}
507
+ Article Load (0.000600) SELECT * FROM `articles` 
508
+ Rendering template within layouts/application
509
+ SQL (0.000141) ROLLBACK
510
+ SQL (0.000075) BEGIN
511
+ Article Load (0.000451) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
512
+
513
+
514
+ Processing ArticlesController#multi_error_messages_for (for 0.0.0.0 at 2008-02-03 01:57:22) [POST]
515
+ Session ID:
516
+ Parameters: {"article"=>{"article_description"=>"", "article_title"=>"", "user_name"=>""}, "action"=>"multi_error_messages_for", "controller"=>"articles", "lang"=>"ja"}
517
+ User Columns (0.001077) SHOW FIELDS FROM `users`
518
+ Article Load (0.000510) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
519
+ Rendering template within layouts/application
520
+ SQL (0.000144) ROLLBACK
521
+ SQL (0.000073) BEGIN
522
+ Article Load (0.000455) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
523
+
524
+
525
+ Processing ArticlesController#new (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
526
+ Session ID:
527
+ Parameters: {"action"=>"new", "controller"=>"articles", "lang"=>"ja"}
528
+ Rendering template within layouts/application
529
+ SQL (0.000185) ROLLBACK
530
+ SQL (0.000074) BEGIN
531
+ Article Load (0.000657) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
532
+
533
+
534
+ Processing ArticlesController#show (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
535
+ Session ID:
536
+ Parameters: {"action"=>"show", "id"=>"1", "controller"=>"articles", "lang"=>"ja"}
537
+ Article Load (0.000829) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
538
+ Rendering template within layouts/application
539
+ SQL (0.000259) ROLLBACK
540
+ SQL (0.000080) BEGIN
541
+ Article Load (0.000486) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
542
+
543
+
544
+ Processing ArticlesController#update (for 0.0.0.0 at 2008-02-03 01:57:22) [POST]
545
+ Session ID:
546
+ Parameters: {"action"=>"update", "id"=>"1", "controller"=>"articles"}
547
+ Article Load (0.000508) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
548
+ Article Load (0.000870) SELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1
549
+ Article Update (0.000244) UPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1
550
+ Redirected to http://test.host/articles/show/1
551
+ Completed in 0.00464 (215 reqs/sec) | DB: 0.00245 (52%) | 302 Found [http://test.host/articles/update/1]
552
+ SQL (0.000142) ROLLBACK
553
+ SQL (0.000089) BEGIN
554
+
555
+
556
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
557
+ Session ID:
558
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"ja"}
559
+ Sent mail:
560
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
561
+ From: mutoh@highway.ne.jp
562
+ To: mutoh@highway.ne.jp
563
+ Subject: =?iso-2022-jp?B?GyRCJV4layVBJVEhPCVIJUYlOSVIJWEhPCVrGyhC?=
564
+ Mime-Version: 1.0
565
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a0f24d628_6b7615555559cf08191
566
+
567
+
568
+ --mimepart_47a4a0f24d628_6b7615555559cf08191
569
+ Content-Type: text/plain; charset=iso-2022-jp
570
+ Content-Transfer-Encoding: 7bit
571
+ Content-Disposition: inline
572
+
573
+ Hi foo,
574
+
575
+ $B%5%s%W%k$H$7$F(Bpublic/images/*$B$rE:IU$7$^$7$?!#(B
576
+
577
+ --
578
+ bar@example.com
579
+
580
+ --mimepart_47a4a0f24d628_6b7615555559cf08191
581
+ Content-Type: application/octet-stream; name=rails.png
582
+ Content-Transfer-Encoding: Base64
583
+ Content-Disposition: attachment; filename=rails.png
584
+
585
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
586
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
587
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
588
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
589
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
590
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
591
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
592
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
593
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
594
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
595
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
596
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
597
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
598
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
599
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
600
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
601
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
602
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
603
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
604
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
605
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
606
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
607
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
608
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
609
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
610
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
611
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
612
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
613
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
614
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
615
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
616
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
617
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
618
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
619
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
620
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
621
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
622
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
623
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
624
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
625
+
626
+ --mimepart_47a4a0f24d628_6b7615555559cf08191--
627
+ Rendering template within layouts/mailer
628
+ Completed in 0.01986 (50 reqs/sec) | Rendering: 0.00184 (9%) | DB: 0.00023 (1%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
629
+
630
+
631
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
632
+ Session ID:
633
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"en"}
634
+ Sent mail:
635
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
636
+ From: mutoh@highway.ne.jp
637
+ To: mutoh@highway.ne.jp
638
+ Subject: multipart test mail
639
+ Mime-Version: 1.0
640
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a0f250b67_6b7615555559cf0848c
641
+
642
+
643
+ --mimepart_47a4a0f250b67_6b7615555559cf0848c
644
+ Content-Type: text/plain; charset=iso-2022-jp
645
+ Content-Transfer-Encoding: 7bit
646
+ Content-Disposition: inline
647
+
648
+ Hi foo,
649
+
650
+ I attached public/images/* for example.
651
+
652
+ --
653
+ bar@example.com
654
+
655
+ --mimepart_47a4a0f250b67_6b7615555559cf0848c
656
+ Content-Type: application/octet-stream; name=rails.png
657
+ Content-Transfer-Encoding: Base64
658
+ Content-Disposition: attachment; filename=rails.png
659
+
660
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
661
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
662
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
663
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
664
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
665
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
666
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
667
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
668
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
669
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
670
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
671
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
672
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
673
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
674
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
675
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
676
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
677
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
678
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
679
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
680
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
681
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
682
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
683
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
684
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
685
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
686
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
687
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
688
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
689
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
690
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
691
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
692
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
693
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
694
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
695
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
696
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
697
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
698
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
699
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
700
+
701
+ --mimepart_47a4a0f250b67_6b7615555559cf0848c--
702
+ Rendering template within layouts/mailer
703
+ Completed in 0.00984 (101 reqs/sec) | Rendering: 0.00091 (9%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
704
+
705
+
706
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
707
+ Session ID:
708
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"kr"}
709
+ Sent mail:
710
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
711
+ From: mutoh@highway.ne.jp
712
+ To: mutoh@highway.ne.jp
713
+ Subject: multipart test mail
714
+ Mime-Version: 1.0
715
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a0f253b6b_6b7615555559cf08741
716
+
717
+
718
+ --mimepart_47a4a0f253b6b_6b7615555559cf08741
719
+ Content-Type: text/plain; charset=iso-2022-jp
720
+ Content-Transfer-Encoding: 7bit
721
+ Content-Disposition: inline
722
+
723
+ Hi foo,
724
+
725
+ I attached public/images/* for example.
726
+
727
+ --
728
+ bar@example.com
729
+
730
+ --mimepart_47a4a0f253b6b_6b7615555559cf08741
731
+ Content-Type: application/octet-stream; name=rails.png
732
+ Content-Transfer-Encoding: Base64
733
+ Content-Disposition: attachment; filename=rails.png
734
+
735
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
736
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
737
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
738
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
739
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
740
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
741
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
742
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
743
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
744
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
745
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
746
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
747
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
748
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
749
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
750
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
751
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
752
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
753
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
754
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
755
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
756
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
757
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
758
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
759
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
760
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
761
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
762
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
763
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
764
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
765
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
766
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
767
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
768
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
769
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
770
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
771
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
772
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
773
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
774
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
775
+
776
+ --mimepart_47a4a0f253b6b_6b7615555559cf08741--
777
+ Rendering template within layouts/mailer
778
+ Completed in 0.00970 (103 reqs/sec) | Rendering: 0.00090 (9%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
779
+
780
+
781
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
782
+ Session ID:
783
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"fr"}
784
+ Sent mail:
785
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
786
+ From: mutoh@highway.ne.jp
787
+ To: mutoh@highway.ne.jp
788
+ Subject: multipart test mail
789
+ Mime-Version: 1.0
790
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a0f2568e9_6b7615555559cf0810e9
791
+
792
+
793
+ --mimepart_47a4a0f2568e9_6b7615555559cf0810e9
794
+ Content-Type: text/plain; charset=iso-2022-jp
795
+ Content-Transfer-Encoding: 7bit
796
+ Content-Disposition: inline
797
+
798
+ Hi foo,
799
+
800
+ I attached public/images/* for example for French.
801
+
802
+ --
803
+ bar@example.com
804
+
805
+ --mimepart_47a4a0f2568e9_6b7615555559cf0810e9
806
+ Content-Type: application/octet-stream; name=rails.png
807
+ Content-Transfer-Encoding: Base64
808
+ Content-Disposition: attachment; filename=rails.png
809
+
810
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
811
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
812
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
813
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
814
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
815
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
816
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
817
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
818
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
819
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
820
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
821
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
822
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
823
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
824
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
825
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
826
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
827
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
828
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
829
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
830
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
831
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
832
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
833
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
834
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
835
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
836
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
837
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
838
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
839
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
840
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
841
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
842
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
843
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
844
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
845
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
846
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
847
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
848
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
849
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
850
+
851
+ --mimepart_47a4a0f2568e9_6b7615555559cf0810e9--
852
+ Rendering template within layouts/mailer
853
+ Completed in 0.00998 (100 reqs/sec) | Rendering: 0.00093 (9%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
854
+ SQL (0.000178) ROLLBACK
855
+ SQL (0.000085) BEGIN
856
+
857
+
858
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
859
+ Session ID:
860
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"ja"}
861
+ Sent mail:
862
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
863
+ From: mutoh@highway.ne.jp
864
+ To: mutoh@highway.ne.jp
865
+ Subject: =?iso-2022-jp?B?GyRCJTclcyUwJWslUSE8JUglRiU5JUglYSE8JWsbKEI=?=
866
+ Mime-Version: 1.0
867
+ Content-Type: text/plain; charset=iso-2022-jp
868
+
869
+ $B$3$s$K$A$o(B foo$B$5$s(B
870
+
871
+ $B%7%s%0%k%Q!<%H%a!<%k$G$9!#$$$$$G$9$+!)(B
872
+ Rendering template within layouts/mailer
873
+ Completed in 0.02167 (46 reqs/sec) | Rendering: 0.00079 (3%) | DB: 0.00026 (1%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
874
+
875
+
876
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
877
+ Session ID:
878
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"en"}
879
+ Sent mail:
880
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
881
+ From: mutoh@highway.ne.jp
882
+ To: mutoh@highway.ne.jp
883
+ Subject: singlepart test mail
884
+ Mime-Version: 1.0
885
+ Content-Type: text/plain; charset=utf-8
886
+
887
+ Hi foo,
888
+
889
+ This is a singlepart mail. OK?
890
+ Rendering template within layouts/mailer
891
+ Completed in 0.00628 (159 reqs/sec) | Rendering: 0.00071 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
892
+
893
+
894
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
895
+ Session ID:
896
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"kr"}
897
+ Sent mail:
898
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
899
+ From: mutoh@highway.ne.jp
900
+ To: mutoh@highway.ne.jp
901
+ Subject: singlepart test mail
902
+ Mime-Version: 1.0
903
+ Content-Type: text/plain; charset=utf-8
904
+
905
+ Hi foo,
906
+
907
+ This is a singlepart mail. OK?
908
+ Rendering template within layouts/mailer
909
+ Completed in 0.00600 (166 reqs/sec) | Rendering: 0.00069 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
910
+
911
+
912
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
913
+ Session ID:
914
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"fr"}
915
+ Sent mail:
916
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
917
+ From: mutoh@highway.ne.jp
918
+ To: mutoh@highway.ne.jp
919
+ Subject: singlepart test mail
920
+ Mime-Version: 1.0
921
+ Content-Type: text/plain; charset=utf-8
922
+
923
+ Hi foo,
924
+
925
+ This is a singlepart mail in french. OK?
926
+ Rendering template within layouts/mailer
927
+ Completed in 0.00601 (166 reqs/sec) | Rendering: 0.00070 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
928
+ SQL (0.000175) ROLLBACK
929
+ SQL (0.000111) BEGIN
930
+
931
+
932
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
933
+ Session ID:
934
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"ja"}
935
+ Rendering template within layouts/users
936
+ Rendering users/custom_error_message
937
+ Completed in 0.04887 (20 reqs/sec) | Rendering: 0.04612 (94%) | DB: 0.00029 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
938
+
939
+
940
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
941
+ Session ID:
942
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"en"}
943
+ Rendering template within layouts/users
944
+ Rendering users/custom_error_message
945
+ Completed in 0.00382 (261 reqs/sec) | Rendering: 0.00301 (78%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
946
+
947
+
948
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
949
+ Session ID:
950
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"kr"}
951
+ Rendering template within layouts/users
952
+ Rendering users/custom_error_message
953
+ Completed in 0.00375 (266 reqs/sec) | Rendering: 0.00296 (79%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
954
+
955
+
956
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
957
+ Session ID:
958
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"fr"}
959
+ Rendering template within layouts/users
960
+ Rendering users/custom_error_message
961
+ Completed in 0.00472 (212 reqs/sec) | Rendering: 0.00393 (83%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
962
+ SQL (0.000180) ROLLBACK
963
+ SQL (0.000081) BEGIN
964
+
965
+
966
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
967
+ Session ID:
968
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"ja", "plural"=>"true"}
969
+ Rendering template within layouts/users
970
+ Rendering users/custom_error_message
971
+ Completed in 0.00346 (288 reqs/sec) | Rendering: 0.00274 (79%) | DB: 0.00026 (7%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
972
+
973
+
974
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
975
+ Session ID:
976
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"en", "plural"=>"true"}
977
+ Rendering template within layouts/users
978
+ Rendering users/custom_error_message
979
+ Completed in 0.00331 (301 reqs/sec) | Rendering: 0.00267 (80%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
980
+
981
+
982
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:57:22) [GET]
983
+ Session ID:
984
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"fr", "plural"=>"true"}
985
+ Rendering template within layouts/users
986
+ Rendering users/custom_error_message
987
+ Completed in 0.00307 (325 reqs/sec) | Rendering: 0.00242 (78%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
988
+ SQL (0.000169) ROLLBACK
989
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
990
+ SQL (0.000370) SET SQL_AUTO_IS_NULL=0
991
+ SQL (0.000167) BEGIN
992
+ Article Load (0.000777) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
993
+ Article Load (0.000771) SELECT * FROM `articles` WHERE (`articles`.`id` = 2) 
994
+ SQL (0.000183) ROLLBACK
995
+ UsersController: missing default helper path users_helper
996
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
997
+ SQL (0.000292) SET SQL_AUTO_IS_NULL=0
998
+ SQL (0.000121) BEGIN
999
+ Article Load (0.000735) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1000
+
1001
+
1002
+ Processing ArticlesController#create (for 0.0.0.0 at 2008-02-03 01:58:49) [POST]
1003
+ Session ID:
1004
+ Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>Sun, 01 Apr 2007}, "action"=>"create", "controller"=>"articles", "lang"=>"ja"}
1005
+ Article Load (0.000885) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
1006
+ Rendering template within layouts/application
1007
+ SQL (0.000225) ROLLBACK
1008
+ SQL (0.000129) BEGIN
1009
+ Article Load (0.000751) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1010
+ Article Load (0.000642) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1011
+
1012
+
1013
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2008-02-03 01:58:49) [POST]
1014
+ Session ID:
1015
+ Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"articles"}
1016
+ Article Load (0.000767) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1017
+ Article Destroy (0.000288)  DELETE FROM `articles`
1018
+ WHERE `id` = 1
1019
+ 
1020
+ Redirected to http://test.host/articles/list
1021
+ Completed in 0.00311 (321 reqs/sec) | DB: 0.00280 (90%) | 302 Found [http://test.host/articles/destroy/1]
1022
+ Article Load (0.000680) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1023
+ SQL (0.000694) ROLLBACK
1024
+ SQL (0.000143) BEGIN
1025
+ Article Load (0.000736) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1026
+
1027
+
1028
+ Processing ArticlesController#list (for 0.0.0.0 at 2008-02-03 01:58:49) [GET]
1029
+ Session ID:
1030
+ Parameters: {"action"=>"list", "controller"=>"articles", "lang"=>"ja"}
1031
+ Article Load (0.000797) SELECT * FROM `articles` 
1032
+ Rendering template within layouts/application
1033
+ SQL (0.000207) ROLLBACK
1034
+ SQL (0.000128) BEGIN
1035
+ Article Load (0.000733) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1036
+
1037
+
1038
+ Processing ArticlesController#multi_error_messages_for (for 0.0.0.0 at 2008-02-03 01:58:49) [POST]
1039
+ Session ID:
1040
+ Parameters: {"article"=>{"article_description"=>"", "article_title"=>"", "user_name"=>""}, "action"=>"multi_error_messages_for", "controller"=>"articles", "lang"=>"ja"}
1041
+ User Columns (0.001726) SHOW FIELDS FROM `users`
1042
+ Article Load (0.000860) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
1043
+ Rendering template within layouts/application
1044
+ SQL (0.000212) ROLLBACK
1045
+ SQL (0.000130) BEGIN
1046
+ Article Load (0.000758) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1047
+
1048
+
1049
+ Processing ArticlesController#new (for 0.0.0.0 at 2008-02-03 01:58:49) [GET]
1050
+ Session ID:
1051
+ Parameters: {"action"=>"new", "controller"=>"articles", "lang"=>"ja"}
1052
+ Rendering template within layouts/application
1053
+ SQL (0.000251) ROLLBACK
1054
+ SQL (0.000127) BEGIN
1055
+ Article Load (0.000759) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1056
+
1057
+
1058
+ Processing ArticlesController#show (for 0.0.0.0 at 2008-02-03 01:58:49) [GET]
1059
+ Session ID:
1060
+ Parameters: {"action"=>"show", "id"=>"1", "controller"=>"articles", "lang"=>"ja"}
1061
+ Article Load (0.000765) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1062
+ Rendering template within layouts/application
1063
+ SQL (0.000202) ROLLBACK
1064
+ SQL (0.000127) BEGIN
1065
+ Article Load (0.000710) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1066
+
1067
+
1068
+ Processing ArticlesController#update (for 0.0.0.0 at 2008-02-03 01:58:49) [POST]
1069
+ Session ID:
1070
+ Parameters: {"action"=>"update", "id"=>"1", "controller"=>"articles"}
1071
+ Article Load (0.000840) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1072
+ Article Load (0.000800) SELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1
1073
+ Article Update (0.000310) UPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1
1074
+ Redirected to http://test.host/articles/show/1
1075
+ Completed in 0.00692 (144 reqs/sec) | DB: 0.00299 (43%) | 302 Found [http://test.host/articles/update/1]
1076
+ SQL (0.000205) ROLLBACK
1077
+ SQL (0.000149) BEGIN
1078
+
1079
+
1080
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:58:49) [GET]
1081
+ Session ID:
1082
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"ja"}
1083
+ Sent mail:
1084
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1085
+ From: mutoh@highway.ne.jp
1086
+ To: mutoh@highway.ne.jp
1087
+ Subject: =?iso-2022-jp?B?GyRCJV4layVBJVEhPCVIJUYlOSVIJWEhPCVrGyhC?=
1088
+ Mime-Version: 1.0
1089
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a149d90d3_6bc215555559cf081e5
1090
+
1091
+
1092
+ --mimepart_47a4a149d90d3_6bc215555559cf081e5
1093
+ Content-Type: text/plain; charset=iso-2022-jp
1094
+ Content-Transfer-Encoding: 7bit
1095
+ Content-Disposition: inline
1096
+
1097
+ Hi foo,
1098
+
1099
+ $B%5%s%W%k$H$7$F(Bpublic/images/*$B$rE:IU$7$^$7$?!#(B
1100
+
1101
+ --
1102
+ bar@example.com
1103
+
1104
+ --mimepart_47a4a149d90d3_6bc215555559cf081e5
1105
+ Content-Type: application/octet-stream; name=rails.png
1106
+ Content-Transfer-Encoding: Base64
1107
+ Content-Disposition: attachment; filename=rails.png
1108
+
1109
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
1110
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
1111
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
1112
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
1113
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
1114
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
1115
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
1116
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
1117
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
1118
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
1119
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
1120
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
1121
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
1122
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
1123
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
1124
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
1125
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
1126
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
1127
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
1128
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
1129
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
1130
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
1131
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
1132
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
1133
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
1134
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
1135
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
1136
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
1137
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
1138
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
1139
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
1140
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
1141
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
1142
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
1143
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
1144
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
1145
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
1146
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
1147
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
1148
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
1149
+
1150
+ --mimepart_47a4a149d90d3_6bc215555559cf081e5--
1151
+ Rendering template within layouts/mailer
1152
+ Completed in 0.03263 (30 reqs/sec) | Rendering: 0.00303 (9%) | DB: 0.00035 (1%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
1153
+
1154
+
1155
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:58:49) [GET]
1156
+ Session ID:
1157
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"en"}
1158
+ Sent mail:
1159
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1160
+ From: mutoh@highway.ne.jp
1161
+ To: mutoh@highway.ne.jp
1162
+ Subject: multipart test mail
1163
+ Mime-Version: 1.0
1164
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a149de84e_6bc215555559cf08456
1165
+
1166
+
1167
+ --mimepart_47a4a149de84e_6bc215555559cf08456
1168
+ Content-Type: text/plain; charset=iso-2022-jp
1169
+ Content-Transfer-Encoding: 7bit
1170
+ Content-Disposition: inline
1171
+
1172
+ Hi foo,
1173
+
1174
+ I attached public/images/* for example.
1175
+
1176
+ --
1177
+ bar@example.com
1178
+
1179
+ --mimepart_47a4a149de84e_6bc215555559cf08456
1180
+ Content-Type: application/octet-stream; name=rails.png
1181
+ Content-Transfer-Encoding: Base64
1182
+ Content-Disposition: attachment; filename=rails.png
1183
+
1184
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
1185
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
1186
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
1187
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
1188
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
1189
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
1190
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
1191
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
1192
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
1193
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
1194
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
1195
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
1196
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
1197
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
1198
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
1199
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
1200
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
1201
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
1202
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
1203
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
1204
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
1205
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
1206
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
1207
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
1208
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
1209
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
1210
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
1211
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
1212
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
1213
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
1214
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
1215
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
1216
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
1217
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
1218
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
1219
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
1220
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
1221
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
1222
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
1223
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
1224
+
1225
+ --mimepart_47a4a149de84e_6bc215555559cf08456--
1226
+ Rendering template within layouts/mailer
1227
+ Completed in 0.01433 (69 reqs/sec) | Rendering: 0.00139 (9%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
1228
+
1229
+
1230
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:58:49) [GET]
1231
+ Session ID:
1232
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"kr"}
1233
+ Sent mail:
1234
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1235
+ From: mutoh@highway.ne.jp
1236
+ To: mutoh@highway.ne.jp
1237
+ Subject: multipart test mail
1238
+ Mime-Version: 1.0
1239
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a149e2fd7_6bc215555559cf087d6
1240
+
1241
+
1242
+ --mimepart_47a4a149e2fd7_6bc215555559cf087d6
1243
+ Content-Type: text/plain; charset=iso-2022-jp
1244
+ Content-Transfer-Encoding: 7bit
1245
+ Content-Disposition: inline
1246
+
1247
+ Hi foo,
1248
+
1249
+ I attached public/images/* for example.
1250
+
1251
+ --
1252
+ bar@example.com
1253
+
1254
+ --mimepart_47a4a149e2fd7_6bc215555559cf087d6
1255
+ Content-Type: application/octet-stream; name=rails.png
1256
+ Content-Transfer-Encoding: Base64
1257
+ Content-Disposition: attachment; filename=rails.png
1258
+
1259
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
1260
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
1261
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
1262
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
1263
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
1264
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
1265
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
1266
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
1267
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
1268
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
1269
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
1270
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
1271
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
1272
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
1273
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
1274
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
1275
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
1276
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
1277
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
1278
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
1279
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
1280
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
1281
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
1282
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
1283
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
1284
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
1285
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
1286
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
1287
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
1288
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
1289
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
1290
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
1291
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
1292
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
1293
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
1294
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
1295
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
1296
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
1297
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
1298
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
1299
+
1300
+ --mimepart_47a4a149e2fd7_6bc215555559cf087d6--
1301
+ Rendering template within layouts/mailer
1302
+ Completed in 0.01627 (61 reqs/sec) | Rendering: 0.00142 (8%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
1303
+
1304
+
1305
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:58:49) [GET]
1306
+ Session ID:
1307
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"fr"}
1308
+ Sent mail:
1309
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1310
+ From: mutoh@highway.ne.jp
1311
+ To: mutoh@highway.ne.jp
1312
+ Subject: multipart test mail
1313
+ Mime-Version: 1.0
1314
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a149e7b6f_6bc215555559cf08109c
1315
+
1316
+
1317
+ --mimepart_47a4a149e7b6f_6bc215555559cf08109c
1318
+ Content-Type: text/plain; charset=iso-2022-jp
1319
+ Content-Transfer-Encoding: 7bit
1320
+ Content-Disposition: inline
1321
+
1322
+ Hi foo,
1323
+
1324
+ I attached public/images/* for example for French.
1325
+
1326
+ --
1327
+ bar@example.com
1328
+
1329
+ --mimepart_47a4a149e7b6f_6bc215555559cf08109c
1330
+ Content-Type: application/octet-stream; name=rails.png
1331
+ Content-Transfer-Encoding: Base64
1332
+ Content-Disposition: attachment; filename=rails.png
1333
+
1334
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
1335
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
1336
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
1337
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
1338
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
1339
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
1340
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
1341
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
1342
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
1343
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
1344
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
1345
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
1346
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
1347
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
1348
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
1349
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
1350
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
1351
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
1352
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
1353
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
1354
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
1355
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
1356
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
1357
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
1358
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
1359
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
1360
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
1361
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
1362
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
1363
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
1364
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
1365
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
1366
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
1367
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
1368
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
1369
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
1370
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
1371
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
1372
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
1373
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
1374
+
1375
+ --mimepart_47a4a149e7b6f_6bc215555559cf08109c--
1376
+ Rendering template within layouts/mailer
1377
+ Completed in 0.01651 (60 reqs/sec) | Rendering: 0.00142 (8%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
1378
+ SQL (0.000242) ROLLBACK
1379
+ SQL (0.000142) BEGIN
1380
+
1381
+
1382
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1383
+ Session ID:
1384
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"ja"}
1385
+ Sent mail:
1386
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1387
+ From: mutoh@highway.ne.jp
1388
+ To: mutoh@highway.ne.jp
1389
+ Subject: =?iso-2022-jp?B?GyRCJTclcyUwJWslUSE8JUglRiU5JUglYSE8JWsbKEI=?=
1390
+ Mime-Version: 1.0
1391
+ Content-Type: text/plain; charset=iso-2022-jp
1392
+
1393
+ $B$3$s$K$A$o(B foo$B$5$s(B
1394
+
1395
+ $B%7%s%0%k%Q!<%H%a!<%k$G$9!#$$$$$G$9$+!)(B
1396
+ Rendering template within layouts/mailer
1397
+ Completed in 0.02164 (46 reqs/sec) | Rendering: 0.00079 (3%) | DB: 0.00038 (1%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
1398
+
1399
+
1400
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1401
+ Session ID:
1402
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"en"}
1403
+ Sent mail:
1404
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1405
+ From: mutoh@highway.ne.jp
1406
+ To: mutoh@highway.ne.jp
1407
+ Subject: singlepart test mail
1408
+ Mime-Version: 1.0
1409
+ Content-Type: text/plain; charset=utf-8
1410
+
1411
+ Hi foo,
1412
+
1413
+ This is a singlepart mail. OK?
1414
+ Rendering template within layouts/mailer
1415
+ Completed in 0.00634 (157 reqs/sec) | Rendering: 0.00072 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
1416
+
1417
+
1418
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1419
+ Session ID:
1420
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"kr"}
1421
+ Sent mail:
1422
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1423
+ From: mutoh@highway.ne.jp
1424
+ To: mutoh@highway.ne.jp
1425
+ Subject: singlepart test mail
1426
+ Mime-Version: 1.0
1427
+ Content-Type: text/plain; charset=utf-8
1428
+
1429
+ Hi foo,
1430
+
1431
+ This is a singlepart mail. OK?
1432
+ Rendering template within layouts/mailer
1433
+ Completed in 0.00602 (166 reqs/sec) | Rendering: 0.00069 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
1434
+
1435
+
1436
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1437
+ Session ID:
1438
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"fr"}
1439
+ Sent mail:
1440
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1441
+ From: mutoh@highway.ne.jp
1442
+ To: mutoh@highway.ne.jp
1443
+ Subject: singlepart test mail
1444
+ Mime-Version: 1.0
1445
+ Content-Type: text/plain; charset=utf-8
1446
+
1447
+ Hi foo,
1448
+
1449
+ This is a singlepart mail in french. OK?
1450
+ Rendering template within layouts/mailer
1451
+ Completed in 0.00605 (165 reqs/sec) | Rendering: 0.00070 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
1452
+ SQL (0.000174) ROLLBACK
1453
+ SQL (0.000074) BEGIN
1454
+
1455
+
1456
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1457
+ Session ID:
1458
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"ja"}
1459
+ Rendering template within layouts/users
1460
+ Rendering users/custom_error_message
1461
+ Completed in 0.00796 (125 reqs/sec) | Rendering: 0.00520 (65%) | DB: 0.00025 (3%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
1462
+
1463
+
1464
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1465
+ Session ID:
1466
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"en"}
1467
+ Rendering template within layouts/users
1468
+ Rendering users/custom_error_message
1469
+ Completed in 0.00464 (215 reqs/sec) | Rendering: 0.00382 (82%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
1470
+
1471
+
1472
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1473
+ Session ID:
1474
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"kr"}
1475
+ Rendering template within layouts/users
1476
+ Rendering users/custom_error_message
1477
+ Completed in 0.00376 (266 reqs/sec) | Rendering: 0.00294 (78%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
1478
+
1479
+
1480
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1481
+ Session ID:
1482
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"fr"}
1483
+ Rendering template within layouts/users
1484
+ Rendering users/custom_error_message
1485
+ Completed in 0.00434 (230 reqs/sec) | Rendering: 0.00349 (80%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
1486
+ SQL (0.000182) ROLLBACK
1487
+ SQL (0.000081) BEGIN
1488
+
1489
+
1490
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1491
+ Session ID:
1492
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"ja", "plural"=>"true"}
1493
+ Rendering template within layouts/users
1494
+ Rendering users/custom_error_message
1495
+ Completed in 0.00354 (282 reqs/sec) | Rendering: 0.00280 (79%) | DB: 0.00026 (7%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
1496
+
1497
+
1498
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1499
+ Session ID:
1500
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"en", "plural"=>"true"}
1501
+ Rendering template within layouts/users
1502
+ Rendering users/custom_error_message
1503
+ Completed in 0.00317 (315 reqs/sec) | Rendering: 0.00253 (79%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
1504
+
1505
+
1506
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:58:50) [GET]
1507
+ Session ID:
1508
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"fr", "plural"=>"true"}
1509
+ Rendering template within layouts/users
1510
+ Rendering users/custom_error_message
1511
+ Completed in 0.00362 (276 reqs/sec) | Rendering: 0.00257 (71%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
1512
+ SQL (0.000167) ROLLBACK
1513
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
1514
+ SQL (0.000218) SET SQL_AUTO_IS_NULL=0
1515
+ SQL (0.000130) BEGIN
1516
+ Article Load (0.000771) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1517
+ Article Load (0.000787) SELECT * FROM `articles` WHERE (`articles`.`id` = 2) 
1518
+ SQL (0.000182) ROLLBACK
1519
+ UsersController: missing default helper path users_helper
1520
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
1521
+ SQL (0.000126) SET SQL_AUTO_IS_NULL=0
1522
+ SQL (0.000085) BEGIN
1523
+ Article Load (0.000759) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1524
+
1525
+
1526
+ Processing ArticlesController#create (for 0.0.0.0 at 2008-02-03 01:59:34) [POST]
1527
+ Session ID:
1528
+ Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>Sun, 01 Apr 2007}, "action"=>"create", "controller"=>"articles", "lang"=>"ja"}
1529
+ Article Load (0.000598) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
1530
+ Rendering template within layouts/application
1531
+ Rendering articles/new
1532
+ Rendered articles/_form (0.00388)
1533
+ Completed in 0.02881 (34 reqs/sec) | Rendering: 0.02290 (79%) | DB: 0.00157 (5%) | 200 OK [http://test.host/articles/create?article%5Bdescription%5D=&article%5Blastupdate%5D=2007-04-01&article%5Btitle%5D=&lang=ja]
1534
+
1535
+
1536
+ Processing ArticlesController#create (for 0.0.0.0 at 2008-02-03 01:59:34) [POST]
1537
+ Session ID:
1538
+ Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>Sun, 01 Apr 2007}, "action"=>"create", "controller"=>"articles", "lang"=>"en"}
1539
+ Article Load (0.000576) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
1540
+ Rendering template within layouts/application
19
1541
  Rendering articles/new
20
- Rendered articles/_form (0.07856)
21
- Completed in 0.40412 (2 reqs/sec) | Rendering: 0.18180 (44%) | DB: 0.07435 (18%) | 200 OK [http://test.host/articles/create?lang=ja&article=titledescriptionlastupdate2007-04-01]
22
- SQL (0.000330) ROLLBACK
23
- SQL (0.000188) BEGIN
24
- Article Load (0.000949) SELECT * FROM articles WHERE (articles.`id` = 1) 
25
- Article Load (0.000819) SELECT * FROM articles WHERE (articles.`id` = 1) 
1542
+ Rendered articles/_form (0.00234)
1543
+ Completed in 0.00672 (148 reqs/sec) | Rendering: 0.00486 (72%) | DB: 0.00058 (8%) | 200 OK [http://test.host/articles/create?article%5Bdescription%5D=&article%5Blastupdate%5D=2007-04-01&article%5Btitle%5D=&lang=ja]
1544
+ SQL (0.000192) ROLLBACK
1545
+ SQL (0.000088) BEGIN
1546
+ Article Load (0.000494) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1547
+ Article Load (0.000362) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
26
1548
 
27
1549
 
28
- Processing ArticlesController#destroy (for 0.0.0.0 at 2007-07-05 00:42:02) [POST]
1550
+ Processing ArticlesController#destroy (for 0.0.0.0 at 2008-02-03 01:59:34) [POST]
29
1551
  Session ID:
30
1552
  Parameters: {"action"=>"destroy", "id"=>"1", "controller"=>"articles"}
31
- Article Load (0.000998) SELECT * FROM articles WHERE (articles.`id` = 1) 
32
- Article Destroy (0.048058)  DELETE FROM articles
1553
+ Article Load (0.000483) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1554
+ Article Destroy (0.000189)  DELETE FROM `articles`
33
1555
  WHERE `id` = 1
34
1556
  
35
1557
  Redirected to http://test.host/articles/list
36
- Completed in 0.05224 (19 reqs/sec) | DB: 0.05134 (98%) | 302 Found [http://test.host/articles/destroy/1]
37
- Article Load (0.001003) SELECT * FROM articles WHERE (articles.`id` = 1) 
38
- SQL (0.220307) ROLLBACK
39
- SQL (0.000379) BEGIN
40
- Article Load (0.000997) SELECT * FROM articles WHERE (articles.`id` = 1) 
1558
+ Completed in 0.00196 (510 reqs/sec) | DB: 0.00181 (92%) | 302 Found [http://test.host/articles/destroy/1]
1559
+ Article Load (0.000406) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1560
+ SQL (0.000546) ROLLBACK
1561
+ SQL (0.000085) BEGIN
1562
+ Article Load (0.000423) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
41
1563
 
42
1564
 
43
- Processing ArticlesController#list (for 0.0.0.0 at 2007-07-05 00:42:02) [GET]
1565
+ Processing ArticlesController#list (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
44
1566
  Session ID:
45
1567
  Parameters: {"action"=>"list", "controller"=>"articles", "lang"=>"ja"}
46
- SQL (0.167564) SELECT count(*) AS count_all FROM articles 
47
- Article Load (0.000931) SELECT * FROM articles LIMIT 0, 10
48
- Rendering within layouts/application
1568
+ Article Load (0.000719) SELECT * FROM `articles` 
1569
+ Rendering template within layouts/application
1570
+ Rendering articles/list
1571
+ Completed in 0.00640 (156 reqs/sec) | Rendering: 0.00489 (76%) | DB: 0.00218 (34%) | 200 OK [http://test.host/articles/list?lang=ja]
1572
+
1573
+
1574
+ Processing ArticlesController#list (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1575
+ Session ID:
1576
+ Parameters: {"action"=>"list", "controller"=>"articles", "lang"=>"en"}
1577
+ Article Load (0.000588) SELECT * FROM `articles` 
1578
+ Rendering template within layouts/application
1579
+ Rendering articles/list
1580
+ Completed in 0.00465 (215 reqs/sec) | Rendering: 0.00337 (72%) | DB: 0.00059 (12%) | 200 OK [http://test.host/articles/list?lang=ja]
1581
+
1582
+
1583
+ Processing ArticlesController#list (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1584
+ Session ID:
1585
+ Parameters: {"action"=>"list", "controller"=>"articles", "lang"=>"kr"}
1586
+ Article Load (0.000943) SELECT * FROM `articles` 
1587
+ Rendering template within layouts/application
1588
+ Rendering articles/list
1589
+ Completed in 0.00634 (157 reqs/sec) | Rendering: 0.00371 (58%) | DB: 0.00094 (14%) | 200 OK [http://test.host/articles/list?lang=ja]
1590
+
1591
+
1592
+ Processing ArticlesController#list (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1593
+ Session ID:
1594
+ Parameters: {"action"=>"list", "controller"=>"articles", "lang"=>"fr"}
1595
+ Article Load (0.000582) SELECT * FROM `articles` 
1596
+ Rendering template within layouts/application
49
1597
  Rendering articles/list
50
- Completed in 0.23473 (4 reqs/sec) | Rendering: 0.06364 (27%) | DB: 0.39118 (166%) | 200 OK [http://test.host/articles/list?lang=ja]
51
- SQL (0.000347) ROLLBACK
52
- SQL (0.000186) BEGIN
53
- Article Load (0.000993) SELECT * FROM articles WHERE (articles.`id` = 1) 
1598
+ Completed in 0.00340 (294 reqs/sec) | Rendering: 0.00145 (42%) | DB: 0.00058 (17%) | 200 OK [http://test.host/articles/list?lang=ja]
1599
+ SQL (0.000163) ROLLBACK
1600
+ SQL (0.000086) BEGIN
1601
+ Article Load (0.000482) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
54
1602
 
55
1603
 
56
- Processing ArticlesController#multi_error_messages_for (for 0.0.0.0 at 2007-07-05 00:42:03) [POST]
1604
+ Processing ArticlesController#multi_error_messages_for (for 0.0.0.0 at 2008-02-03 01:59:34) [POST]
57
1605
  Session ID:
58
1606
  Parameters: {"article"=>{"article_description"=>"", "article_title"=>"", "user_name"=>""}, "action"=>"multi_error_messages_for", "controller"=>"articles", "lang"=>"ja"}
59
- User Columns (0.002554) SHOW FIELDS FROM users
60
- Article Load (0.000977) SELECT * FROM articles WHERE (articles.title = '') LIMIT 1
61
- Rendering within layouts/application
1607
+ User Columns (0.001107) SHOW FIELDS FROM `users`
1608
+ Article Load (0.000520) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
1609
+ Rendering template within layouts/application
1610
+ Rendering articles/multi_error_messages_for
1611
+ Completed in 0.00991 (100 reqs/sec) | Rendering: 0.00578 (58%) | DB: 0.00236 (23%) | 200 OK [http://test.host/articles/multi_error_messages_for?article%5Barticle_description%5D=&article%5Barticle_title%5D=&article%5Buser_name%5D=&lang=ja]
1612
+
1613
+
1614
+ Processing ArticlesController#multi_error_messages_for (for 0.0.0.0 at 2008-02-03 01:59:34) [POST]
1615
+ Session ID:
1616
+ Parameters: {"article"=>{"article_description"=>"", "article_title"=>"", "user_name"=>""}, "action"=>"multi_error_messages_for", "controller"=>"articles", "lang"=>"en"}
1617
+ Article Load (0.000581) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
1618
+ Rendering template within layouts/application
62
1619
  Rendering articles/multi_error_messages_for
63
- SQL (0.000278) ROLLBACK
64
- SQL (0.000118) BEGIN
65
- Article Load (0.000646) SELECT * FROM articles WHERE (articles.`id` = 1) 
1620
+ Completed in 0.00708 (141 reqs/sec) | Rendering: 0.00505 (71%) | DB: 0.00058 (8%) | 200 OK [http://test.host/articles/multi_error_messages_for?article%5Barticle_description%5D=&article%5Barticle_title%5D=&article%5Buser_name%5D=&lang=ja]
1621
+ SQL (0.000205) ROLLBACK
1622
+ SQL (0.000081) BEGIN
1623
+ Article Load (0.000517) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
66
1624
 
67
1625
 
68
- Processing ArticlesController#new (for 0.0.0.0 at 2007-07-05 00:42:03) [GET]
1626
+ Processing ArticlesController#new (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
69
1627
  Session ID:
70
1628
  Parameters: {"action"=>"new", "controller"=>"articles", "lang"=>"ja"}
71
- Rendering within layouts/application
1629
+ Rendering template within layouts/application
1630
+ Rendering articles/new
1631
+ Rendered articles/_form (0.00125)
1632
+ Completed in 0.00417 (239 reqs/sec) | Rendering: 0.00355 (85%) | DB: 0.00080 (19%) | 200 OK [http://test.host/articles/new?lang=ja]
1633
+
1634
+
1635
+ Processing ArticlesController#new (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1636
+ Session ID:
1637
+ Parameters: {"action"=>"new", "controller"=>"articles", "lang"=>"en"}
1638
+ Rendering template within layouts/application
72
1639
  Rendering articles/new
73
- Rendered articles/_form (0.08647)
74
- Completed in 0.09559 (10 reqs/sec) | Rendering: 0.09464 (99%) | DB: 0.00104 (1%) | 200 OK [http://test.host/articles/new?lang=ja]
75
- SQL (0.000325) ROLLBACK
76
- SQL (0.000188) BEGIN
77
- Article Load (0.000777) SELECT * FROM articles WHERE (articles.`id` = 1) 
1640
+ Rendered articles/_form (0.00125)
1641
+ Completed in 0.00379 (264 reqs/sec) | Rendering: 0.00324 (85%) | DB: 0.00000 (0%) | 200 OK [http://test.host/articles/new?lang=ja]
1642
+ SQL (0.000258) ROLLBACK
1643
+ SQL (0.000101) BEGIN
1644
+ Article Load (0.000723) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
78
1645
 
79
1646
 
80
- Processing ArticlesController#show (for 0.0.0.0 at 2007-07-05 00:42:03) [GET]
1647
+ Processing ArticlesController#show (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
81
1648
  Session ID:
82
1649
  Parameters: {"action"=>"show", "id"=>"1", "controller"=>"articles", "lang"=>"ja"}
83
- Article Load (0.000736) SELECT * FROM articles WHERE (articles.`id` = 1) 
84
- Rendering within layouts/application
1650
+ Article Load (0.000577) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1651
+ Rendering template within layouts/application
1652
+ Rendering articles/show
1653
+ Completed in 0.00994 (100 reqs/sec) | Rendering: 0.00780 (78%) | DB: 0.00166 (16%) | 200 OK [http://test.host/articles/show/1?lang=ja]
1654
+ Article Load (0.000677) SELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1
1655
+
1656
+
1657
+ Processing ArticlesController#show (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1658
+ Session ID:
1659
+ Parameters: {"action"=>"show", "id"=>"1", "controller"=>"articles", "lang"=>"en"}
1660
+ Article Load (0.000604) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1661
+ Rendering template within layouts/application
85
1662
  Rendering articles/show
86
- Completed in 0.14748 (6 reqs/sec) | Rendering: 0.14530 (98%) | DB: 0.00203 (1%) | 200 OK [http://test.host/articles/show/1?lang=ja]
87
- SQL (0.000316) ROLLBACK
88
- SQL (0.000163) BEGIN
89
- Article Load (0.000979) SELECT * FROM articles WHERE (articles.`id` = 1) 
1663
+ Completed in 0.00726 (137 reqs/sec) | Rendering: 0.00536 (73%) | DB: 0.00128 (17%) | 200 OK [http://test.host/articles/show/1?lang=ja]
1664
+ SQL (0.000200) ROLLBACK
1665
+ SQL (0.000084) BEGIN
1666
+ Article Load (0.000520) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
90
1667
 
91
1668
 
92
- Processing ArticlesController#update (for 0.0.0.0 at 2007-07-05 00:42:03) [POST]
1669
+ Processing ArticlesController#update (for 0.0.0.0 at 2008-02-03 01:59:34) [POST]
93
1670
  Session ID:
94
1671
  Parameters: {"action"=>"update", "id"=>"1", "controller"=>"articles"}
95
- Article Load (0.000984) SELECT * FROM articles WHERE (articles.`id` = 1) 
96
- Article Load (0.073546) SELECT * FROM articles WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1
97
- Article Update (0.000419) UPDATE articles SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1
1672
+ Article Load (0.000513) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
1673
+ Article Load (0.000508) SELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1
1674
+ Article Update (0.000213) UPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1
98
1675
  Redirected to http://test.host/articles/show/1
99
- Completed in 0.08107 (12 reqs/sec) | DB: 0.07641 (94%) | 302 Found [http://test.host/articles/update/1]
100
- SQL (0.000280) ROLLBACK
101
- SQL (0.000144) BEGIN
1676
+ Completed in 0.00410 (244 reqs/sec) | DB: 0.00204 (49%) | 302 Found [http://test.host/articles/update/1]
1677
+ SQL (0.000141) ROLLBACK
1678
+ SQL (0.000091) BEGIN
102
1679
 
103
1680
 
104
- Processing MailerController#multipart (for 0.0.0.0 at 2007-07-05 00:42:03) [GET]
1681
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
105
1682
  Session ID:
106
1683
  Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"ja"}
107
1684
  Sent mail:
108
1685
  Date: Mon, 1 Jan 2007 00:00:00 +0900
109
1686
  From: mutoh@highway.ne.jp
110
1687
  To: mutoh@highway.ne.jp
1688
+ Subject: =?iso-2022-jp?B?GyRCJV4layVBJVEhPCVIJUYlOSVIJWEhPCVrGyhC?=
1689
+ Mime-Version: 1.0
1690
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a176b48f5_6c0115555559cf08163
1691
+
1692
+
1693
+ --mimepart_47a4a176b48f5_6c0115555559cf08163
1694
+ Content-Type: text/plain; charset=iso-2022-jp
1695
+ Content-Transfer-Encoding: 7bit
1696
+ Content-Disposition: inline
1697
+
1698
+ Hi foo,
1699
+
1700
+ $B%5%s%W%k$H$7$F(Bpublic/images/*$B$rE:IU$7$^$7$?!#(B
1701
+
1702
+ --
1703
+ bar@example.com
1704
+
1705
+ --mimepart_47a4a176b48f5_6c0115555559cf08163
1706
+ Content-Type: application/octet-stream; name=rails.png
1707
+ Content-Transfer-Encoding: Base64
1708
+ Content-Disposition: attachment; filename=rails.png
1709
+
1710
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
1711
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
1712
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
1713
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
1714
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
1715
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
1716
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
1717
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
1718
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
1719
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
1720
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
1721
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
1722
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
1723
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
1724
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
1725
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
1726
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
1727
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
1728
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
1729
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
1730
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
1731
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
1732
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
1733
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
1734
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
1735
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
1736
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
1737
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
1738
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
1739
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
1740
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
1741
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
1742
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
1743
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
1744
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
1745
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
1746
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
1747
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
1748
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
1749
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
1750
+
1751
+ --mimepart_47a4a176b48f5_6c0115555559cf08163--
1752
+ Rendering template within layouts/mailer
1753
+ Completed in 0.02142 (46 reqs/sec) | Rendering: 0.00183 (8%) | DB: 0.00023 (1%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
1754
+
1755
+
1756
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1757
+ Session ID:
1758
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"en"}
1759
+ Sent mail:
1760
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1761
+ From: mutoh@highway.ne.jp
1762
+ To: mutoh@highway.ne.jp
111
1763
  Subject: multipart test mail
112
1764
  Mime-Version: 1.0
113
- Content-Type: multipart/mixed; boundary=mimepart_468bbfcd3b76a_59291555555987001ee
1765
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a176b8410_6c0115555559cf08476
114
1766
 
115
1767
 
116
- --mimepart_468bbfcd3b76a_59291555555987001ee
1768
+ --mimepart_47a4a176b8410_6c0115555559cf08476
117
1769
  Content-Type: text/plain; charset=iso-2022-jp
118
1770
  Content-Transfer-Encoding: 7bit
119
1771
  Content-Disposition: inline
@@ -125,7 +1777,7 @@ I attached public/images/* for example.
125
1777
  --
126
1778
  bar@example.com
127
1779
 
128
- --mimepart_468bbfcd3b76a_59291555555987001ee
1780
+ --mimepart_47a4a176b8410_6c0115555559cf08476
129
1781
  Content-Type: application/octet-stream; name=rails.png
130
1782
  Content-Transfer-Encoding: Base64
131
1783
  Content-Disposition: attachment; filename=rails.png
@@ -171,17 +1823,24 @@ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
171
1823
  LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
172
1824
  +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
173
1825
 
174
- --mimepart_468bbfcd3b76a_59291555555987001ee--
1826
+ --mimepart_47a4a176b8410_6c0115555559cf08476--
1827
+ Rendering template within layouts/mailer
1828
+ Completed in 0.00898 (111 reqs/sec) | Rendering: 0.00092 (10%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
175
1829
 
176
- Rendering layoutfalsetextDate: Mon, 1 Jan 2007 00:00:00 +0900
1830
+
1831
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1832
+ Session ID:
1833
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"kr"}
1834
+ Sent mail:
1835
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
177
1836
  From: mutoh@highway.ne.jp
178
1837
  To: mutoh@highway.ne.jp
179
1838
  Subject: multipart test mail
180
1839
  Mime-Version: 1.0
181
- Content-Type: multipart/mixed; boundary=mimepart_468bbfcd3e65f_5929155555598700242
1840
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a176bad9b_6c0115555559cf087b5
182
1841
 
183
1842
 
184
- --mimepart_468bbfcd3e65f_5929155555598700242
1843
+ --mimepart_47a4a176bad9b_6c0115555559cf087b5
185
1844
  Content-Type: text/plain; charset=iso-2022-jp
186
1845
  Content-Transfer-Encoding: 7bit
187
1846
  Content-Disposition: inline
@@ -193,7 +1852,82 @@ I attached public/images/* for example.
193
1852
  --
194
1853
  bar@example.com
195
1854
 
196
- --mimepart_468bbfcd3e65f_5929155555598700242
1855
+ --mimepart_47a4a176bad9b_6c0115555559cf087b5
1856
+ Content-Type: application/octet-stream; name=rails.png
1857
+ Content-Transfer-Encoding: Base64
1858
+ Content-Disposition: attachment; filename=rails.png
1859
+
1860
+ iVBORw0KGgoAAAANSUhEUgAAADIAAABACAMAAABvC9RJAAAABGdBTUEAANbY
1861
+ 1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAADA
1862
+ UExURbhJOOnNsM6Hd3wYIqYdJc+VirVVSJgaIvPl27Cmpf///5InK4s2Qsh0
1863
+ atqkkbU7NK4gKNCrpIkVHcNpSLAqLPXr47Z6eMl8VuzVvvv18fjv6d62rb9R
1864
+ T9ehcpRHSLIyL86NYerMxqQ8NbpGQ7IuN8VyTOzZ1N+1k/v39akVHsRmXapJ
1865
+ Pe/cyfLg06RcWOXEob9hRL9bVb1YPubDuv79/JwwMK4lLP3699rDwrFlafv4
1866
+ +p9QS/nz8MVhZYYdIq0eIJkvcAEAAAXBSURBVHjalNdbY6JKDABgHK4dlqt4
1867
+ RUVERVSqomA9pfD//9VJZkCp+7R5cHctXzMzhIQVKKXb4Z9/iIVA6VB0XVVV
1868
+ XTc//I5VJ/BfuS5JkioKIFQJQ9WVrL9h0edx5pFl+Nk/K4Ll2bYkCl9MQBb1
1869
+ oAjZeTP6rWQtNc+b/hkYkICRT1fiJFeUDKI/wtgsTS5HJR3Ab0GDpEBSqTwH
1870
+ JGEkO4+Wy+XpTmOUm9HcnMOf/X6WGYIFKwMiNmSlKLAwJOcNISGlJRkR87TV
1871
+ tKmW9mLSF65XBVbGCQpdeZFzf0S2A9MMp/QVWmxcfVgZI+2yngS2vSHxlr7F
1872
+ 1DFgZU+SK7+y9Pumpu3eDU2NIHiSQ0sETuLxKT6NnwubpmmqTSi9yUHBibtS
1873
+ OBHOZj+De2f2ThBx3EvvcN02ni9lspTN8EYJz+LqSkuuNB1ZBRn3eg06HdPw
1874
+ msZzUyba+GxcDcziPpMoAqHTgS8ZRyTMnE6j4OLT49w0ZXnZzwQhQPJMoggz
1875
+ OU1ns+N4zAygniFJSUCICUHgjmYNOTTCKqRkT4JeioYjGb7DCJaQhoz6Z2GF
1876
+ hB1wZFmBZxdFkpiD45EZQLESG4wk2Xw+J0tIg6SC6/FqL/AKIMZAS9MW7a3e
1877
+ yeJp5nMoPVjaAUhuFTZE4WHY1nGgcXMcH334DbHHiLRBA5Wq4CHbPBipzckA
1878
+ DEepkdhFIMHPgFg8DSNuSwLPK6JBOW1Mmo7xcon9EMySmwO7L20W2JFDy+m0
1879
+ QZqZSPYzJCVmS1s9SW06M8+blfdJWaIBNDBIlLyIN4e6WW4YQVNbE7pzCpPe
1880
+ 77sJN4PjPu1ZrzzSHtOwE3Nd2E1CoF59C0r3dt/tWKLpNfDvpJPGiiHNmRNR
1881
+ AqJRujew0G8sUTmdmEngX7q7IfF81BIXjksgvhDypwMTTco7qeFIiqJzAKf5
1882
+ plmYKEoB1svlTlsDiW5GjeWA0RDbfBJXrCyIQH49soDuP7XneV2T7JevLCIS
1883
+ K+w+57fJPvLsX0gSgCgtWUFbm01+9YbJfuvPWBU90QbqsiWuLgiW8dZP9iGd
1884
+ RsUL2dbyRWBWQBrnjRiX680oAq9F9hmqsiE4XXJBCN+IXHv7ixc0xisC1uCz
1885
+ J1GtrHwjJtRpwIITAedIQ9TD50rPjdsbCQMrCDqmj1NndGaVLMmO8/FN3tup
1886
+ Zr0MIAvH1HnDSeBA5PI72V0Cdocbk+EkhPaLD3Ki+I4jq8P3hVGCW2mNhaMz
1887
+ g15U4XyJiCwP1aH2TkxD3s/aRAK0amzB+IiJFeymKCT5652EsL2pwVdnMQDd
1888
+ TkciVhUcdC470/cZdIHEISu/QMhgulrr9dptSFWJfz4+/kpDLkQ2BWYgwRpD
1889
+ 4gSNC+TD2f6eXFe2fUzirZtQO2QBRJadr+7qyswSBDbt7UYUfxMIv3NyssVe
1890
+ QuyGFAVUFid4APpi8R3x152LQZrYB+2jv16zYu4SPDQ3YYFF6lm4ILt+9gr+
1891
+ mEkvgteL0NDZKGFIynME9QthwPct0fNczyts6EkB97pIJKn6s4KhYzVbSdZ4
1892
+ cJ4qtUTfYkPdPhI7ueBft5ek+oaenETagPXLmmjw9dRIXuQ/XrpRsh7wus/F
1893
+ T3gddKMblYEks+bWdkhJQ9mn9CeBa65ySO/f4ucN3gcPO06gk8g/+z3MQPam
1894
+ xMnQXTFyp3to6buGLF7k6vs4aTtk60O3mCEhtQykQlK1JOKFJCddgluRayTl
1895
+ oOwSAocOp3INwwFNiy6BDu64NhKmG/K9o040m63hsCPLB1J3iPNFy0uCxB9+
1896
+ dckNYjbDiXOnoc3eYEW3EnVY5p+STqIkwqOFhxEIRcIPd8YPefoD+1IrRqrP
1897
+ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
1898
+ LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
1899
+ +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
1900
+
1901
+ --mimepart_47a4a176bad9b_6c0115555559cf087b5--
1902
+ Rendering template within layouts/mailer
1903
+ Completed in 0.00884 (113 reqs/sec) | Rendering: 0.00089 (10%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
1904
+
1905
+
1906
+ Processing MailerController#multipart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
1907
+ Session ID:
1908
+ Parameters: {"action"=>"multipart", "controller"=>"mailer", "lang"=>"fr"}
1909
+ Sent mail:
1910
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
1911
+ From: mutoh@highway.ne.jp
1912
+ To: mutoh@highway.ne.jp
1913
+ Subject: multipart test mail
1914
+ Mime-Version: 1.0
1915
+ Content-Type: multipart/mixed; boundary=mimepart_47a4a176bd74c_6c0115555559cf081030
1916
+
1917
+
1918
+ --mimepart_47a4a176bd74c_6c0115555559cf081030
1919
+ Content-Type: text/plain; charset=iso-2022-jp
1920
+ Content-Transfer-Encoding: 7bit
1921
+ Content-Disposition: inline
1922
+
1923
+ Hi foo,
1924
+
1925
+ I attached public/images/* for example for French.
1926
+
1927
+ --
1928
+ bar@example.com
1929
+
1930
+ --mimepart_47a4a176bd74c_6c0115555559cf081030
197
1931
  Content-Type: application/octet-stream; name=rails.png
198
1932
  Content-Transfer-Encoding: Base64
199
1933
  Content-Disposition: attachment; filename=rails.png
@@ -239,91 +1973,231 @@ z4W4ePxEtfd4rNTD45Hrq8fjgB8YwfoHgw1b9xNbXyXyQktqKDtX1fHtVIdP
239
1973
  LCMWecHqFetNFb/YK1xjJFttgl/YifYZcMUh5VOsSaN2o+LB8+jsK7hwSKmw
240
1974
  +Jf/iAzxTfh/AQYADd4StjMb1WUAAAAASUVORK5CYII=
241
1975
 
242
- --mimepart_468bbfcd3e65f_5929155555598700242--
243
- within layouts/mailer
244
- Completed in 1.53427 (0 reqs/sec) | Rendering: 0.08630 (5%) | DB: 0.00042 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
245
- SQL (0.000271) ROLLBACK
246
- SQL (0.000156) BEGIN
1976
+ --mimepart_47a4a176bd74c_6c0115555559cf081030--
1977
+ Rendering template within layouts/mailer
1978
+ Completed in 0.00884 (113 reqs/sec) | Rendering: 0.00091 (10%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/multipart?lang=ja]
1979
+ SQL (0.000170) ROLLBACK
1980
+ SQL (0.000081) BEGIN
247
1981
 
248
1982
 
249
- Processing MailerController#singlepart (for 0.0.0.0 at 2007-07-05 00:42:05) [GET]
1983
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
250
1984
  Session ID:
251
1985
  Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"ja"}
252
1986
  Sent mail:
253
1987
  Date: Mon, 1 Jan 2007 00:00:00 +0900
254
1988
  From: mutoh@highway.ne.jp
255
1989
  To: mutoh@highway.ne.jp
256
- Subject: singlepart test mail
1990
+ Subject: =?iso-2022-jp?B?GyRCJTclcyUwJWslUSE8JUglRiU5JUglYSE8JWsbKEI=?=
257
1991
  Mime-Version: 1.0
258
1992
  Content-Type: text/plain; charset=iso-2022-jp
259
1993
 
1994
+ $B$3$s$K$A$o(B foo$B$5$s(B
1995
+
1996
+ $B%7%s%0%k%Q!<%H%a!<%k$G$9!#$$$$$G$9$+!)(B
1997
+ Rendering template within layouts/mailer
1998
+ Completed in 0.01277 (78 reqs/sec) | Rendering: 0.00076 (5%) | DB: 0.00025 (1%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
1999
+
2000
+
2001
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2002
+ Session ID:
2003
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"en"}
2004
+ Sent mail:
2005
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
2006
+ From: mutoh@highway.ne.jp
2007
+ To: mutoh@highway.ne.jp
2008
+ Subject: singlepart test mail
2009
+ Mime-Version: 1.0
2010
+ Content-Type: text/plain; charset=utf-8
2011
+
260
2012
  Hi foo,
261
2013
 
262
2014
  This is a singlepart mail. OK?
2015
+ Rendering template within layouts/mailer
2016
+ Completed in 0.00583 (171 reqs/sec) | Rendering: 0.00066 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
263
2017
 
264
- Rendering layoutfalsetextDate: Mon, 1 Jan 2007 00:00:00 +0900
2018
+
2019
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2020
+ Session ID:
2021
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"kr"}
2022
+ Sent mail:
2023
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
265
2024
  From: mutoh@highway.ne.jp
266
2025
  To: mutoh@highway.ne.jp
267
2026
  Subject: singlepart test mail
268
2027
  Mime-Version: 1.0
269
- Content-Type: text/plain; charset=iso-2022-jp
2028
+ Content-Type: text/plain; charset=utf-8
270
2029
 
271
2030
  Hi foo,
272
2031
 
273
2032
  This is a singlepart mail. OK?
274
- within layouts/mailer
275
- Completed in 0.03473 (28 reqs/sec) | Rendering: 0.00179 (5%) | DB: 0.00043 (1%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
276
- SQL (0.000280) ROLLBACK
277
- SQL (0.000154) SET SQL_AUTO_IS_NULL=0
278
- SQL (0.000230) BEGIN
279
- Article Columns (0.001492) SHOW FIELDS FROM articles
280
- Article Load (0.000715) SELECT * FROM articles WHERE (articles.`id` = 1) 
281
- SQL (0.000363) SELECT count(*) AS count_all FROM articles 
282
-
283
-
284
- Processing ArticlesController#create (for 127.0.0.1 at 2007-07-05 00:42:08) [POST]
285
- Session ID: cdf518524f055b2a755268263732db2b
2033
+ Rendering template within layouts/mailer
2034
+ Completed in 0.00670 (149 reqs/sec) | Rendering: 0.00074 (10%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
2035
+
2036
+
2037
+ Processing MailerController#singlepart (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2038
+ Session ID:
2039
+ Parameters: {"action"=>"singlepart", "controller"=>"mailer", "lang"=>"fr"}
2040
+ Sent mail:
2041
+ Date: Mon, 1 Jan 2007 00:00:00 +0900
2042
+ From: mutoh@highway.ne.jp
2043
+ To: mutoh@highway.ne.jp
2044
+ Subject: singlepart test mail
2045
+ Mime-Version: 1.0
2046
+ Content-Type: text/plain; charset=utf-8
2047
+
2048
+ Hi foo,
2049
+
2050
+ This is a singlepart mail in french. OK?
2051
+ Rendering template within layouts/mailer
2052
+ Completed in 0.00564 (177 reqs/sec) | Rendering: 0.00065 (11%) | DB: 0.00000 (0%) | 200 OK [http://test.host/mailer/singlepart?lang=ja]
2053
+ SQL (0.000186) ROLLBACK
2054
+ SQL (0.000071) BEGIN
2055
+
2056
+
2057
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2058
+ Session ID:
2059
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"ja"}
2060
+ Rendering template within layouts/users
2061
+ Rendering users/custom_error_message
2062
+ Completed in 0.00733 (136 reqs/sec) | Rendering: 0.00472 (64%) | DB: 0.00026 (3%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
2063
+
2064
+
2065
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2066
+ Session ID:
2067
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"en"}
2068
+ Rendering template within layouts/users
2069
+ Rendering users/custom_error_message
2070
+ Completed in 0.00454 (220 reqs/sec) | Rendering: 0.00364 (80%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
2071
+
2072
+
2073
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2074
+ Session ID:
2075
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"kr"}
2076
+ Rendering template within layouts/users
2077
+ Rendering users/custom_error_message
2078
+ Completed in 0.00374 (267 reqs/sec) | Rendering: 0.00292 (77%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
2079
+
2080
+
2081
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2082
+ Session ID:
2083
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"fr"}
2084
+ Rendering template within layouts/users
2085
+ Rendering users/custom_error_message
2086
+ Completed in 0.00471 (212 reqs/sec) | Rendering: 0.00391 (83%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja]
2087
+ SQL (0.000177) ROLLBACK
2088
+ SQL (0.000079) BEGIN
2089
+
2090
+
2091
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2092
+ Session ID:
2093
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"ja", "plural"=>"true"}
2094
+ Rendering template within layouts/users
2095
+ Rendering users/custom_error_message
2096
+ Completed in 0.00343 (291 reqs/sec) | Rendering: 0.00270 (78%) | DB: 0.00026 (7%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
2097
+
2098
+
2099
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2100
+ Session ID:
2101
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"en", "plural"=>"true"}
2102
+ Rendering template within layouts/users
2103
+ Rendering users/custom_error_message
2104
+ Completed in 0.00312 (320 reqs/sec) | Rendering: 0.00248 (79%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
2105
+
2106
+
2107
+ Processing UsersController#custom_error_message (for 0.0.0.0 at 2008-02-03 01:59:34) [GET]
2108
+ Session ID:
2109
+ Parameters: {"action"=>"custom_error_message", "controller"=>"users", "lang"=>"fr", "plural"=>"true"}
2110
+ Rendering template within layouts/users
2111
+ Rendering users/custom_error_message
2112
+ Completed in 0.00442 (226 reqs/sec) | Rendering: 0.00307 (69%) | DB: 0.00000 (0%) | 200 OK [http://test.host/users/custom_error_message?lang=ja&plural=true]
2113
+ SQL (0.000171) ROLLBACK
2114
+ WARNING: You're using the Ruby-based MySQL library that ships with Rails. This library is not suited for production. Please install the C-based MySQL library instead (gem install mysql).
2115
+ SQL (0.000138) SET SQL_AUTO_IS_NULL=0
2116
+ SQL (0.000072) BEGIN
2117
+ Article Load (0.000507) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
2118
+ SQL (0.000268) SELECT count(*) AS count_all FROM `articles` 
2119
+
2120
+
2121
+ Processing ArticlesController#create (for 127.0.0.1 at 2008-02-03 01:59:36) [POST]
2122
+ Session ID: cf030d31164b710f6453cd1bfa949014
286
2123
  Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>"2007-04-01"}, "action"=>"create", "controller"=>"articles"}
287
- Article Load (0.001419) SELECT * FROM articles WHERE (articles.title = '') LIMIT 1
288
- Rendering layoutfalseactionnew within layouts/application
2124
+ Article Load (0.000627) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
2125
+ Rendering template within layouts/application
289
2126
  Rendering articles/new
290
- Rendered articles/_form (0.01764)
291
- Completed in 0.04353 (22 reqs/sec) | Rendering: 0.03447 (79%) | DB: 0.00437 (10%) | 200 OK [http://www.example.com/articles/create]
292
- SQL (0.000470) ROLLBACK
293
- SQL (0.000204) BEGIN
294
- Article Load (0.000997) SELECT * FROM articles WHERE (articles.`id` = 1) 
2127
+ Rendered articles/_form (0.00400)
2128
+ Completed in 0.01451 (68 reqs/sec) | Rendering: 0.00878 (60%) | DB: 0.00161 (11%) | 200 OK [http://www.example.com/articles/create]
295
2129
 
296
2130
 
297
- Processing ArticlesController#list (for 127.0.0.1 at 2007-07-05 00:42:08) [GET]
298
- Session ID: 84798eb1816d5d0825437241cde37f85
2131
+ Processing ArticlesController#create (for 127.0.0.1 at 2008-02-03 01:59:36) [POST]
2132
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--750b3c065193ff7ba6a4f68fc2fb0d5612fa983c
2133
+ Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"=>"2007-04-01"}, "action"=>"create", "controller"=>"articles"}
2134
+ Article Load (0.000583) SELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1
2135
+ Rendering template within layouts/application
2136
+ Rendering articles/new
2137
+ Rendered articles/_form (0.00243)
2138
+ Completed in 0.00658 (152 reqs/sec) | Rendering: 0.00474 (72%) | DB: 0.00058 (8%) | 200 OK [http://www.example.com/articles/create]
2139
+ SQL (0.000194) ROLLBACK
2140
+ SQL (0.000090) BEGIN
2141
+ Article Load (0.000498) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
2142
+
2143
+
2144
+ Processing ArticlesController#list (for 127.0.0.1 at 2008-02-03 01:59:36) [GET]
2145
+ Session ID: e003253b3640ec8079b973fb9781f862
2146
+ Parameters: {"action"=>"list", "controller"=>"articles"}
2147
+ Article Load (0.000525) SELECT * FROM `articles` 
2148
+ Rendering template within layouts/application
2149
+ Rendering articles/list
2150
+ Completed in 0.00592 (168 reqs/sec) | Rendering: 0.00476 (80%) | DB: 0.00131 (22%) | 200 OK [http://www.example.com/articles/list]
2151
+
2152
+
2153
+ Processing ArticlesController#list (for 127.0.0.1 at 2008-02-03 01:59:36) [GET]
2154
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--750b3c065193ff7ba6a4f68fc2fb0d5612fa983c
299
2155
  Parameters: {"action"=>"list", "controller"=>"articles"}
300
- SQL (0.000715) SELECT count(*) AS count_all FROM articles 
301
- Article Load (0.000922) SELECT * FROM articles LIMIT 0, 10
302
- Rendering within layouts/application
2156
+ Article Load (0.000583) SELECT * FROM `articles` 
2157
+ Rendering template within layouts/application
303
2158
  Rendering articles/list
304
- Completed in 0.02965 (33 reqs/sec) | Rendering: 0.02576 (86%) | DB: 0.00331 (11%) | 200 OK [http://www.example.com/articles/list]
305
- SQL (0.000244) ROLLBACK
306
- SQL (0.000121) BEGIN
307
- Article Load (0.000608) SELECT * FROM articles WHERE (articles.`id` = 1) 
2159
+ Completed in 0.00442 (226 reqs/sec) | Rendering: 0.00316 (71%) | DB: 0.00058 (13%) | 200 OK [http://www.example.com/articles/list]
2160
+ SQL (0.000188) ROLLBACK
2161
+ SQL (0.000091) BEGIN
2162
+ Article Load (0.000490) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
308
2163
 
309
2164
 
310
- Processing ArticlesController#new (for 127.0.0.1 at 2007-07-05 00:42:08) [GET]
311
- Session ID: c852bff7efdb6f5642dc29ecbe55b4af
2165
+ Processing ArticlesController#new (for 127.0.0.1 at 2008-02-03 01:59:36) [GET]
2166
+ Session ID: 7a5cf8ee49e31401c08a09aaaeae9067
312
2167
  Parameters: {"action"=>"new", "controller"=>"articles"}
313
- Rendering within layouts/application
2168
+ Rendering template within layouts/application
314
2169
  Rendering articles/new
315
- Rendered articles/_form (0.00636)
316
- Completed in 0.01481 (67 reqs/sec) | Rendering: 0.01405 (94%) | DB: 0.00097 (6%) | 200 OK [http://www.example.com/articles/new]
317
- SQL (0.000245) ROLLBACK
318
- SQL (0.000120) BEGIN
319
- Article Load (0.000629) SELECT * FROM articles WHERE (articles.`id` = 1) 
2170
+ Rendered articles/_form (0.00114)
2171
+ Completed in 0.00336 (297 reqs/sec) | Rendering: 0.00287 (85%) | DB: 0.00077 (22%) | 200 OK [http://www.example.com/articles/new]
2172
+
2173
+
2174
+ Processing ArticlesController#new (for 127.0.0.1 at 2008-02-03 01:59:36) [GET]
2175
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--750b3c065193ff7ba6a4f68fc2fb0d5612fa983c
2176
+ Parameters: {"action"=>"new", "controller"=>"articles"}
2177
+ Rendering template within layouts/application
2178
+ Rendering articles/new
2179
+ Rendered articles/_form (0.00139)
2180
+ Completed in 0.00418 (239 reqs/sec) | Rendering: 0.00366 (87%) | DB: 0.00000 (0%) | 200 OK [http://www.example.com/articles/new]
2181
+ SQL (0.000214) ROLLBACK
2182
+ SQL (0.000084) BEGIN
2183
+ Article Load (0.000509) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
2184
+
2185
+
2186
+ Processing ArticlesController#show (for 127.0.0.1 at 2008-02-03 01:59:36) [GET]
2187
+ Session ID: 28d3665d1368aa3778a2cfa333c8e834
2188
+ Parameters: {"action"=>"show", "id"=>"1", "controller"=>"articles"}
2189
+ Article Load (0.000546) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
2190
+ Rendering template within layouts/application
2191
+ Rendering articles/show
2192
+ Completed in 0.00823 (121 reqs/sec) | Rendering: 0.00698 (84%) | DB: 0.00135 (16%) | 200 OK [http://www.example.com/articles/show/1]
2193
+ Article Load (0.000681) SELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1
320
2194
 
321
2195
 
322
- Processing ArticlesController#show (for 127.0.0.1 at 2007-07-05 00:42:08) [GET]
323
- Session ID: 1f1464a300b7c793309e09cbeb09073c
2196
+ Processing ArticlesController#show (for 127.0.0.1 at 2008-02-03 01:59:36) [GET]
2197
+ Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo%0ASGFzaHsABjoKQHVzZWR7AA%3D%3D--750b3c065193ff7ba6a4f68fc2fb0d5612fa983c
324
2198
  Parameters: {"action"=>"show", "id"=>"1", "controller"=>"articles"}
325
- Article Load (0.000722) SELECT * FROM articles WHERE (articles.`id` = 1) 
326
- Rendering within layouts/application
2199
+ Article Load (0.000978) SELECT * FROM `articles` WHERE (`articles`.`id` = 1) 
2200
+ Rendering template within layouts/application
327
2201
  Rendering articles/show
328
- Completed in 0.03190 (31 reqs/sec) | Rendering: 0.03014 (94%) | DB: 0.00172 (5%) | 200 OK [http://www.example.com/articles/show/1]
329
- SQL (0.000600) ROLLBACK
2202
+ Completed in 0.00737 (135 reqs/sec) | Rendering: 0.00503 (68%) | DB: 0.00166 (22%) | 200 OK [http://www.example.com/articles/show/1]
2203
+ SQL (0.000212) ROLLBACK