gettext 1.10.0 → 1.90.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +156 -2
- data/NEWS +28 -0
- data/README +128 -138
- data/Rakefile +83 -43
- data/data/locale/es/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/rgettext.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rails.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/rgettext.mo +0 -0
- data/doc/classes/ActiveRecord/Base.html +360 -0
- data/doc/classes/ActiveRecord/ConnectionAdapters/Column.html +182 -0
- data/doc/classes/ActiveRecord/Migration.html +118 -0
- data/doc/classes/GetText.html +1790 -0
- data/doc/classes/GetText/ActiveRecordParser.html +236 -0
- data/doc/classes/GetText/Container.html +119 -0
- data/doc/classes/GetText/ErbContainer.html +223 -0
- data/doc/classes/GetText/ErbParser.html +156 -0
- data/doc/classes/GetText/GladeParser.html +133 -0
- data/doc/classes/GetText/NoboundTextDomainError.html +119 -0
- data/doc/classes/GetText/PoParser.html +169 -0
- data/doc/classes/GetText/Rails.html +293 -0
- data/doc/classes/GetText/RubyParser.html +123 -0
- data/doc/classes/GetText/TextDomain.html +572 -0
- data/doc/classes/GetText/TextDomainManager.html +443 -0
- data/doc/classes/Iconv.html +257 -0
- data/doc/classes/Iconv/Failure.html +105 -0
- data/doc/classes/Iconv/IllegalSequence.html +118 -0
- data/doc/classes/Iconv/InvalidCharacter.html +118 -0
- data/doc/classes/Iconv/InvalidEncoding.html +118 -0
- data/doc/classes/Locale.html +839 -0
- data/doc/classes/Locale/Object.html +799 -0
- data/doc/classes/Locale/SystemBase.html +271 -0
- data/doc/classes/Locale/SystemCGI.html +312 -0
- data/doc/classes/Locale/SystemJRuby.html +112 -0
- data/doc/classes/Locale/SystemPosix.html +113 -0
- data/doc/classes/Locale/SystemWin32.html +182 -0
- data/doc/classes/MOFile.html +678 -0
- data/doc/classes/MOFile/InvalidFormat.html +111 -0
- data/doc/classes/Module.html +158 -0
- data/doc/classes/String.html +225 -0
- data/doc/created.rid +1 -0
- data/doc/files/ChangeLog.html +2355 -0
- data/doc/files/README.html +510 -0
- data/doc/files/lib/gettext/active_record_rb.html +110 -0
- data/doc/files/lib/gettext/cgi_rb.html +110 -0
- data/doc/files/lib/gettext/container_rb.html +108 -0
- data/doc/files/lib/gettext/erb_rb.html +109 -0
- data/doc/files/lib/gettext/iconv_rb.html +109 -0
- data/doc/files/lib/gettext/mo_rb.html +108 -0
- data/doc/files/lib/gettext/parser/active_record_rb.html +119 -0
- data/doc/files/lib/gettext/parser/erb_rb.html +109 -0
- data/doc/files/lib/gettext/parser/glade_rb.html +109 -0
- data/doc/files/lib/gettext/parser/ruby_rb.html +110 -0
- data/doc/files/lib/gettext/poparser_rb.html +108 -0
- data/doc/files/lib/gettext/rails_compat_rb.html +108 -0
- data/doc/files/lib/gettext/rails_rb.html +112 -0
- data/doc/files/lib/gettext/rgettext_rb.html +110 -0
- data/doc/files/lib/gettext/rmsgfmt_rb.html +112 -0
- data/doc/files/lib/gettext/rmsgmerge_rb.html +112 -0
- data/doc/files/lib/gettext/string_rb.html +101 -0
- data/doc/files/lib/gettext/textdomain_rb.html +109 -0
- data/doc/files/lib/gettext/textdomainmanager_rb.html +109 -0
- data/doc/files/lib/gettext/utils_rb.html +111 -0
- data/doc/files/lib/gettext/version_rb.html +101 -0
- data/doc/files/lib/gettext_rb.html +113 -0
- data/doc/files/lib/locale/base_rb.html +101 -0
- data/doc/files/lib/locale/cgi_rb.html +108 -0
- data/doc/files/lib/locale/jruby_rb.html +110 -0
- data/doc/files/lib/locale/object_rb.html +101 -0
- data/doc/files/lib/locale/posix_rb.html +108 -0
- data/doc/files/lib/locale/win32_rb.html +110 -0
- data/doc/files/lib/locale/win32_table_rb.html +101 -0
- data/doc/files/lib/locale_rb.html +111 -0
- data/doc/fr_class_index.html +57 -0
- data/doc/fr_file_index.html +58 -0
- data/doc/fr_method_index.html +155 -0
- data/doc/index.html +24 -0
- data/doc/rdoc-style.css +208 -0
- data/lib/gettext.rb +102 -50
- data/lib/gettext/cgi.rb +2 -27
- data/lib/gettext/iconv.rb +76 -62
- data/lib/gettext/mo.rb +3 -3
- data/lib/gettext/parser/erb.rb +2 -2
- data/lib/gettext/rails.rb +69 -48
- data/lib/gettext/rgettext.rb +2 -2
- data/lib/gettext/rmsgmerge.rb +2 -2
- data/lib/gettext/string.rb +9 -5
- data/lib/gettext/textdomain.rb +3 -3
- data/lib/gettext/textdomainmanager.rb +5 -5
- data/lib/gettext/utils.rb +4 -3
- data/lib/gettext/version.rb +1 -1
- data/lib/{gettext/locale.rb → locale.rb} +11 -58
- data/lib/locale/base.rb +60 -0
- data/lib/{gettext/locale_cgi.rb → locale/cgi.rb} +30 -28
- data/lib/locale/jruby.rb +36 -0
- data/lib/{gettext/locale_object.rb → locale/object.rb} +78 -24
- data/lib/locale/posix.rb +22 -0
- data/lib/locale/win32.rb +48 -0
- data/lib/{gettext/locale_table_win32.rb → locale/win32_table.rb} +3 -2
- data/po/es/rails.po +1 -2
- data/po/hu/rails.po +139 -0
- data/po/hu/rgettext.po +126 -0
- data/po/ja/rails.po +5 -5
- data/po/ua/rails.po +150 -0
- data/po/ua/rgettext.po +132 -0
- data/pre-setup.rb +2 -4
- data/samples/cgi/cookie.cgi +1 -0
- data/samples/cgi/helloerb1.cgi +6 -3
- data/samples/cgi/helloerb2.cgi +6 -3
- data/samples/cgi/http.rb +3 -7
- data/samples/cgi/index.cgi +2 -1
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/hu/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/helloerb1.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/helloerb2.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/hellolib.mo +0 -0
- data/samples/cgi/locale/ua/LC_MESSAGES/main.mo +0 -0
- data/samples/cgi/po/hu/helloerb1.po +59 -0
- data/samples/cgi/po/hu/helloerb2.po +51 -0
- data/samples/cgi/po/hu/hellolib.po +23 -0
- data/samples/cgi/po/hu/main.po +82 -0
- data/samples/cgi/po/ua/helloerb1.po +62 -0
- data/samples/cgi/po/ua/helloerb2.po +54 -0
- data/samples/cgi/po/ua/hellolib.po +26 -0
- data/samples/cgi/po/ua/main.po +84 -0
- data/samples/locale/hu/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/hu/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello2.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello_noop.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hello_plural.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/helloglade2.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hellogtk.mo +0 -0
- data/samples/locale/ua/LC_MESSAGES/hellotk.mo +0 -0
- data/samples/po/hu/hello.po +22 -0
- data/samples/po/hu/hello2.po +30 -0
- data/samples/po/hu/hello_noop.po +26 -0
- data/samples/po/hu/hello_plural.po +25 -0
- data/samples/po/hu/helloglade2.po +31 -0
- data/samples/po/hu/hellogtk.po +22 -0
- data/samples/po/hu/hellotk.po +23 -0
- data/samples/po/ua/hello.po +22 -0
- data/samples/po/ua/hello2.po +30 -0
- data/samples/po/ua/hello_noop.po +26 -0
- data/samples/po/ua/hello_plural.po +29 -0
- data/samples/po/ua/helloglade2.po +34 -0
- data/samples/po/ua/hellogtk.po +22 -0
- data/samples/po/ua/hellotk.po +26 -0
- data/samples/rails/README +15 -31
- data/samples/rails/Rakefile +1 -1
- data/samples/rails/app/controllers/application.rb +11 -4
- data/samples/rails/app/controllers/articles_controller.rb +96 -0
- data/samples/rails/app/helpers/application_helper.rb +1 -1
- data/samples/rails/app/helpers/{blog_helper.rb → articles_helper.rb} +6 -7
- data/samples/rails/app/views/articles/edit.html.erb +18 -0
- data/samples/rails/app/views/articles/index.html.erb +17 -0
- data/samples/rails/app/views/articles/new.html.erb +16 -0
- data/samples/rails/app/views/articles/show.html.erb +6 -0
- data/samples/rails/app/views/layouts/articles.html.erb +26 -0
- data/samples/rails/config/boot.rb +104 -13
- data/samples/rails/config/database.yml +24 -21
- data/samples/rails/config/environment.rb +35 -30
- data/samples/rails/config/environments/development.rb +5 -6
- data/samples/rails/config/environments/production.rb +2 -3
- data/samples/rails/config/environments/test.rb +5 -2
- data/samples/rails/config/initializers/inflections.rb +10 -0
- data/samples/rails/config/initializers/mime_types.rb +5 -0
- data/samples/rails/config/routes.rb +30 -11
- data/samples/rails/db/migrate/001_create_articles.rb +14 -0
- data/samples/rails/db/schema.rb +16 -5
- data/samples/rails/lib/tasks/gettext.rake +2 -2
- data/samples/rails/locale/bs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ca/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/en/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/eo/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/hr/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/hu/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/it/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nb/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/ua/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/vi/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
- data/samples/rails/po/blog.pot +24 -24
- data/samples/rails/po/bs/blog.po +29 -29
- data/samples/rails/po/ca/blog.po +27 -27
- data/samples/rails/po/cs/blog.po +27 -27
- data/samples/rails/po/de/blog.po +27 -27
- data/samples/rails/po/el/blog.po +27 -27
- data/samples/rails/po/en/blog.po +24 -24
- data/samples/rails/po/eo/blog.po +27 -27
- data/samples/rails/po/es/blog.po +27 -27
- data/samples/rails/po/fr/blog.po +27 -27
- data/samples/rails/po/hr/blog.po +29 -29
- data/samples/rails/po/hu/blog.po +105 -0
- data/samples/rails/po/it/blog.po +27 -27
- data/samples/rails/po/ja/blog.po +27 -27
- data/samples/rails/po/ko/blog.po +27 -27
- data/samples/rails/po/nb/blog.po +26 -27
- data/samples/rails/po/nl/blog.po +27 -27
- data/samples/rails/po/pt_BR/blog.po +27 -27
- data/samples/rails/po/ru/blog.po +27 -27
- data/samples/rails/po/ua/blog.po +108 -0
- data/samples/rails/po/vi/blog.po +26 -31
- data/samples/rails/po/zh/blog.po +27 -27
- data/samples/rails/po/zh_TW/blog.po +27 -27
- data/samples/rails/public/404.html +27 -5
- data/samples/rails/public/422.html +30 -0
- data/samples/rails/public/500.html +27 -5
- data/samples/rails/public/index.html +6 -6
- data/samples/rails/public/javascripts/application.js +2 -0
- data/samples/rails/public/javascripts/controls.js +532 -319
- data/samples/rails/public/javascripts/dragdrop.js +521 -133
- data/samples/rails/public/javascripts/effects.js +708 -442
- data/samples/rails/public/javascripts/prototype.js +3393 -953
- data/samples/rails/public/stylesheets/blog.css +4 -0
- data/samples/rails/public/stylesheets/scaffold.css +5 -5
- data/samples/rails/test/functional/articles_controller_test.rb +51 -0
- data/samples/rails/test/test_helper.rb +31 -19
- data/samples/rails/test/unit/article_test.rb +2 -9
- data/samples/rails/vendor/plugins/gettext/init.rb +5 -3
- data/samples/rails/vendor/plugins/gettext/lib/gettext_plugin.rb +9 -10
- data/samples/rails/vendor/plugins/gettext/locale/eo/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/hu/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/locale/ua/LC_MESSAGES/gettext_plugin.mo +0 -0
- data/samples/rails/vendor/plugins/gettext/po/eo/gettext_plugin.po +28 -0
- data/samples/rails/vendor/plugins/gettext/po/hu/gettext_plugin.po +27 -0
- data/samples/rails/vendor/plugins/gettext/po/ua/gettext_plugin.po +30 -0
- data/test/Rakefile +2 -1
- data/test/benchmark.rb +28 -0
- data/test/fixtures/topic.rb +15 -0
- data/test/rails/Rakefile +2 -1
- data/test/rails/app/controllers/articles_controller.rb +1 -1
- data/test/rails/app/controllers/users_controller.rb +10 -0
- data/test/rails/app/models/user.rb +2 -1
- data/test/rails/app/views/articles/{_form.rhtml → _form.html.erb} +0 -0
- data/test/rails/app/views/articles/active_form_error.html.erb +1 -0
- data/test/rails/app/views/articles/change_title_error_messages_for.html.erb +21 -0
- data/test/rails/app/views/articles/{edit.rhtml → edit.html.erb} +0 -0
- data/test/rails/app/views/articles/{list.rhtml → list.html.erb} +0 -3
- data/test/rails/app/views/articles/{list_fr.rhtml → list_fr.html.erb} +0 -0
- data/test/rails/app/views/articles/{multi_error_messages_for.rhtml → multi_error_messages_for.html.erb} +0 -0
- data/test/rails/app/views/articles/{new.rhtml → new.html.erb} +0 -0
- data/test/rails/app/views/articles/{show.rhtml → show.html.erb} +0 -0
- data/test/rails/app/views/layouts/{application.rhtml → application.html.erb} +0 -0
- data/test/rails/app/views/layouts/{mailer.rhtml → mailer.html.erb} +0 -0
- data/test/rails/app/views/layouts/users.html.erb +13 -0
- data/test/rails/app/views/users/custom_error_message.html.erb +13 -0
- data/test/rails/app/views/users/custom_error_message_fr.html.erb +13 -0
- data/test/rails/config/environment.rb +6 -1
- data/test/rails/config/environments/development.rb +0 -3
- data/test/rails/db/schema.rb +17 -10
- data/test/rails/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
- data/test/rails/log/development.log +136 -29
- data/test/rails/log/test.log +2002 -128
- data/test/rails/po/ja/rails_test.po +68 -61
- data/test/rails/po/rails_test.pot +57 -55
- data/test/rails/test/fixtures/users.yml +5 -0
- data/test/rails/test/functional/articles_controller_test.rb +6 -1
- data/test/rails/test/functional/users_controller_test.rb +65 -0
- data/test/rails/test/result/en/custom_error_message.html +83 -0
- data/test/rails/test/result/en/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/en/list.html +0 -3
- data/test/rails/test/result/en/multi_error_messages_for.html +1 -1
- data/test/rails/test/result/fr/custom_error_message.html +83 -0
- data/test/rails/test/result/fr/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/ja/custom_error_message.html +83 -0
- data/test/rails/test/result/ja/custom_error_message_with_plural.html +83 -0
- data/test/rails/test/result/ja/list.html +0 -3
- data/test/rails/test/result/ja/multi_error_messages_for.html +1 -1
- data/test/test.sh +5 -7
- data/test/{gettext_test_active_record.rb → test_active_record.rb} +20 -10
- data/test/{gettext_test_cgi.rb → test_cgi.rb} +0 -0
- data/test/{gettext_test.rb → test_gettext.rb} +91 -9
- data/test/test_java.sh +12 -0
- data/test/{gettext_test_locale.rb → test_locale.rb} +3 -8
- data/test/{gettext_test_multi_textdomain.rb → test_multi_textdomain.rb} +2 -2
- data/test/{gettext_test_parser.rb → test_parser.rb} +77 -77
- data/test/{gettext_test_rails.rb → test_rails.rb} +0 -0
- data/test/{gettext_test_rails_caching.rb → test_rails_caching.rb} +16 -2
- data/test/{gettext_test_string.rb → test_string.rb} +1 -0
- data/test/{test_rubyparser_N.rb → testlib/N_.rb} +0 -0
- data/test/testlib/erb.rhtml +15 -0
- data/test/testlib/erb.rxml +16 -0
- data/test/{test_rubyparser.rb → testlib/gettext.rb} +0 -0
- data/test/testlib/gladeparser.glade +183 -0
- data/test/{test_rubyparser_n_.rb → testlib/ngettext.rb} +0 -0
- data/test/{test_nsgettext.rb → testlib/nsgettext.rb} +0 -0
- data/test/{test_sgettext.rb → testlib/sgettext.rb} +0 -0
- data/test/{testlib1.rb → testlib/testlib1.rb} +0 -0
- data/test/{testlib2.rb → testlib/testlib2.rb} +1 -1
- data/test/{testlib3.rb → testlib/testlib3.rb} +0 -0
- data/test/{testlib4.rb → testlib/testlib4.rb} +1 -1
- data/test/{testlib5.rb → testlib/testlib5.rb} +0 -0
- data/test/{testlib6.rb → testlib/testlib6.rb} +0 -0
- metadata +1374 -1171
- data/ext/gettext/extconf.rb +0 -20
- data/ext/gettext/locale_system.c +0 -83
- data/lib/gettext/locale_posix.rb +0 -82
- data/lib/gettext/locale_win32.rb +0 -82
- data/samples/cgi/ruby.bat +0 -4
- data/samples/rails/app/controllers/blog_controller.rb +0 -58
- data/samples/rails/app/views/blog/_form.rhtml +0 -25
- data/samples/rails/app/views/blog/edit.rhtml +0 -22
- data/samples/rails/app/views/blog/list.rhtml +0 -29
- data/samples/rails/app/views/blog/new.rhtml +0 -21
- data/samples/rails/app/views/blog/show.rhtml +0 -18
- data/samples/rails/app/views/layouts/blog.rhtml +0 -36
- data/samples/rails/test/functional/blog_controller_test.rb +0 -98
- data/test/gettext_runner.rb +0 -22
File without changes
|
@@ -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
|
+
|
File without changes
|
@@ -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' %>
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -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 = '
|
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
|
data/test/rails/db/schema.rb
CHANGED
@@ -1,27 +1,34 @@
|
|
1
|
-
# This file is
|
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.
|
9
|
-
t.
|
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.
|
14
|
-
t.
|
15
|
-
t.
|
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.
|
26
|
+
t.string "name"
|
20
27
|
end
|
21
28
|
|
22
29
|
create_table "users", :force => true do |t|
|
23
|
-
t.
|
24
|
-
t.
|
30
|
+
t.string "name", :default => "", :null => false
|
31
|
+
t.date "lastupdate"
|
25
32
|
end
|
26
33
|
|
27
34
|
end
|
Binary file
|
@@ -1,29 +1,136 @@
|
|
1
|
-
# Logfile created on
|
2
|
-
[4;36;1mSQL (0.
|
3
|
-
[4;35;1mSQL (0.
|
4
|
-
[4;36;1mSQL (0.
|
5
|
-
[4;35;1mSQL (0.
|
6
|
-
[4;36;1mSQL (0.
|
7
|
-
[4;35;1mSQL (0.
|
8
|
-
[4;36;1mSQL (0.
|
9
|
-
[4;35;1mSQL (0.
|
10
|
-
[4;36;1mSQL (0.
|
11
|
-
[4;35;1mSQL (0.
|
12
|
-
[4;36;1mSQL (0.
|
13
|
-
[4;35;1mSQL (0.
|
14
|
-
[4;36;1mSQL (0.
|
15
|
-
[4;35;1mSQL (0.
|
16
|
-
[4;36;1mSQL (0.
|
17
|
-
[4;35;1mSQL (0.
|
18
|
-
[4;36;1mSQL (0.
|
19
|
-
[4;35;1mSQL (0.
|
20
|
-
[4;36;1mSQL (0.
|
21
|
-
[4;35;1mSQL (0.
|
22
|
-
[4;36;1mSQL (0.
|
23
|
-
[4;35;1mSQL (0.
|
24
|
-
[4;36;1mSQL (0.
|
25
|
-
[4;35;1mSQL (0.
|
26
|
-
[4;36;1mSQL (0.
|
27
|
-
[4;35;1mSQL (0.
|
28
|
-
[4;36;1mSQL (0.
|
29
|
-
[4;35;1mSQL (0.
|
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
|
+
[4;36;1mSQL (0.000138)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
3
|
+
[4;35;1mSQL (0.000287)[0m [0mSELECT version FROM schema_info[0m
|
4
|
+
[4;36;1mSQL (0.000000)[0m [0;1mMysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))[0m
|
5
|
+
[4;35;1mSQL (0.000339)[0m [0mSELECT * FROM schema_info[0m
|
6
|
+
[4;36;1mSQL (0.000387)[0m [0;1mSHOW TABLES[0m
|
7
|
+
[4;35;1mSQL (0.000926)[0m [0mSHOW FIELDS FROM `accounts`[0m
|
8
|
+
[4;36;1mSQL (0.000804)[0m [0;1mdescribe `accounts`[0m
|
9
|
+
[4;35;1mSQL (0.000830)[0m [0mSHOW KEYS FROM `accounts`[0m
|
10
|
+
[4;36;1mSQL (0.000880)[0m [0;1mSHOW FIELDS FROM `articles`[0m
|
11
|
+
[4;35;1mSQL (0.000862)[0m [0mdescribe `articles`[0m
|
12
|
+
[4;36;1mSQL (0.000816)[0m [0;1mSHOW KEYS FROM `articles`[0m
|
13
|
+
[4;35;1mSQL (0.000827)[0m [0mSHOW FIELDS FROM `people`[0m
|
14
|
+
[4;36;1mSQL (0.000741)[0m [0;1mdescribe `people`[0m
|
15
|
+
[4;35;1mSQL (0.000801)[0m [0mSHOW KEYS FROM `people`[0m
|
16
|
+
[4;36;1mSQL (0.000791)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
17
|
+
[4;35;1mSQL (0.000782)[0m [0mdescribe `users`[0m
|
18
|
+
[4;36;1mSQL (0.000802)[0m [0;1mSHOW KEYS FROM `users`[0m
|
19
|
+
[4;35;1mSQL (0.000134)[0m [0mSET SQL_AUTO_IS_NULL=0[0m
|
20
|
+
[4;36;1mSQL (0.022413)[0m [0;1mDROP DATABASE IF EXISTS `rails_unittest`[0m
|
21
|
+
[4;35;1mSQL (0.000231)[0m [0mCREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`[0m
|
22
|
+
[4;36;1mSQL (0.000127)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
23
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`[0m
|
24
|
+
[4;36;1mSQL (0.004974)[0m [0;1mCREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB[0m
|
25
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`[0m
|
26
|
+
[4;36;1mSQL (0.002455)[0m [0;1mCREATE 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[0m
|
27
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'people': DROP TABLE `people`[0m
|
28
|
+
[4;36;1mSQL (0.002927)[0m [0;1mCREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB[0m
|
29
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'users': DROP TABLE `users`[0m
|
30
|
+
[4;36;1mSQL (0.002801)[0m [0;1mCREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB[0m
|
31
|
+
[4;35;1mSQL (0.002161)[0m [0mCREATE TABLE `schema_info` (version int(11))[0m
|
32
|
+
[4;36;1mSQL (0.000284)[0m [0;1mINSERT INTO `schema_info` (version) VALUES(0)[0m
|
33
|
+
[4;35;1mSQL (0.000770)[0m [0mSHOW FIELDS FROM `schema_info`[0m
|
34
|
+
[4;36;1mSQL (0.000170)[0m [0;1mUPDATE schema_info SET version = 1[0m
|
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
|
+
[4;36;1mSQL (0.000209)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
37
|
+
[4;35;1mSQL (0.000447)[0m [0mSELECT version FROM schema_info[0m
|
38
|
+
[4;36;1mSQL (0.000000)[0m [0;1mMysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))[0m
|
39
|
+
[4;35;1mSQL (0.000504)[0m [0mSELECT * FROM schema_info[0m
|
40
|
+
[4;36;1mSQL (0.000619)[0m [0;1mSHOW TABLES[0m
|
41
|
+
[4;35;1mSQL (0.001582)[0m [0mSHOW FIELDS FROM `accounts`[0m
|
42
|
+
[4;36;1mSQL (0.001398)[0m [0;1mdescribe `accounts`[0m
|
43
|
+
[4;35;1mSQL (0.001449)[0m [0mSHOW KEYS FROM `accounts`[0m
|
44
|
+
[4;36;1mSQL (0.001495)[0m [0;1mSHOW FIELDS FROM `articles`[0m
|
45
|
+
[4;35;1mSQL (0.001531)[0m [0mdescribe `articles`[0m
|
46
|
+
[4;36;1mSQL (0.001434)[0m [0;1mSHOW KEYS FROM `articles`[0m
|
47
|
+
[4;35;1mSQL (0.001404)[0m [0mSHOW FIELDS FROM `people`[0m
|
48
|
+
[4;36;1mSQL (0.001280)[0m [0;1mdescribe `people`[0m
|
49
|
+
[4;35;1mSQL (0.001397)[0m [0mSHOW KEYS FROM `people`[0m
|
50
|
+
[4;36;1mSQL (0.001395)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
51
|
+
[4;35;1mSQL (0.001370)[0m [0mdescribe `users`[0m
|
52
|
+
[4;36;1mSQL (0.001409)[0m [0;1mSHOW KEYS FROM `users`[0m
|
53
|
+
[4;35;1mSQL (0.000187)[0m [0mSET SQL_AUTO_IS_NULL=0[0m
|
54
|
+
[4;36;1mSQL (0.016610)[0m [0;1mDROP DATABASE IF EXISTS `rails_unittest`[0m
|
55
|
+
[4;35;1mSQL (0.000346)[0m [0mCREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`[0m
|
56
|
+
[4;36;1mSQL (0.000187)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
57
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`[0m
|
58
|
+
[4;36;1mSQL (0.004405)[0m [0;1mCREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB[0m
|
59
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`[0m
|
60
|
+
[4;36;1mSQL (0.003410)[0m [0;1mCREATE 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[0m
|
61
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'people': DROP TABLE `people`[0m
|
62
|
+
[4;36;1mSQL (0.003338)[0m [0;1mCREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB[0m
|
63
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'users': DROP TABLE `users`[0m
|
64
|
+
[4;36;1mSQL (0.003485)[0m [0;1mCREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB[0m
|
65
|
+
[4;35;1mSQL (0.002077)[0m [0mCREATE TABLE `schema_info` (version int(11))[0m
|
66
|
+
[4;36;1mSQL (0.000401)[0m [0;1mINSERT INTO `schema_info` (version) VALUES(0)[0m
|
67
|
+
[4;35;1mSQL (0.001277)[0m [0mSHOW FIELDS FROM `schema_info`[0m
|
68
|
+
[4;36;1mSQL (0.000251)[0m [0;1mUPDATE schema_info SET version = 1[0m
|
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
|
+
[4;36;1mSQL (0.000133)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
71
|
+
[4;35;1mSQL (0.000283)[0m [0mSELECT version FROM schema_info[0m
|
72
|
+
[4;36;1mSQL (0.000000)[0m [0;1mMysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))[0m
|
73
|
+
[4;35;1mSQL (0.000352)[0m [0mSELECT * FROM schema_info[0m
|
74
|
+
[4;36;1mSQL (0.000374)[0m [0;1mSHOW TABLES[0m
|
75
|
+
[4;35;1mSQL (0.000924)[0m [0mSHOW FIELDS FROM `accounts`[0m
|
76
|
+
[4;36;1mSQL (0.000795)[0m [0;1mdescribe `accounts`[0m
|
77
|
+
[4;35;1mSQL (0.000837)[0m [0mSHOW KEYS FROM `accounts`[0m
|
78
|
+
[4;36;1mSQL (0.000847)[0m [0;1mSHOW FIELDS FROM `articles`[0m
|
79
|
+
[4;35;1mSQL (0.000844)[0m [0mdescribe `articles`[0m
|
80
|
+
[4;36;1mSQL (0.000810)[0m [0;1mSHOW KEYS FROM `articles`[0m
|
81
|
+
[4;35;1mSQL (0.000800)[0m [0mSHOW FIELDS FROM `people`[0m
|
82
|
+
[4;36;1mSQL (0.000719)[0m [0;1mdescribe `people`[0m
|
83
|
+
[4;35;1mSQL (0.000794)[0m [0mSHOW KEYS FROM `people`[0m
|
84
|
+
[4;36;1mSQL (0.000783)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
85
|
+
[4;35;1mSQL (0.000769)[0m [0mdescribe `users`[0m
|
86
|
+
[4;36;1mSQL (0.000804)[0m [0;1mSHOW KEYS FROM `users`[0m
|
87
|
+
[4;35;1mSQL (0.000121)[0m [0mSET SQL_AUTO_IS_NULL=0[0m
|
88
|
+
[4;36;1mSQL (0.015543)[0m [0;1mDROP DATABASE IF EXISTS `rails_unittest`[0m
|
89
|
+
[4;35;1mSQL (0.000228)[0m [0mCREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`[0m
|
90
|
+
[4;36;1mSQL (0.000125)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
91
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`[0m
|
92
|
+
[4;36;1mSQL (0.003462)[0m [0;1mCREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB[0m
|
93
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`[0m
|
94
|
+
[4;36;1mSQL (0.003007)[0m [0;1mCREATE 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[0m
|
95
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'people': DROP TABLE `people`[0m
|
96
|
+
[4;36;1mSQL (0.002417)[0m [0;1mCREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB[0m
|
97
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'users': DROP TABLE `users`[0m
|
98
|
+
[4;36;1mSQL (0.003187)[0m [0;1mCREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB[0m
|
99
|
+
[4;35;1mSQL (0.002010)[0m [0mCREATE TABLE `schema_info` (version int(11))[0m
|
100
|
+
[4;36;1mSQL (0.000280)[0m [0;1mINSERT INTO `schema_info` (version) VALUES(0)[0m
|
101
|
+
[4;35;1mSQL (0.000754)[0m [0mSHOW FIELDS FROM `schema_info`[0m
|
102
|
+
[4;36;1mSQL (0.000159)[0m [0;1mUPDATE schema_info SET version = 1[0m
|
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
|
+
[4;36;1mSQL (0.000132)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
105
|
+
[4;35;1mSQL (0.000287)[0m [0mSELECT version FROM schema_info[0m
|
106
|
+
[4;36;1mSQL (0.000000)[0m [0;1mMysql::Error: #42S01Table 'schema_info' already exists: CREATE TABLE `schema_info` (version int(11))[0m
|
107
|
+
[4;35;1mSQL (0.000340)[0m [0mSELECT * FROM schema_info[0m
|
108
|
+
[4;36;1mSQL (0.000370)[0m [0;1mSHOW TABLES[0m
|
109
|
+
[4;35;1mSQL (0.000928)[0m [0mSHOW FIELDS FROM `accounts`[0m
|
110
|
+
[4;36;1mSQL (0.000794)[0m [0;1mdescribe `accounts`[0m
|
111
|
+
[4;35;1mSQL (0.000827)[0m [0mSHOW KEYS FROM `accounts`[0m
|
112
|
+
[4;36;1mSQL (0.000852)[0m [0;1mSHOW FIELDS FROM `articles`[0m
|
113
|
+
[4;35;1mSQL (0.000849)[0m [0mdescribe `articles`[0m
|
114
|
+
[4;36;1mSQL (0.000804)[0m [0;1mSHOW KEYS FROM `articles`[0m
|
115
|
+
[4;35;1mSQL (0.000792)[0m [0mSHOW FIELDS FROM `people`[0m
|
116
|
+
[4;36;1mSQL (0.000715)[0m [0;1mdescribe `people`[0m
|
117
|
+
[4;35;1mSQL (0.000795)[0m [0mSHOW KEYS FROM `people`[0m
|
118
|
+
[4;36;1mSQL (0.000780)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
119
|
+
[4;35;1mSQL (0.000768)[0m [0mdescribe `users`[0m
|
120
|
+
[4;36;1mSQL (0.000807)[0m [0;1mSHOW KEYS FROM `users`[0m
|
121
|
+
[4;35;1mSQL (0.000127)[0m [0mSET SQL_AUTO_IS_NULL=0[0m
|
122
|
+
[4;36;1mSQL (0.017021)[0m [0;1mDROP DATABASE IF EXISTS `rails_unittest`[0m
|
123
|
+
[4;35;1mSQL (0.000226)[0m [0mCREATE DATABASE `rails_unittest` DEFAULT CHARACTER SET `utf8`[0m
|
124
|
+
[4;36;1mSQL (0.000124)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
125
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'accounts': DROP TABLE `accounts`[0m
|
126
|
+
[4;36;1mSQL (0.004192)[0m [0;1mCREATE TABLE `accounts` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `amount` int(11) DEFAULT NULL, `person_id` int(11) DEFAULT NULL) ENGINE=InnoDB[0m
|
127
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'articles': DROP TABLE `articles`[0m
|
128
|
+
[4;36;1mSQL (0.002801)[0m [0;1mCREATE 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[0m
|
129
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'people': DROP TABLE `people`[0m
|
130
|
+
[4;36;1mSQL (0.002576)[0m [0;1mCREATE TABLE `people` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT NULL) ENGINE=InnoDB[0m
|
131
|
+
[4;35;1mSQL (0.000000)[0m [0mMysql::Error: #42S02Unknown table 'users': DROP TABLE `users`[0m
|
132
|
+
[4;36;1mSQL (0.002906)[0m [0;1mCREATE TABLE `users` (`id` int(11) DEFAULT NULL auto_increment PRIMARY KEY, `name` varchar(255) DEFAULT '' NOT NULL, `lastupdate` date DEFAULT NULL) ENGINE=InnoDB[0m
|
133
|
+
[4;35;1mSQL (0.001929)[0m [0mCREATE TABLE `schema_info` (version int(11))[0m
|
134
|
+
[4;36;1mSQL (0.000255)[0m [0;1mINSERT INTO `schema_info` (version) VALUES(0)[0m
|
135
|
+
[4;35;1mSQL (0.000763)[0m [0mSHOW FIELDS FROM `schema_info`[0m
|
136
|
+
[4;36;1mSQL (0.000160)[0m [0;1mUPDATE schema_info SET version = 1[0m
|
data/test/rails/log/test.log
CHANGED
@@ -1,119 +1,1771 @@
|
|
1
|
-
# Logfile created on
|
2
|
-
[4;36;1mSQL (0.
|
3
|
-
[4;35;1mSQL (0.
|
4
|
-
[4;36;1mArticle
|
5
|
-
[4;35;1mArticle Load (0.
|
6
|
-
[4;36;
|
7
|
-
|
8
|
-
|
9
|
-
[4;
|
10
|
-
[4;
|
11
|
-
[4;
|
12
|
-
|
13
|
-
|
14
|
-
Processing ArticlesController#create (for 0.0.0.0 at
|
15
|
-
Session ID:
|
16
|
-
Parameters: {"article"=>{"title"=>"", "description"=>"", "lastupdate"
|
17
|
-
[4;
|
18
|
-
Rendering
|
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
|
+
[4;36;1mSQL (0.000131)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
3
|
+
[4;35;1mSQL (0.000072)[0m [0mBEGIN[0m
|
4
|
+
[4;36;1mArticle Load (0.000513)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
5
|
+
[4;35;1mArticle Load (0.000486)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 2) [0m
|
6
|
+
[4;36;1mSQL (0.000208)[0m [0;1mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000692)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
10
|
+
[4;35;1mSQL (0.000074)[0m [0mBEGIN[0m
|
11
|
+
[4;36;1mArticle Load (0.000622)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mArticle Load (0.000607)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
18
|
+
Rendering template within layouts/application
|
19
|
+
[4;36;1mSQL (0.000156)[0m [0;1mROLLBACK[0m
|
20
|
+
[4;35;1mSQL (0.000073)[0m [0mBEGIN[0m
|
21
|
+
[4;36;1mArticle Load (0.000468)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
22
|
+
[4;35;1mArticle Load (0.000374)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000500)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
29
|
+
[4;35;1mArticle Destroy (0.000184)[0m [0m DELETE FROM `articles`
|
30
|
+
WHERE `id` = 1
|
31
|
+
[0m
|
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
|
+
[4;36;1mArticle Load (0.000416)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
35
|
+
[4;35;1mSQL (0.000548)[0m [0mROLLBACK[0m
|
36
|
+
[4;36;1mSQL (0.000084)[0m [0;1mBEGIN[0m
|
37
|
+
[4;35;1mArticle Load (0.000440)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000504)[0m [0;1mSELECT * FROM `articles` [0m
|
44
|
+
Rendering template within layouts/application
|
45
|
+
[4;35;1mSQL (0.000135)[0m [0mROLLBACK[0m
|
46
|
+
[4;36;1mSQL (0.000074)[0m [0;1mBEGIN[0m
|
47
|
+
[4;35;1mArticle Load (0.000442)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mUser Columns (0.001077)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
54
|
+
[4;35;1mArticle Load (0.000491)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
55
|
+
Rendering template within layouts/application
|
56
|
+
[4;36;1mSQL (0.000148)[0m [0;1mROLLBACK[0m
|
57
|
+
[4;35;1mSQL (0.000073)[0m [0mBEGIN[0m
|
58
|
+
[4;36;1mArticle Load (0.000459)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mSQL (0.000324)[0m [0mROLLBACK[0m
|
66
|
+
[4;36;1mSQL (0.000254)[0m [0;1mBEGIN[0m
|
67
|
+
[4;35;1mArticle Load (0.000524)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000498)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
74
|
+
Rendering template within layouts/application
|
75
|
+
[4;35;1mSQL (0.000140)[0m [0mROLLBACK[0m
|
76
|
+
[4;36;1mSQL (0.000073)[0m [0;1mBEGIN[0m
|
77
|
+
[4;35;1mArticle Load (0.000465)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000487)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
84
|
+
[4;35;1mArticle Load (0.000496)[0m [0mSELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1[0m
|
85
|
+
[4;36;1mArticle Update (0.000209)[0m [0;1mUPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1[0m
|
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
|
+
[4;35;1mSQL (0.000141)[0m [0mROLLBACK[0m
|
89
|
+
[4;36;1mSQL (0.000082)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000168)[0m [0mROLLBACK[0m
|
391
|
+
[4;36;1mSQL (0.000082)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000225)[0m [0mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000131)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
467
|
+
[4;35;1mSQL (0.000072)[0m [0mBEGIN[0m
|
468
|
+
[4;36;1mArticle Load (0.000519)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
469
|
+
[4;35;1mArticle Load (0.000487)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 2) [0m
|
470
|
+
[4;36;1mSQL (0.000117)[0m [0;1mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000152)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
474
|
+
[4;35;1mSQL (0.000089)[0m [0mBEGIN[0m
|
475
|
+
[4;36;1mArticle Load (0.000466)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mArticle Load (0.000609)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
482
|
+
Rendering template within layouts/application
|
483
|
+
[4;36;1mSQL (0.000154)[0m [0;1mROLLBACK[0m
|
484
|
+
[4;35;1mSQL (0.000074)[0m [0mBEGIN[0m
|
485
|
+
[4;36;1mArticle Load (0.000466)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
486
|
+
[4;35;1mArticle Load (0.000368)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000649)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
493
|
+
[4;35;1mArticle Destroy (0.000214)[0m [0m DELETE FROM `articles`
|
494
|
+
WHERE `id` = 1
|
495
|
+
[0m
|
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
|
+
[4;36;1mArticle Load (0.000458)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
499
|
+
[4;35;1mSQL (0.000475)[0m [0mROLLBACK[0m
|
500
|
+
[4;36;1mSQL (0.000088)[0m [0;1mBEGIN[0m
|
501
|
+
[4;35;1mArticle Load (0.000430)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000600)[0m [0;1mSELECT * FROM `articles` [0m
|
508
|
+
Rendering template within layouts/application
|
509
|
+
[4;35;1mSQL (0.000141)[0m [0mROLLBACK[0m
|
510
|
+
[4;36;1mSQL (0.000075)[0m [0;1mBEGIN[0m
|
511
|
+
[4;35;1mArticle Load (0.000451)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mUser Columns (0.001077)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
518
|
+
[4;35;1mArticle Load (0.000510)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
519
|
+
Rendering template within layouts/application
|
520
|
+
[4;36;1mSQL (0.000144)[0m [0;1mROLLBACK[0m
|
521
|
+
[4;35;1mSQL (0.000073)[0m [0mBEGIN[0m
|
522
|
+
[4;36;1mArticle Load (0.000455)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mSQL (0.000185)[0m [0mROLLBACK[0m
|
530
|
+
[4;36;1mSQL (0.000074)[0m [0;1mBEGIN[0m
|
531
|
+
[4;35;1mArticle Load (0.000657)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000829)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
538
|
+
Rendering template within layouts/application
|
539
|
+
[4;35;1mSQL (0.000259)[0m [0mROLLBACK[0m
|
540
|
+
[4;36;1mSQL (0.000080)[0m [0;1mBEGIN[0m
|
541
|
+
[4;35;1mArticle Load (0.000486)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000508)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
548
|
+
[4;35;1mArticle Load (0.000870)[0m [0mSELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1[0m
|
549
|
+
[4;36;1mArticle Update (0.000244)[0m [0;1mUPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1[0m
|
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
|
+
[4;35;1mSQL (0.000142)[0m [0mROLLBACK[0m
|
553
|
+
[4;36;1mSQL (0.000089)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000178)[0m [0mROLLBACK[0m
|
855
|
+
[4;36;1mSQL (0.000085)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000175)[0m [0mROLLBACK[0m
|
929
|
+
[4;36;1mSQL (0.000111)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000180)[0m [0mROLLBACK[0m
|
963
|
+
[4;36;1mSQL (0.000081)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000169)[0m [0mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000370)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
991
|
+
[4;35;1mSQL (0.000167)[0m [0mBEGIN[0m
|
992
|
+
[4;36;1mArticle Load (0.000777)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
993
|
+
[4;35;1mArticle Load (0.000771)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 2) [0m
|
994
|
+
[4;36;1mSQL (0.000183)[0m [0;1mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000292)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
998
|
+
[4;35;1mSQL (0.000121)[0m [0mBEGIN[0m
|
999
|
+
[4;36;1mArticle Load (0.000735)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mArticle Load (0.000885)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
1006
|
+
Rendering template within layouts/application
|
1007
|
+
[4;36;1mSQL (0.000225)[0m [0;1mROLLBACK[0m
|
1008
|
+
[4;35;1mSQL (0.000129)[0m [0mBEGIN[0m
|
1009
|
+
[4;36;1mArticle Load (0.000751)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1010
|
+
[4;35;1mArticle Load (0.000642)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000767)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1017
|
+
[4;35;1mArticle Destroy (0.000288)[0m [0m DELETE FROM `articles`
|
1018
|
+
WHERE `id` = 1
|
1019
|
+
[0m
|
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
|
+
[4;36;1mArticle Load (0.000680)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1023
|
+
[4;35;1mSQL (0.000694)[0m [0mROLLBACK[0m
|
1024
|
+
[4;36;1mSQL (0.000143)[0m [0;1mBEGIN[0m
|
1025
|
+
[4;35;1mArticle Load (0.000736)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000797)[0m [0;1mSELECT * FROM `articles` [0m
|
1032
|
+
Rendering template within layouts/application
|
1033
|
+
[4;35;1mSQL (0.000207)[0m [0mROLLBACK[0m
|
1034
|
+
[4;36;1mSQL (0.000128)[0m [0;1mBEGIN[0m
|
1035
|
+
[4;35;1mArticle Load (0.000733)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mUser Columns (0.001726)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
1042
|
+
[4;35;1mArticle Load (0.000860)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
1043
|
+
Rendering template within layouts/application
|
1044
|
+
[4;36;1mSQL (0.000212)[0m [0;1mROLLBACK[0m
|
1045
|
+
[4;35;1mSQL (0.000130)[0m [0mBEGIN[0m
|
1046
|
+
[4;36;1mArticle Load (0.000758)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mSQL (0.000251)[0m [0mROLLBACK[0m
|
1054
|
+
[4;36;1mSQL (0.000127)[0m [0;1mBEGIN[0m
|
1055
|
+
[4;35;1mArticle Load (0.000759)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000765)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1062
|
+
Rendering template within layouts/application
|
1063
|
+
[4;35;1mSQL (0.000202)[0m [0mROLLBACK[0m
|
1064
|
+
[4;36;1mSQL (0.000127)[0m [0;1mBEGIN[0m
|
1065
|
+
[4;35;1mArticle Load (0.000710)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000840)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1072
|
+
[4;35;1mArticle Load (0.000800)[0m [0mSELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1[0m
|
1073
|
+
[4;36;1mArticle Update (0.000310)[0m [0;1mUPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1[0m
|
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
|
+
[4;35;1mSQL (0.000205)[0m [0mROLLBACK[0m
|
1077
|
+
[4;36;1mSQL (0.000149)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000242)[0m [0mROLLBACK[0m
|
1379
|
+
[4;36;1mSQL (0.000142)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000174)[0m [0mROLLBACK[0m
|
1453
|
+
[4;36;1mSQL (0.000074)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000182)[0m [0mROLLBACK[0m
|
1487
|
+
[4;36;1mSQL (0.000081)[0m [0;1mBEGIN[0m
|
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
|
+
[4;35;1mSQL (0.000167)[0m [0mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000218)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
1515
|
+
[4;35;1mSQL (0.000130)[0m [0mBEGIN[0m
|
1516
|
+
[4;36;1mArticle Load (0.000771)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1517
|
+
[4;35;1mArticle Load (0.000787)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 2) [0m
|
1518
|
+
[4;36;1mSQL (0.000182)[0m [0;1mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000126)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
1522
|
+
[4;35;1mSQL (0.000085)[0m [0mBEGIN[0m
|
1523
|
+
[4;36;1mArticle Load (0.000759)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mArticle Load (0.000598)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
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
|
+
[4;36;1mArticle Load (0.000576)[0m [0;1mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
1540
|
+
Rendering template within layouts/application
|
19
1541
|
Rendering articles/new
|
20
|
-
Rendered articles/_form (0.
|
21
|
-
Completed in 0.
|
22
|
-
[4;35;1mSQL (0.
|
23
|
-
[4;36;1mSQL (0.
|
24
|
-
[4;35;1mArticle Load (0.
|
25
|
-
[4;36;1mArticle Load (0.
|
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
|
+
[4;35;1mSQL (0.000192)[0m [0mROLLBACK[0m
|
1545
|
+
[4;36;1mSQL (0.000088)[0m [0;1mBEGIN[0m
|
1546
|
+
[4;35;1mArticle Load (0.000494)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1547
|
+
[4;36;1mArticle Load (0.000362)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
26
1548
|
|
27
1549
|
|
28
|
-
Processing ArticlesController#destroy (for 0.0.0.0 at
|
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
|
-
[4;35;1mArticle Load (0.
|
32
|
-
[4;36;1mArticle Destroy (0.
|
1553
|
+
[4;35;1mArticle Load (0.000483)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1554
|
+
[4;36;1mArticle Destroy (0.000189)[0m [0;1m DELETE FROM `articles`
|
33
1555
|
WHERE `id` = 1
|
34
1556
|
[0m
|
35
1557
|
Redirected to http://test.host/articles/list
|
36
|
-
Completed in 0.
|
37
|
-
[4;35;1mArticle Load (0.
|
38
|
-
[4;36;1mSQL (0.
|
39
|
-
[4;35;1mSQL (0.
|
40
|
-
[4;36;1mArticle Load (0.
|
1558
|
+
Completed in 0.00196 (510 reqs/sec) | DB: 0.00181 (92%) | 302 Found [http://test.host/articles/destroy/1]
|
1559
|
+
[4;35;1mArticle Load (0.000406)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1560
|
+
[4;36;1mSQL (0.000546)[0m [0;1mROLLBACK[0m
|
1561
|
+
[4;35;1mSQL (0.000085)[0m [0mBEGIN[0m
|
1562
|
+
[4;36;1mArticle Load (0.000423)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
41
1563
|
|
42
1564
|
|
43
|
-
Processing ArticlesController#list (for 0.0.0.0 at
|
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
|
-
[4;35;
|
47
|
-
|
48
|
-
Rendering
|
1568
|
+
[4;35;1mArticle Load (0.000719)[0m [0mSELECT * FROM `articles` [0m
|
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
|
+
[4;36;1mArticle Load (0.000588)[0m [0;1mSELECT * FROM `articles` [0m
|
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
|
+
[4;35;1mArticle Load (0.000943)[0m [0mSELECT * FROM `articles` [0m
|
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
|
+
[4;36;1mArticle Load (0.000582)[0m [0;1mSELECT * FROM `articles` [0m
|
1596
|
+
Rendering template within layouts/application
|
49
1597
|
Rendering articles/list
|
50
|
-
Completed in 0.
|
51
|
-
[4;35;1mSQL (0.
|
52
|
-
[4;36;1mSQL (0.
|
53
|
-
[4;35;1mArticle Load (0.
|
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
|
+
[4;35;1mSQL (0.000163)[0m [0mROLLBACK[0m
|
1600
|
+
[4;36;1mSQL (0.000086)[0m [0;1mBEGIN[0m
|
1601
|
+
[4;35;1mArticle Load (0.000482)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
54
1602
|
|
55
1603
|
|
56
|
-
Processing ArticlesController#multi_error_messages_for (for 0.0.0.0 at
|
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
|
-
[4;36;1mUser Columns (0.
|
60
|
-
[4;35;1mArticle Load (0.
|
61
|
-
Rendering
|
1607
|
+
[4;36;1mUser Columns (0.001107)[0m [0;1mSHOW FIELDS FROM `users`[0m
|
1608
|
+
[4;35;1mArticle Load (0.000520)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
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
|
+
[4;36;1mArticle Load (0.000581)[0m [0;1mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
1618
|
+
Rendering template within layouts/application
|
62
1619
|
Rendering articles/multi_error_messages_for
|
63
|
-
|
64
|
-
[4;35;1mSQL (0.
|
65
|
-
[4;36;
|
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
|
+
[4;35;1mSQL (0.000205)[0m [0mROLLBACK[0m
|
1622
|
+
[4;36;1mSQL (0.000081)[0m [0;1mBEGIN[0m
|
1623
|
+
[4;35;1mArticle Load (0.000517)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
66
1624
|
|
67
1625
|
|
68
|
-
Processing ArticlesController#new (for 0.0.0.0 at
|
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
|
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.
|
74
|
-
Completed in 0.
|
75
|
-
[4;
|
76
|
-
[4;
|
77
|
-
[4;
|
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
|
+
[4;36;1mSQL (0.000258)[0m [0;1mROLLBACK[0m
|
1643
|
+
[4;35;1mSQL (0.000101)[0m [0mBEGIN[0m
|
1644
|
+
[4;36;1mArticle Load (0.000723)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
78
1645
|
|
79
1646
|
|
80
|
-
Processing ArticlesController#show (for 0.0.0.0 at
|
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
|
-
[4;
|
84
|
-
Rendering
|
1650
|
+
[4;35;1mArticle Load (0.000577)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000677)[0m [0;1mSELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1[0m
|
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
|
+
[4;35;1mArticle Load (0.000604)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1661
|
+
Rendering template within layouts/application
|
85
1662
|
Rendering articles/show
|
86
|
-
Completed in 0.
|
87
|
-
[4;
|
88
|
-
[4;
|
89
|
-
[4;
|
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
|
+
[4;36;1mSQL (0.000200)[0m [0;1mROLLBACK[0m
|
1665
|
+
[4;35;1mSQL (0.000084)[0m [0mBEGIN[0m
|
1666
|
+
[4;36;1mArticle Load (0.000520)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
90
1667
|
|
91
1668
|
|
92
|
-
Processing ArticlesController#update (for 0.0.0.0 at
|
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
|
-
[4;
|
96
|
-
[4;
|
97
|
-
[4;
|
1672
|
+
[4;35;1mArticle Load (0.000513)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
1673
|
+
[4;36;1mArticle Load (0.000508)[0m [0;1mSELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1[0m
|
1674
|
+
[4;35;1mArticle Update (0.000213)[0m [0mUPDATE `articles` SET `lastupdate` = '2007-01-01', `title` = 'タイトル1', `description` = '内容1' WHERE `id` = 1[0m
|
98
1675
|
Redirected to http://test.host/articles/show/1
|
99
|
-
Completed in 0.
|
100
|
-
[4;
|
101
|
-
[4;
|
1676
|
+
Completed in 0.00410 (244 reqs/sec) | DB: 0.00204 (49%) | 302 Found [http://test.host/articles/update/1]
|
1677
|
+
[4;36;1mSQL (0.000141)[0m [0;1mROLLBACK[0m
|
1678
|
+
[4;35;1mSQL (0.000091)[0m [0mBEGIN[0m
|
102
1679
|
|
103
1680
|
|
104
|
-
Processing MailerController#multipart (for 0.0.0.0 at
|
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=
|
1765
|
+
Content-Type: multipart/mixed; boundary=mimepart_47a4a176b8410_6c0115555559cf08476
|
114
1766
|
|
115
1767
|
|
116
|
-
--
|
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
|
-
--
|
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
|
-
--
|
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
|
-
|
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=
|
1840
|
+
Content-Type: multipart/mixed; boundary=mimepart_47a4a176bad9b_6c0115555559cf087b5
|
182
1841
|
|
183
1842
|
|
184
|
-
--
|
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
|
-
--
|
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
|
-
--
|
243
|
-
within layouts/mailer
|
244
|
-
Completed in
|
245
|
-
[4;
|
246
|
-
[4;
|
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
|
+
[4;36;1mSQL (0.000170)[0m [0;1mROLLBACK[0m
|
1980
|
+
[4;35;1mSQL (0.000081)[0m [0mBEGIN[0m
|
247
1981
|
|
248
1982
|
|
249
|
-
Processing MailerController#singlepart (for 0.0.0.0 at
|
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:
|
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
|
-
|
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=
|
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.
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
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
|
+
[4;36;1mSQL (0.000186)[0m [0;1mROLLBACK[0m
|
2054
|
+
[4;35;1mSQL (0.000071)[0m [0mBEGIN[0m
|
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
|
+
[4;36;1mSQL (0.000177)[0m [0;1mROLLBACK[0m
|
2088
|
+
[4;35;1mSQL (0.000079)[0m [0mBEGIN[0m
|
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
|
+
[4;36;1mSQL (0.000171)[0m [0;1mROLLBACK[0m
|
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
|
+
[4;36;1mSQL (0.000138)[0m [0;1mSET SQL_AUTO_IS_NULL=0[0m
|
2116
|
+
[4;35;1mSQL (0.000072)[0m [0mBEGIN[0m
|
2117
|
+
[4;36;1mArticle Load (0.000507)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
2118
|
+
[4;35;1mSQL (0.000268)[0m [0mSELECT count(*) AS count_all FROM `articles` [0m
|
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
|
-
[4;
|
288
|
-
Rendering
|
2124
|
+
[4;36;1mArticle Load (0.000627)[0m [0;1mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
2125
|
+
Rendering template within layouts/application
|
289
2126
|
Rendering articles/new
|
290
|
-
Rendered articles/_form (0.
|
291
|
-
Completed in 0.
|
292
|
-
[4;36;1mSQL (0.000470)[0m [0;1mROLLBACK[0m
|
293
|
-
[4;35;1mSQL (0.000204)[0m [0mBEGIN[0m
|
294
|
-
[4;36;1mArticle Load (0.000997)[0m [0;1mSELECT * FROM articles WHERE (articles.`id` = 1) [0m
|
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#
|
298
|
-
Session ID:
|
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
|
+
[4;35;1mArticle Load (0.000583)[0m [0mSELECT * FROM `articles` WHERE (articles.title = '') LIMIT 1[0m
|
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
|
+
[4;36;1mSQL (0.000194)[0m [0;1mROLLBACK[0m
|
2140
|
+
[4;35;1mSQL (0.000090)[0m [0mBEGIN[0m
|
2141
|
+
[4;36;1mArticle Load (0.000498)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mArticle Load (0.000525)[0m [0mSELECT * FROM `articles` [0m
|
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
|
-
[4;
|
301
|
-
|
302
|
-
Rendering within layouts/application
|
2156
|
+
[4;36;1mArticle Load (0.000583)[0m [0;1mSELECT * FROM `articles` [0m
|
2157
|
+
Rendering template within layouts/application
|
303
2158
|
Rendering articles/list
|
304
|
-
Completed in 0.
|
305
|
-
[4;35;1mSQL (0.
|
306
|
-
[4;36;1mSQL (0.
|
307
|
-
[4;35;1mArticle Load (0.
|
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
|
+
[4;35;1mSQL (0.000188)[0m [0mROLLBACK[0m
|
2161
|
+
[4;36;1mSQL (0.000091)[0m [0;1mBEGIN[0m
|
2162
|
+
[4;35;1mArticle Load (0.000490)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
308
2163
|
|
309
2164
|
|
310
|
-
Processing ArticlesController#new (for 127.0.0.1 at
|
311
|
-
Session ID:
|
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
|
2168
|
+
Rendering template within layouts/application
|
314
2169
|
Rendering articles/new
|
315
|
-
Rendered articles/_form (0.
|
316
|
-
Completed in 0.
|
317
|
-
|
318
|
-
|
319
|
-
|
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
|
+
[4;36;1mSQL (0.000214)[0m [0;1mROLLBACK[0m
|
2182
|
+
[4;35;1mSQL (0.000084)[0m [0mBEGIN[0m
|
2183
|
+
[4;36;1mArticle Load (0.000509)[0m [0;1mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;35;1mArticle Load (0.000546)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
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
|
+
[4;36;1mArticle Load (0.000681)[0m [0;1mSELECT * FROM `articles` WHERE (articles.title = 'タイトル1' AND articles.id <> 1) LIMIT 1[0m
|
320
2194
|
|
321
2195
|
|
322
|
-
Processing ArticlesController#show (for 127.0.0.1 at
|
323
|
-
Session ID:
|
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
|
-
[4;35;1mArticle Load (0.
|
326
|
-
Rendering
|
2199
|
+
[4;35;1mArticle Load (0.000978)[0m [0mSELECT * FROM `articles` WHERE (`articles`.`id` = 1) [0m
|
2200
|
+
Rendering template within layouts/application
|
327
2201
|
Rendering articles/show
|
328
|
-
Completed in 0.
|
329
|
-
[4;36;1mSQL (0.
|
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
|
+
[4;36;1mSQL (0.000212)[0m [0;1mROLLBACK[0m
|