gettext_rails 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +55 -0
- data/ChangeLog +4 -0
- data/README.rdoc +173 -0
- data/Rakefile +113 -0
- data/data/locale/bg/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/bs/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ca/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/cs/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/de/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/el/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/eo/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/es/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/et/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/fr/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/hr/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/hu/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/it/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ko/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/lv/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/nb/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/nl/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/pt_BR/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ru/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/sr/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/ua/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/vi/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/zh/LC_MESSAGES/gettext_rails.mo +0 -0
- data/data/locale/zh_TW/LC_MESSAGES/gettext_rails.mo +0 -0
- data/lib/gettext_rails.rb +33 -0
- data/lib/gettext_rails/action_controller.rb +104 -0
- data/lib/gettext_rails/action_mailer.rb +45 -0
- data/lib/gettext_rails/action_view.rb +16 -0
- data/lib/gettext_rails/action_view/active_record_helper.rb +109 -0
- data/lib/gettext_rails/action_view/date_helper.rb +48 -0
- data/lib/gettext_rails/action_view/form_builder.rb +26 -0
- data/lib/gettext_rails/tools.rb +22 -0
- data/lib/gettext_rails/version.rb +14 -0
- data/po/bg/gettext_rails.po +89 -0
- data/po/bs/gettext_rails.po +98 -0
- data/po/ca/gettext_rails.po +90 -0
- data/po/cs/gettext_rails.po +102 -0
- data/po/de/gettext_rails.po +94 -0
- data/po/el/gettext_rails.po +89 -0
- data/po/eo/gettext_rails.po +90 -0
- data/po/es/gettext_rails.po +90 -0
- data/po/et/gettext_rails.po +90 -0
- data/po/fr/gettext_rails.po +94 -0
- data/po/gettext_rails.pot +87 -0
- data/po/hr/gettext_rails.po +99 -0
- data/po/hu/gettext_rails.po +90 -0
- data/po/it/gettext_rails.po +89 -0
- data/po/ja/gettext_rails.po +90 -0
- data/po/ko/gettext_rails.po +87 -0
- data/po/lv/gettext_rails.po +95 -0
- data/po/nb/gettext_rails.po +91 -0
- data/po/nl/gettext_rails.po +91 -0
- data/po/pt_BR/gettext_rails.po +91 -0
- data/po/ru/gettext_rails.po +98 -0
- data/po/sr/gettext_rails.po +98 -0
- data/po/test.rb +11 -0
- data/po/ua/gettext_rails.po +104 -0
- data/po/vi/gettext_rails.po +90 -0
- data/po/zh/gettext_rails.po +86 -0
- data/po/zh_TW/gettext_rails.po +86 -0
- data/replace.rb +21 -0
- data/sample/README +80 -0
- data/sample/Rakefile +11 -0
- data/sample/app/controllers/application_controller.rb +37 -0
- data/sample/app/controllers/articles_controller.rb +97 -0
- data/sample/app/helpers/application_helper.rb +3 -0
- data/sample/app/helpers/articles_helper.rb +60 -0
- data/sample/app/models/article.rb +16 -0
- data/sample/app/views/articles/edit.html.erb +22 -0
- data/sample/app/views/articles/index.html.erb +18 -0
- data/sample/app/views/articles/new.html.erb +20 -0
- data/sample/app/views/articles/show.html.erb +7 -0
- data/sample/app/views/layouts/articles.html.erb +27 -0
- data/sample/config/boot.rb +109 -0
- data/sample/config/database.yml +22 -0
- data/sample/config/environment.rb +45 -0
- data/sample/config/environments/development.rb +17 -0
- data/sample/config/environments/production.rb +27 -0
- data/sample/config/environments/test.rb +27 -0
- data/sample/config/initializers/backtrace_silencers.rb +7 -0
- data/sample/config/initializers/inflections.rb +10 -0
- data/sample/config/initializers/mime_types.rb +5 -0
- data/sample/config/initializers/new_rails_defaults.rb +19 -0
- data/sample/config/initializers/session_store.rb +15 -0
- data/sample/config/routes.rb +45 -0
- data/sample/db/development.sqlite3 +0 -0
- data/sample/db/production.sqlite3 +0 -0
- data/sample/db/schema.rb +19 -0
- data/sample/db/test.sqlite3 +0 -0
- data/sample/doc/README_FOR_APP +2 -0
- data/sample/lib/tasks/gettext.rake +13 -0
- data/sample/locale/bg/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/bs/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ca/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/cs/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/de/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/el/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/en/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/eo/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/es/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/fr/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/hr/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/hu/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/it/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ja/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ko/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/lv/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/nb/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/nl/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/pt_BR/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ru/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/sr/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/ua/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/vi/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/zh/LC_MESSAGES/blog.mo +0 -0
- data/sample/locale/zh_TW/LC_MESSAGES/blog.mo +0 -0
- data/sample/log/development.log +635 -0
- data/sample/log/production.log +79475 -0
- data/sample/log/test.log +1592 -0
- data/sample/po/bg/blog.po +101 -0
- data/sample/po/blog.pot +102 -0
- data/sample/po/bs/blog.po +103 -0
- data/sample/po/ca/blog.po +101 -0
- data/sample/po/cs/blog.po +104 -0
- data/sample/po/de/blog.po +104 -0
- data/sample/po/el/blog.po +102 -0
- data/sample/po/en/blog.po +103 -0
- data/sample/po/eo/blog.po +102 -0
- data/sample/po/eo/tmp.patch +21 -0
- data/sample/po/es/blog.po +101 -0
- data/sample/po/fr/blog.po +102 -0
- data/sample/po/hr/blog.po +102 -0
- data/sample/po/hu/blog.po +101 -0
- data/sample/po/it/blog.po +102 -0
- data/sample/po/ja/blog.po +101 -0
- data/sample/po/ko/blog.po +102 -0
- data/sample/po/lv/blog.po +103 -0
- data/sample/po/nb/blog.po +102 -0
- data/sample/po/nl/blog.po +102 -0
- data/sample/po/pt_BR/blog.po +102 -0
- data/sample/po/ru/blog.po +102 -0
- data/sample/po/sr/blog.po +103 -0
- data/sample/po/ua/blog.po +105 -0
- data/sample/po/vi/blog.po +102 -0
- data/sample/po/zh/blog.po +101 -0
- data/sample/po/zh_TW/blog.po +103 -0
- data/sample/public/404.html +30 -0
- data/sample/public/422.html +30 -0
- data/sample/public/500.html +33 -0
- data/sample/public/favicon.ico +0 -0
- data/sample/public/images/rails.png +0 -0
- data/sample/public/index.html +275 -0
- data/sample/public/javascripts/application.js +2 -0
- data/sample/public/javascripts/controls.js +963 -0
- data/sample/public/javascripts/dragdrop.js +973 -0
- data/sample/public/javascripts/effects.js +1128 -0
- data/sample/public/javascripts/prototype.js +4320 -0
- data/sample/public/robots.txt +5 -0
- data/sample/public/stylesheets/blog.css +136 -0
- data/sample/public/stylesheets/scaffold.css +54 -0
- data/sample/script/about +4 -0
- data/sample/script/console +3 -0
- data/sample/script/dbconsole +3 -0
- data/sample/script/destroy +3 -0
- data/sample/script/generate +3 -0
- data/sample/script/performance/benchmarker +3 -0
- data/sample/script/performance/profiler +3 -0
- data/sample/script/plugin +3 -0
- data/sample/script/runner +3 -0
- data/sample/script/server +3 -0
- data/sample/test/fixtures/articles.yml +11 -0
- data/sample/test/functional/articles_controller_test.rb +45 -0
- data/sample/test/performance/browsing_test.rb +9 -0
- data/sample/test/result/en/list.html +69 -0
- data/sample/test/test_helper.rb +38 -0
- data/sample/test/unit/article_test.rb +8 -0
- data/sample/test/unit/helpers/articles_helper_test.rb +4 -0
- data/sample/vendor/plugins/lang_helper/README +17 -0
- data/sample/vendor/plugins/lang_helper/Rakefile +17 -0
- data/sample/vendor/plugins/lang_helper/init.rb +21 -0
- data/sample/vendor/plugins/lang_helper/lib/lang_helper.rb +32 -0
- data/sample/vendor/plugins/lang_helper/locale/bg/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/bs/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ca/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/cs/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/de/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/el/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/eo/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/es/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/fr/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/hr/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/hu/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/it/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ja/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ko/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/lv/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/nb/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/nl/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/pt_BR/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ru/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/sr/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/ua/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/vi/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/zh/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/locale/zh_TW/LC_MESSAGES/lang_helper.mo +0 -0
- data/sample/vendor/plugins/lang_helper/po/bg/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/bs/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/ca/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/cs/lang_helper.po +29 -0
- data/sample/vendor/plugins/lang_helper/po/de/lang_helper.po +29 -0
- data/sample/vendor/plugins/lang_helper/po/el/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/eo/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/es/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/fr/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/hr/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/hu/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/it/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/ja/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/ko/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/lang_helper.pot +28 -0
- data/sample/vendor/plugins/lang_helper/po/lv/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/nb/lang_helper.po +29 -0
- data/sample/vendor/plugins/lang_helper/po/nl/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/pt_BR/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/ru/lang_helper.po +25 -0
- data/sample/vendor/plugins/lang_helper/po/sr/lang_helper.po +28 -0
- data/sample/vendor/plugins/lang_helper/po/ua/lang_helper.po +30 -0
- data/sample/vendor/plugins/lang_helper/po/vi/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/zh/lang_helper.po +27 -0
- data/sample/vendor/plugins/lang_helper/po/zh_TW/lang_helper.po +29 -0
- data/test/README +6 -0
- data/test/Rakefile +27 -0
- data/test/app/controllers/application_controller.rb +18 -0
- data/test/app/controllers/articles_controller.rb +114 -0
- data/test/app/controllers/mailers_controller.rb +18 -0
- data/test/app/controllers/users_controller.rb +19 -0
- data/test/app/helpers/application_helper.rb +3 -0
- data/test/app/helpers/articles_helper.rb +2 -0
- data/test/app/models/article.rb +9 -0
- data/test/app/models/human_resources/resume.rb +3 -0
- data/test/app/models/mailer.rb +38 -0
- data/test/app/models/user.rb +4 -0
- data/test/app/models/user_observer.rb +7 -0
- data/test/app/views/articles/_form.html.erb +13 -0
- data/test/app/views/articles/_form_fr.html.erb +1 -0
- data/test/app/views/articles/active_form_error.html.erb +1 -0
- data/test/app/views/articles/change_title_error_messages_for.html.erb +15 -0
- data/test/app/views/articles/edit.html.erb +9 -0
- data/test/app/views/articles/list.html.erb +25 -0
- data/test/app/views/articles/list_fr.html.erb +1 -0
- data/test/app/views/articles/multi_error_messages_for.html.erb +19 -0
- data/test/app/views/articles/new.html.erb +8 -0
- data/test/app/views/articles/show.html.erb +9 -0
- data/test/app/views/layouts/application.html.erb +16 -0
- data/test/app/views/layouts/mailers.html.erb +20 -0
- data/test/app/views/layouts/users.html.erb +14 -0
- data/test/app/views/mailer/coverpage.html.erb +6 -0
- data/test/app/views/mailer/coverpage_fr.html.erb +6 -0
- data/test/app/views/mailer/index.html.erb +1 -0
- data/test/app/views/mailer/singlepart.html.erb +3 -0
- data/test/app/views/mailer/singlepart_fr.html.erb +3 -0
- data/test/app/views/users/custom_error_message.html.erb +13 -0
- data/test/app/views/users/custom_error_message_fr.html.erb +13 -0
- data/test/app/views/users/distance_of_time_in_words.html.erb +18 -0
- data/test/config/boot.rb +109 -0
- data/test/config/database.yml +22 -0
- data/test/config/environment.rb +45 -0
- data/test/config/environments/development.rb +17 -0
- data/test/config/environments/production.rb +27 -0
- data/test/config/environments/test.rb +27 -0
- data/test/config/initializers/backtrace_silencers.rb +7 -0
- data/test/config/initializers/inflections.rb +10 -0
- data/test/config/initializers/mime_types.rb +5 -0
- data/test/config/initializers/new_rails_defaults.rb +19 -0
- data/test/config/initializers/session_store.rb +15 -0
- data/test/config/routes.rb +13 -0
- data/test/db/development.sqlite3 +0 -0
- data/test/db/schema.rb +45 -0
- data/test/db/test.sqlite3 +0 -0
- data/test/doc/README_FOR_APP +2 -0
- data/test/locale/ja/LC_MESSAGES/rails_test.mo +0 -0
- data/test/log/development.log +1284 -0
- data/test/log/test.log +5595 -0
- data/test/po/ja/rails_test.po +206 -0
- data/test/po/rails_test.pot +206 -0
- data/test/public/404.html +30 -0
- data/test/public/422.html +30 -0
- data/test/public/500.html +33 -0
- data/test/public/favicon.ico +0 -0
- data/test/public/images/rails.png +0 -0
- data/test/public/index.html +28 -0
- data/test/public/javascripts/application.js +2 -0
- data/test/public/javascripts/controls.js +963 -0
- data/test/public/javascripts/dragdrop.js +973 -0
- data/test/public/javascripts/effects.js +1128 -0
- data/test/public/javascripts/prototype.js +4320 -0
- data/test/public/robots.txt +5 -0
- data/test/public/stylesheets/blog.css +136 -0
- data/test/public/stylesheets/scaffold.css +54 -0
- data/test/script/about +4 -0
- data/test/script/console +3 -0
- data/test/script/dbconsole +3 -0
- data/test/script/destroy +3 -0
- data/test/script/generate +3 -0
- data/test/script/performance/benchmarker +3 -0
- data/test/script/performance/profiler +3 -0
- data/test/script/plugin +3 -0
- data/test/script/runner +3 -0
- data/test/script/server +3 -0
- data/test/test/fixtures/articles.yml +13 -0
- data/test/test/functional/articles_controller_test.rb +97 -0
- data/test/test/functional/mailers_controller_test.rb +54 -0
- data/test/test/functional/users_controller_test.rb +47 -0
- data/test/test/performance/browsing_test.rb +9 -0
- data/test/test/result/en/change_title_error_messages_for.html +89 -0
- data/test/test/result/en/create_error.html +97 -0
- data/test/test/result/en/custom_error_message.html +84 -0
- data/test/test/result/en/custom_error_message_with_plural.html +84 -0
- data/test/test/result/en/distance_of_time_in_words.html +32 -0
- data/test/test/result/en/list.html +62 -0
- data/test/test/result/en/multi_error_messages_for.html +155 -0
- data/test/test/result/en/multipart.html +175 -0
- data/test/test/result/en/new.html +97 -0
- data/test/test/result/en/show.html +33 -0
- data/test/test/result/en/singlepart.html +10 -0
- data/test/test/result/fr/custom_error_message.html +84 -0
- data/test/test/result/fr/custom_error_message_with_plural.html +84 -0
- data/test/test/result/fr/distance_of_time_in_words.html +32 -0
- data/test/test/result/fr/list.html +17 -0
- data/test/test/result/fr/multipart.html +175 -0
- data/test/test/result/fr/new.html +25 -0
- data/test/test/result/fr/singlepart.html +10 -0
- data/test/test/result/ja/change_title_error_messages_for.html +89 -0
- data/test/test/result/ja/create_error.html +97 -0
- data/test/test/result/ja/custom_error_message.html +84 -0
- data/test/test/result/ja/custom_error_message_with_plural.html +84 -0
- data/test/test/result/ja/distance_of_time_in_words.html +32 -0
- data/test/test/result/ja/list.html +62 -0
- data/test/test/result/ja/multi_error_messages_for.html +155 -0
- data/test/test/result/ja/multipart.html +175 -0
- data/test/test/result/ja/new.html +97 -0
- data/test/test/result/ja/show.html +33 -0
- data/test/test/result/ja/singlepart.html +10 -0
- data/test/test/test_helper.rb +83 -0
- data/test/test/unit/article_test.rb +8 -0
- data/test/test/unit/helpers/articles_helper_test.rb +4 -0
- metadata +754 -0
@@ -0,0 +1,136 @@
|
|
1
|
+
/*
|
2
|
+
CSS for Ruby-GetText-Package
|
3
|
+
by Masao Mutoh.
|
4
|
+
*/
|
5
|
+
|
6
|
+
body {
|
7
|
+
margin: 0px;
|
8
|
+
padding: 0px;
|
9
|
+
color: #000;
|
10
|
+
background-color: #fff;
|
11
|
+
line-height: 1.5em;
|
12
|
+
}
|
13
|
+
|
14
|
+
h1 {
|
15
|
+
color: #002288;
|
16
|
+
text-align: center;
|
17
|
+
clear: both;
|
18
|
+
padding: 1em;
|
19
|
+
margin: 5px;
|
20
|
+
border: solid;
|
21
|
+
background-color: #eeeeff;
|
22
|
+
border-color: #9999ff;
|
23
|
+
border-top-width: 1px;
|
24
|
+
border-right-width: 1px;
|
25
|
+
border-bottom-width: 1px;
|
26
|
+
border-left-width: 1px;
|
27
|
+
}
|
28
|
+
h2 {
|
29
|
+
margin: 0px;
|
30
|
+
padding: 0.3em;
|
31
|
+
margin-top: 1em;
|
32
|
+
margin-left: 1.5em;
|
33
|
+
margin-right: 10px;
|
34
|
+
margin-bottom:0.8em;
|
35
|
+
border: solid thin;
|
36
|
+
border-left: solid;
|
37
|
+
border-color: #9999ff;
|
38
|
+
border-top-width: 0px;
|
39
|
+
border-right-width: 0px;
|
40
|
+
border-bottom-width: 1px;
|
41
|
+
border-left-width: 15px;
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
h3 {
|
46
|
+
margin:1em;
|
47
|
+
margin-bottom: 0.5em;
|
48
|
+
margin-top: 1.5em;
|
49
|
+
margin-left: 2em;
|
50
|
+
margin-right: 24px;
|
51
|
+
padding: 0.1em;
|
52
|
+
padding-top: 0;
|
53
|
+
padding-left: 0.7em;
|
54
|
+
border-style: dashed;
|
55
|
+
border-width: 0px 0px 1px 1px;
|
56
|
+
border-color: #ddddff;
|
57
|
+
}
|
58
|
+
|
59
|
+
p {
|
60
|
+
padding-left: 1em;
|
61
|
+
padding-right: 1em;
|
62
|
+
margin-top: 0px;
|
63
|
+
margin-left: 1.5em;
|
64
|
+
margin-right: 1em;
|
65
|
+
margin-bottom: 0.5em;
|
66
|
+
}
|
67
|
+
|
68
|
+
|
69
|
+
.locale {
|
70
|
+
margin: 2em;
|
71
|
+
padding: 1em;
|
72
|
+
border-style: solid;
|
73
|
+
border-width: 1px 1px 1px 1px;
|
74
|
+
border-color: #ddddff;
|
75
|
+
}
|
76
|
+
|
77
|
+
pre {
|
78
|
+
margin: 3em;
|
79
|
+
margin-top: 1em;
|
80
|
+
margin-bottom: 1em;
|
81
|
+
padding: 1em;
|
82
|
+
border-style: solid;
|
83
|
+
border-width: 1px 1px 1px 1px;
|
84
|
+
border-color: #ddddff;
|
85
|
+
background-color: #eeffee;
|
86
|
+
}
|
87
|
+
|
88
|
+
.copyright {
|
89
|
+
border-style: solid;
|
90
|
+
border-width: 2px 0px 0px 0px;
|
91
|
+
border-color: #ddddff;
|
92
|
+
text-align: right;
|
93
|
+
padding-right: 2em;
|
94
|
+
margin: 1em;
|
95
|
+
}
|
96
|
+
|
97
|
+
div.main {
|
98
|
+
margin-left: 250px;
|
99
|
+
margin-top: 0px;
|
100
|
+
padding-top: 0px;
|
101
|
+
}
|
102
|
+
div.navigation {
|
103
|
+
position: absolute;
|
104
|
+
text-align: center;
|
105
|
+
top: 10px;
|
106
|
+
left: 0px;
|
107
|
+
width: 210px;
|
108
|
+
padding: 10px;
|
109
|
+
padding-left: 0px;
|
110
|
+
}
|
111
|
+
|
112
|
+
div.window {
|
113
|
+
text-align: left;
|
114
|
+
margin-left: 10px;
|
115
|
+
margin-top: 20px;
|
116
|
+
background-color: #eef;
|
117
|
+
padding: 10px;
|
118
|
+
padding-top: 0px;
|
119
|
+
border: solid;
|
120
|
+
border-width: 1px;
|
121
|
+
border-color: #99f;
|
122
|
+
}
|
123
|
+
|
124
|
+
p.notice {
|
125
|
+
color: green;
|
126
|
+
margin: 5px;
|
127
|
+
background-color: #ffd;
|
128
|
+
padding: 10px;
|
129
|
+
border: solid;
|
130
|
+
border-width: 1px;
|
131
|
+
border-color: #cca;
|
132
|
+
}
|
133
|
+
|
134
|
+
li {
|
135
|
+
margin-left: 1em;
|
136
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
body { background-color: #fff; color: #333; }
|
2
|
+
|
3
|
+
body, p, ol, ul, td {
|
4
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
5
|
+
font-size: 13px;
|
6
|
+
line-height: 18px;
|
7
|
+
}
|
8
|
+
|
9
|
+
pre {
|
10
|
+
background-color: #eee;
|
11
|
+
padding: 10px;
|
12
|
+
font-size: 11px;
|
13
|
+
}
|
14
|
+
|
15
|
+
a { color: #000; }
|
16
|
+
a:visited { color: #666; }
|
17
|
+
a:hover { color: #fff; background-color:#000; }
|
18
|
+
|
19
|
+
.fieldWithErrors {
|
20
|
+
padding: 2px;
|
21
|
+
background-color: red;
|
22
|
+
display: table;
|
23
|
+
}
|
24
|
+
|
25
|
+
#errorExplanation {
|
26
|
+
width: 400px;
|
27
|
+
border: 2px solid red;
|
28
|
+
padding: 7px;
|
29
|
+
padding-bottom: 12px;
|
30
|
+
margin-bottom: 20px;
|
31
|
+
background-color: #f0f0f0;
|
32
|
+
}
|
33
|
+
|
34
|
+
#errorExplanation h2 {
|
35
|
+
text-align: left;
|
36
|
+
font-weight: bold;
|
37
|
+
padding: 5px 5px 5px 15px;
|
38
|
+
font-size: 12px;
|
39
|
+
margin: -7px;
|
40
|
+
background-color: #c00;
|
41
|
+
color: #fff;
|
42
|
+
}
|
43
|
+
|
44
|
+
#errorExplanation p {
|
45
|
+
color: #333;
|
46
|
+
margin-bottom: 0;
|
47
|
+
padding: 5px;
|
48
|
+
}
|
49
|
+
|
50
|
+
#errorExplanation ul li {
|
51
|
+
font-size: 12px;
|
52
|
+
list-style: square;
|
53
|
+
}
|
54
|
+
|
data/test/script/about
ADDED
data/test/script/console
ADDED
data/test/script/destroy
ADDED
data/test/script/plugin
ADDED
data/test/script/runner
ADDED
data/test/script/server
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class ArticlesControllerTest < ActionController::TestCase
|
4
|
+
test "should get index" do
|
5
|
+
get :list, :lang => "ja"
|
6
|
+
assert_html("ja/list.html")
|
7
|
+
assert_response :success
|
8
|
+
|
9
|
+
get :list, :lang => "en"
|
10
|
+
assert_html("en/list.html")
|
11
|
+
|
12
|
+
# not match
|
13
|
+
get :list, :lang => "kr"
|
14
|
+
assert_html("en/list.html")
|
15
|
+
|
16
|
+
# list_fr.rhtml
|
17
|
+
get :list, :lang => "fr"
|
18
|
+
assert_html("fr/list.html")
|
19
|
+
end
|
20
|
+
|
21
|
+
test "should get new" do
|
22
|
+
get :new, :lang => "ja"
|
23
|
+
assert_html("ja/new.html")
|
24
|
+
assert_response :success
|
25
|
+
assert_not_nil assigns(:article)
|
26
|
+
|
27
|
+
get :new, :lang => "en"
|
28
|
+
assert_html("en/new.html")
|
29
|
+
assert_response :success
|
30
|
+
assert_not_nil assigns(:article)
|
31
|
+
|
32
|
+
get :new, :lang => "fr" # Localized View.
|
33
|
+
assert_html("fr/new.html")
|
34
|
+
assert_response :success
|
35
|
+
assert_not_nil assigns(:article)
|
36
|
+
end
|
37
|
+
|
38
|
+
test "should create article" do
|
39
|
+
assert_difference('Article.count') do
|
40
|
+
post :create, :article => {:title => "aaaaaaaaaaa", :description => "BBBBBBBBBBB" }
|
41
|
+
end
|
42
|
+
|
43
|
+
assert_redirected_to article_path(assigns(:article))
|
44
|
+
end
|
45
|
+
test "should be errors" do
|
46
|
+
post :create, :article => {:title => "", :description => "", :lastupdate => Date.new(2007, 4, 1)}, :lang => "ja"
|
47
|
+
assert_html("ja/create_error.html")
|
48
|
+
|
49
|
+
post :create, :article => {:title => "", :description => "", :lastupdate => Date.new(2007, 4, 1)}, :lang => "en"
|
50
|
+
assert_html("en/create_error.html")
|
51
|
+
end
|
52
|
+
|
53
|
+
test "should be shown multi error messages" do
|
54
|
+
post :multi_error_messages_for, :article => {:article_title => "", :article_description => "", :user_name => ""}, :lang => "ja"
|
55
|
+
assert_html("ja/multi_error_messages_for.html")
|
56
|
+
|
57
|
+
post :multi_error_messages_for, :article => {:article_title => "", :article_description => "", :user_name => ""}, :lang => "en"
|
58
|
+
assert_html("en/multi_error_messages_for.html")
|
59
|
+
end
|
60
|
+
|
61
|
+
test "should be shown with custom error message title" do
|
62
|
+
get :change_title_error_messages_for, :lang => "ja"
|
63
|
+
assert_html("ja/change_title_error_messages_for.html")
|
64
|
+
|
65
|
+
get :change_title_error_messages_for, :lang => "en"
|
66
|
+
assert_html("en/change_title_error_messages_for.html")
|
67
|
+
end
|
68
|
+
|
69
|
+
test "should show article" do
|
70
|
+
get :show, :id => 1, :lang => "ja"
|
71
|
+
|
72
|
+
assert_html("ja/show.html")
|
73
|
+
assert_response :success
|
74
|
+
assert_not_nil assigns(:article)
|
75
|
+
assert assigns(:article).valid?
|
76
|
+
get :show, :id => 1, :lang => "en"
|
77
|
+
assert_html("en/show.html")
|
78
|
+
end
|
79
|
+
|
80
|
+
test "should get edit" do
|
81
|
+
get :edit, :id => articles(:one).id
|
82
|
+
assert_response :success
|
83
|
+
end
|
84
|
+
|
85
|
+
test "should update article" do
|
86
|
+
put :update, :id => articles(:one).id, :article => {:title => "bbbbbbbbbb", :description => "CCCCCCCCCC" }
|
87
|
+
assert_redirected_to article_path(assigns(:article))
|
88
|
+
end
|
89
|
+
|
90
|
+
test "should destroy article" do
|
91
|
+
assert_difference('Article.count', -1) do
|
92
|
+
delete :destroy, :id => articles(:one).id
|
93
|
+
end
|
94
|
+
|
95
|
+
assert_redirected_to articles_path
|
96
|
+
end
|
97
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class MailersControllerTest < ActionController::TestCase
|
4
|
+
def setup
|
5
|
+
ActionMailer::Base.delivery_method = :test
|
6
|
+
ActionMailer::Base.perform_deliveries = true
|
7
|
+
ActionMailer::Base.deliveries = []
|
8
|
+
end
|
9
|
+
|
10
|
+
test "should get singlepart message" do
|
11
|
+
# Japanese
|
12
|
+
get :singlepart, :lang => "ja"
|
13
|
+
data = ActionMailer::Base.deliveries[0].decoded
|
14
|
+
assert_mail("ja/singlepart.html", data)
|
15
|
+
|
16
|
+
# English
|
17
|
+
get :singlepart, :lang => "en"
|
18
|
+
data = ActionMailer::Base.deliveries[1].decoded
|
19
|
+
assert_mail("en/singlepart.html", data)
|
20
|
+
|
21
|
+
# not match -> English
|
22
|
+
get :singlepart, :lang => "kr"
|
23
|
+
data = ActionMailer::Base.deliveries[2].decoded
|
24
|
+
assert_mail("en/singlepart.html", data)
|
25
|
+
|
26
|
+
# singlepart_fr.rhtml
|
27
|
+
get :singlepart, :lang => "fr"
|
28
|
+
data = ActionMailer::Base.deliveries[3].decoded
|
29
|
+
assert_mail("fr/singlepart.html", data)
|
30
|
+
end
|
31
|
+
|
32
|
+
test "should get multipart message" do
|
33
|
+
# Japanese
|
34
|
+
get :multipart, :lang => "ja"
|
35
|
+
data = ActionMailer::Base.deliveries[0].decoded
|
36
|
+
assert_multipart("ja/multipart.html", data)
|
37
|
+
|
38
|
+
# English
|
39
|
+
get :multipart, :lang => "en"
|
40
|
+
data = ActionMailer::Base.deliveries[1].decoded
|
41
|
+
assert_multipart("en/multipart.html", data)
|
42
|
+
|
43
|
+
# not match -> English
|
44
|
+
get :multipart, :lang => "kr"
|
45
|
+
data = ActionMailer::Base.deliveries[2].decoded
|
46
|
+
assert_multipart("en/multipart.html", data)
|
47
|
+
|
48
|
+
# multipart_fr.rhtml
|
49
|
+
get :multipart, :lang => "fr"
|
50
|
+
data = ActionMailer::Base.deliveries[3].decoded
|
51
|
+
assert_multipart("fr/multipart.html", data)
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class UsersControllerTest < ActionController::TestCase
|
4
|
+
test "should get custom_error_message" do
|
5
|
+
get :custom_error_message, :lang => "ja"
|
6
|
+
assert_html("ja/custom_error_message.html")
|
7
|
+
assert_response :success
|
8
|
+
|
9
|
+
get :custom_error_message, :lang => "en"
|
10
|
+
assert_html("en/custom_error_message.html")
|
11
|
+
|
12
|
+
# not match
|
13
|
+
get :custom_error_message, :lang => "kr"
|
14
|
+
assert_html("en/custom_error_message.html")
|
15
|
+
|
16
|
+
# custom_error_message_fr.html.erb
|
17
|
+
get :custom_error_message, :lang => "fr"
|
18
|
+
assert_html("fr/custom_error_message.html")
|
19
|
+
end
|
20
|
+
|
21
|
+
test "should get custom plural error_messages" do
|
22
|
+
get :custom_error_message, :lang => "ja", :plural => "true"
|
23
|
+
assert_html("ja/custom_error_message_with_plural.html")
|
24
|
+
assert_response :success
|
25
|
+
|
26
|
+
get :custom_error_message, :lang => "en", :plural => "true"
|
27
|
+
assert_html("en/custom_error_message_with_plural.html")
|
28
|
+
|
29
|
+
get :custom_error_message, :lang => "fr", :plural => "true"
|
30
|
+
assert_html("fr/custom_error_message_with_plural.html")
|
31
|
+
end
|
32
|
+
|
33
|
+
test "should get localized distance_of_time_in_words" do
|
34
|
+
get :distance_of_time_in_words, :lang => "ja"
|
35
|
+
assert_html("ja/distance_of_time_in_words.html")
|
36
|
+
assert_response :success
|
37
|
+
|
38
|
+
get :distance_of_time_in_words, :lang => "en"
|
39
|
+
assert_html("en/distance_of_time_in_words.html")
|
40
|
+
assert_response :success
|
41
|
+
|
42
|
+
get :distance_of_time_in_words, :lang => "fr"
|
43
|
+
assert_html("fr/distance_of_time_in_words.html")
|
44
|
+
assert_response :success
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|