gettext 1.10.0 → 1.90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!DOCTYPE html
|
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
+
|
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<title>Class: GetText::TextDomainManager</title>
|
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
+
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
// <![CDATA[
|
|
14
|
+
|
|
15
|
+
function popupCode( url ) {
|
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function toggleCode( id ) {
|
|
20
|
+
if ( document.getElementById )
|
|
21
|
+
elem = document.getElementById( id );
|
|
22
|
+
else if ( document.all )
|
|
23
|
+
elem = eval( "document.all." + id );
|
|
24
|
+
else
|
|
25
|
+
return false;
|
|
26
|
+
|
|
27
|
+
elemStyle = elem.style;
|
|
28
|
+
|
|
29
|
+
if ( elemStyle.display != "block" ) {
|
|
30
|
+
elemStyle.display = "block"
|
|
31
|
+
} else {
|
|
32
|
+
elemStyle.display = "none"
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Make codeblocks hidden by default
|
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
+
|
|
41
|
+
// ]]>
|
|
42
|
+
</script>
|
|
43
|
+
|
|
44
|
+
</head>
|
|
45
|
+
<body>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<div id="classHeader">
|
|
50
|
+
<table class="header-table">
|
|
51
|
+
<tr class="top-aligned-row">
|
|
52
|
+
<td><strong>Class</strong></td>
|
|
53
|
+
<td class="class-name-in-header">GetText::TextDomainManager</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr class="top-aligned-row">
|
|
56
|
+
<td><strong>In:</strong></td>
|
|
57
|
+
<td>
|
|
58
|
+
<a href="../../files/lib/gettext/textdomainmanager_rb.html">
|
|
59
|
+
lib/gettext/textdomainmanager.rb
|
|
60
|
+
</a>
|
|
61
|
+
<br />
|
|
62
|
+
</td>
|
|
63
|
+
</tr>
|
|
64
|
+
|
|
65
|
+
<tr class="top-aligned-row">
|
|
66
|
+
<td><strong>Parent:</strong></td>
|
|
67
|
+
<td>
|
|
68
|
+
Object
|
|
69
|
+
</td>
|
|
70
|
+
</tr>
|
|
71
|
+
</table>
|
|
72
|
+
</div>
|
|
73
|
+
<!-- banner header -->
|
|
74
|
+
|
|
75
|
+
<div id="bodyContent">
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
<div id="contextContent">
|
|
80
|
+
|
|
81
|
+
<div id="description">
|
|
82
|
+
<p>
|
|
83
|
+
Manage <a href="TextDomain.html">TextDomain</a> (Internal use only) A
|
|
84
|
+
class/module is able to have plural textdomains.
|
|
85
|
+
</p>
|
|
86
|
+
|
|
87
|
+
</div>
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
</div>
|
|
91
|
+
|
|
92
|
+
<div id="method-list">
|
|
93
|
+
<h3 class="section-bar">Methods</h3>
|
|
94
|
+
|
|
95
|
+
<div class="name-list">
|
|
96
|
+
<a href="#M000067">add_textdomain</a>
|
|
97
|
+
<a href="#M000068">each</a>
|
|
98
|
+
<a href="#M000064">each_all</a>
|
|
99
|
+
<a href="#M000066">new</a>
|
|
100
|
+
<a href="#M000063">output_charset</a>
|
|
101
|
+
<a href="#M000062">output_charset=</a>
|
|
102
|
+
<a href="#M000069">set_locale</a>
|
|
103
|
+
<a href="#M000065">textdomain</a>
|
|
104
|
+
</div>
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
</div>
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
<!-- if includes -->
|
|
111
|
+
<div id="includes">
|
|
112
|
+
<h3 class="section-bar">Included Modules</h3>
|
|
113
|
+
|
|
114
|
+
<div id="includes-list">
|
|
115
|
+
<span class="include-name">Enumerable</span>
|
|
116
|
+
</div>
|
|
117
|
+
</div>
|
|
118
|
+
|
|
119
|
+
<div id="section">
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
<div id="attribute-list">
|
|
126
|
+
<h3 class="section-bar">Attributes</h3>
|
|
127
|
+
|
|
128
|
+
<div class="name-list">
|
|
129
|
+
<table>
|
|
130
|
+
<tr class="top-aligned-row context-row">
|
|
131
|
+
<td class="context-item-name">target</td>
|
|
132
|
+
<td class="context-item-value"> [R] </td>
|
|
133
|
+
<td class="context-item-desc"></td>
|
|
134
|
+
</tr>
|
|
135
|
+
<tr class="top-aligned-row context-row">
|
|
136
|
+
<td class="context-item-name">textdomains</td>
|
|
137
|
+
<td class="context-item-value"> [R] </td>
|
|
138
|
+
<td class="context-item-desc"></td>
|
|
139
|
+
</tr>
|
|
140
|
+
</table>
|
|
141
|
+
</div>
|
|
142
|
+
</div>
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
<!-- if method_list -->
|
|
147
|
+
<div id="methods">
|
|
148
|
+
<h3 class="section-bar">Public Class methods</h3>
|
|
149
|
+
|
|
150
|
+
<div id="method-M000064" class="method-detail">
|
|
151
|
+
<a name="M000064"></a>
|
|
152
|
+
|
|
153
|
+
<div class="method-heading">
|
|
154
|
+
<a href="#M000064" class="method-signature">
|
|
155
|
+
<span class="method-name">each_all</span><span class="method-args">() {|textdomain| ...}</span>
|
|
156
|
+
</a>
|
|
157
|
+
</div>
|
|
158
|
+
|
|
159
|
+
<div class="method-description">
|
|
160
|
+
<p><a class="source-toggle" href="#"
|
|
161
|
+
onclick="toggleCode('M000064-source');return false;">[Source]</a></p>
|
|
162
|
+
<div class="method-source-code" id="M000064-source">
|
|
163
|
+
<pre>
|
|
164
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 39</span>
|
|
165
|
+
39: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">each_all</span>
|
|
166
|
+
40: <span class="ruby-ivar">@@textdomain_all</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">k</span>, <span class="ruby-identifier">textdomain</span><span class="ruby-operator">|</span>
|
|
167
|
+
41: <span class="ruby-keyword kw">yield</span> <span class="ruby-identifier">textdomain</span>
|
|
168
|
+
42: <span class="ruby-keyword kw">end</span>
|
|
169
|
+
43: <span class="ruby-keyword kw">end</span>
|
|
170
|
+
</pre>
|
|
171
|
+
</div>
|
|
172
|
+
</div>
|
|
173
|
+
</div>
|
|
174
|
+
|
|
175
|
+
<div id="method-M000066" class="method-detail">
|
|
176
|
+
<a name="M000066"></a>
|
|
177
|
+
|
|
178
|
+
<div class="method-heading">
|
|
179
|
+
<a href="#M000066" class="method-signature">
|
|
180
|
+
<span class="method-name">new</span><span class="method-args">(target, locale)</span>
|
|
181
|
+
</a>
|
|
182
|
+
</div>
|
|
183
|
+
|
|
184
|
+
<div class="method-description">
|
|
185
|
+
<p>
|
|
186
|
+
Initialize a <a href="TextDomainManager.html">TextDomainManager</a>
|
|
187
|
+
</p>
|
|
188
|
+
<ul>
|
|
189
|
+
<li>target: a target class/module to bind this <a
|
|
190
|
+
href="TextDomainManager.html">TextDomainManager</a>.
|
|
191
|
+
|
|
192
|
+
</li>
|
|
193
|
+
<li>locale: a <a href="../Locale/Object.html">Locale::Object</a>.
|
|
194
|
+
|
|
195
|
+
</li>
|
|
196
|
+
</ul>
|
|
197
|
+
<p><a class="source-toggle" href="#"
|
|
198
|
+
onclick="toggleCode('M000066-source');return false;">[Source]</a></p>
|
|
199
|
+
<div class="method-source-code" id="M000066-source">
|
|
200
|
+
<pre>
|
|
201
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 52</span>
|
|
202
|
+
52: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">target</span>, <span class="ruby-identifier">locale</span>)
|
|
203
|
+
53: <span class="ruby-ivar">@target</span> = <span class="ruby-identifier">target</span>
|
|
204
|
+
54: <span class="ruby-ivar">@locale</span> = <span class="ruby-identifier">locale</span>
|
|
205
|
+
55: <span class="ruby-ivar">@textdomains</span> = {}
|
|
206
|
+
56: <span class="ruby-keyword kw">end</span>
|
|
207
|
+
</pre>
|
|
208
|
+
</div>
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
|
|
212
|
+
<div id="method-M000063" class="method-detail">
|
|
213
|
+
<a name="M000063"></a>
|
|
214
|
+
|
|
215
|
+
<div class="method-heading">
|
|
216
|
+
<a href="#M000063" class="method-signature">
|
|
217
|
+
<span class="method-name">output_charset</span><span class="method-args">()</span>
|
|
218
|
+
</a>
|
|
219
|
+
</div>
|
|
220
|
+
|
|
221
|
+
<div class="method-description">
|
|
222
|
+
<p>
|
|
223
|
+
Gets the current <a
|
|
224
|
+
href="TextDomainManager.html#M000063">output_charset</a>.
|
|
225
|
+
</p>
|
|
226
|
+
<ul>
|
|
227
|
+
<li>Returns: <a href="TextDomainManager.html#M000063">output_charset</a>.
|
|
228
|
+
|
|
229
|
+
</li>
|
|
230
|
+
</ul>
|
|
231
|
+
<p><a class="source-toggle" href="#"
|
|
232
|
+
onclick="toggleCode('M000063-source');return false;">[Source]</a></p>
|
|
233
|
+
<div class="method-source-code" id="M000063-source">
|
|
234
|
+
<pre>
|
|
235
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 35</span>
|
|
236
|
+
35: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">output_charset</span>
|
|
237
|
+
36: <span class="ruby-ivar">@@output_charset</span>
|
|
238
|
+
37: <span class="ruby-keyword kw">end</span>
|
|
239
|
+
</pre>
|
|
240
|
+
</div>
|
|
241
|
+
</div>
|
|
242
|
+
</div>
|
|
243
|
+
|
|
244
|
+
<div id="method-M000062" class="method-detail">
|
|
245
|
+
<a name="M000062"></a>
|
|
246
|
+
|
|
247
|
+
<div class="method-heading">
|
|
248
|
+
<a href="#M000062" class="method-signature">
|
|
249
|
+
<span class="method-name">output_charset=</span><span class="method-args">(charset)</span>
|
|
250
|
+
</a>
|
|
251
|
+
</div>
|
|
252
|
+
|
|
253
|
+
<div class="method-description">
|
|
254
|
+
<p>
|
|
255
|
+
Sets the current <a
|
|
256
|
+
href="TextDomainManager.html#M000063">output_charset</a>.
|
|
257
|
+
</p>
|
|
258
|
+
<ul>
|
|
259
|
+
<li>charset: <a href="TextDomainManager.html#M000063">output_charset</a>.
|
|
260
|
+
|
|
261
|
+
</li>
|
|
262
|
+
<li>Returns: <a href="TextDomainManager.html#M000063">output_charset</a>.
|
|
263
|
+
|
|
264
|
+
</li>
|
|
265
|
+
</ul>
|
|
266
|
+
<p><a class="source-toggle" href="#"
|
|
267
|
+
onclick="toggleCode('M000062-source');return false;">[Source]</a></p>
|
|
268
|
+
<div class="method-source-code" id="M000062-source">
|
|
269
|
+
<pre>
|
|
270
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 29</span>
|
|
271
|
+
29: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">output_charset=</span>(<span class="ruby-identifier">charset</span>)
|
|
272
|
+
30: <span class="ruby-ivar">@@output_charset</span> = <span class="ruby-identifier">charset</span>
|
|
273
|
+
31: <span class="ruby-keyword kw">end</span>
|
|
274
|
+
</pre>
|
|
275
|
+
</div>
|
|
276
|
+
</div>
|
|
277
|
+
</div>
|
|
278
|
+
|
|
279
|
+
<div id="method-M000065" class="method-detail">
|
|
280
|
+
<a name="M000065"></a>
|
|
281
|
+
|
|
282
|
+
<div class="method-heading">
|
|
283
|
+
<a href="#M000065" class="method-signature">
|
|
284
|
+
<span class="method-name">textdomain</span><span class="method-args">(domainname)</span>
|
|
285
|
+
</a>
|
|
286
|
+
</div>
|
|
287
|
+
|
|
288
|
+
<div class="method-description">
|
|
289
|
+
<p><a class="source-toggle" href="#"
|
|
290
|
+
onclick="toggleCode('M000065-source');return false;">[Source]</a></p>
|
|
291
|
+
<div class="method-source-code" id="M000065-source">
|
|
292
|
+
<pre>
|
|
293
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 45</span>
|
|
294
|
+
45: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">textdomain</span>(<span class="ruby-identifier">domainname</span>)
|
|
295
|
+
46: <span class="ruby-ivar">@@textdomain_all</span>[<span class="ruby-identifier">domainname</span>]
|
|
296
|
+
47: <span class="ruby-keyword kw">end</span>
|
|
297
|
+
</pre>
|
|
298
|
+
</div>
|
|
299
|
+
</div>
|
|
300
|
+
</div>
|
|
301
|
+
|
|
302
|
+
<h3 class="section-bar">Public Instance methods</h3>
|
|
303
|
+
|
|
304
|
+
<div id="method-M000067" class="method-detail">
|
|
305
|
+
<a name="M000067"></a>
|
|
306
|
+
|
|
307
|
+
<div class="method-heading">
|
|
308
|
+
<a href="#M000067" class="method-signature">
|
|
309
|
+
<span class="method-name">add_textdomain</span><span class="method-args">(domainname, options = {})</span>
|
|
310
|
+
</a>
|
|
311
|
+
</div>
|
|
312
|
+
|
|
313
|
+
<div class="method-description">
|
|
314
|
+
<p>
|
|
315
|
+
Add a <a href="TextDomainManager.html#M000065">textdomain</a>
|
|
316
|
+
</p>
|
|
317
|
+
<ul>
|
|
318
|
+
<li>options: If they aren‘t set or invalid, default values are used.
|
|
319
|
+
|
|
320
|
+
<ul>
|
|
321
|
+
<li>:path - the path to the mo-files. If not set, it will search default paths
|
|
322
|
+
such as /usr/share/locale, /usr/local/share/locale)
|
|
323
|
+
|
|
324
|
+
</li>
|
|
325
|
+
</ul>
|
|
326
|
+
</li>
|
|
327
|
+
</ul>
|
|
328
|
+
<p><a class="source-toggle" href="#"
|
|
329
|
+
onclick="toggleCode('M000067-source');return false;">[Source]</a></p>
|
|
330
|
+
<div class="method-source-code" id="M000067-source">
|
|
331
|
+
<pre>
|
|
332
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 62</span>
|
|
333
|
+
62: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">add_textdomain</span>(<span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">options</span> = {})
|
|
334
|
+
63: <span class="ruby-identifier">path</span> = <span class="ruby-identifier">options</span>[<span class="ruby-identifier">:path</span>]
|
|
335
|
+
64: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">$DEBUG</span>
|
|
336
|
+
65: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">print</span> <span class="ruby-node">"Bind the domain '#{domainname}' to '#{@target}'. "</span>
|
|
337
|
+
66: <span class="ruby-identifier">$stderr</span>.<span class="ruby-identifier">print</span> <span class="ruby-node">"Current locale is #{@locale.inspect}\n"</span>
|
|
338
|
+
67: <span class="ruby-keyword kw">end</span>
|
|
339
|
+
68: <span class="ruby-identifier">textdomain</span> = <span class="ruby-ivar">@@textdomain_all</span>[<span class="ruby-identifier">domainname</span>]
|
|
340
|
+
69: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">textdomain</span>
|
|
341
|
+
70: <span class="ruby-identifier">textdomain</span>.<span class="ruby-identifier">set_locale</span>(<span class="ruby-ivar">@locale</span>)
|
|
342
|
+
71: <span class="ruby-keyword kw">else</span>
|
|
343
|
+
72: <span class="ruby-identifier">textdomain</span> = <span class="ruby-constant">TextDomain</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">domainname</span>, <span class="ruby-identifier">path</span>, <span class="ruby-ivar">@locale</span>)
|
|
344
|
+
73: <span class="ruby-ivar">@@textdomain_all</span>[<span class="ruby-identifier">domainname</span>] = <span class="ruby-identifier">textdomain</span>
|
|
345
|
+
74: <span class="ruby-keyword kw">end</span>
|
|
346
|
+
75: <span class="ruby-ivar">@textdomains</span>[<span class="ruby-identifier">domainname</span>] = <span class="ruby-identifier">textdomain</span>
|
|
347
|
+
76: <span class="ruby-identifier">textdomain</span>
|
|
348
|
+
77: <span class="ruby-keyword kw">end</span>
|
|
349
|
+
</pre>
|
|
350
|
+
</div>
|
|
351
|
+
</div>
|
|
352
|
+
</div>
|
|
353
|
+
|
|
354
|
+
<div id="method-M000068" class="method-detail">
|
|
355
|
+
<a name="M000068"></a>
|
|
356
|
+
|
|
357
|
+
<div class="method-heading">
|
|
358
|
+
<a href="#M000068" class="method-signature">
|
|
359
|
+
<span class="method-name">each</span><span class="method-args">() {|textdomain| ...}</span>
|
|
360
|
+
</a>
|
|
361
|
+
</div>
|
|
362
|
+
|
|
363
|
+
<div class="method-description">
|
|
364
|
+
<p>
|
|
365
|
+
Iterate textdomains.
|
|
366
|
+
</p>
|
|
367
|
+
<p><a class="source-toggle" href="#"
|
|
368
|
+
onclick="toggleCode('M000068-source');return false;">[Source]</a></p>
|
|
369
|
+
<div class="method-source-code" id="M000068-source">
|
|
370
|
+
<pre>
|
|
371
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 80</span>
|
|
372
|
+
80: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">each</span>
|
|
373
|
+
81: <span class="ruby-ivar">@textdomains</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">k</span>, <span class="ruby-identifier">textdomain</span><span class="ruby-operator">|</span>
|
|
374
|
+
82: <span class="ruby-keyword kw">yield</span> <span class="ruby-identifier">textdomain</span>
|
|
375
|
+
83: <span class="ruby-keyword kw">end</span>
|
|
376
|
+
84: <span class="ruby-keyword kw">self</span>
|
|
377
|
+
85: <span class="ruby-keyword kw">end</span>
|
|
378
|
+
</pre>
|
|
379
|
+
</div>
|
|
380
|
+
</div>
|
|
381
|
+
</div>
|
|
382
|
+
|
|
383
|
+
<div id="method-M000069" class="method-detail">
|
|
384
|
+
<a name="M000069"></a>
|
|
385
|
+
|
|
386
|
+
<div class="method-heading">
|
|
387
|
+
<a href="#M000069" class="method-signature">
|
|
388
|
+
<span class="method-name">set_locale</span><span class="method-args">(locale, force = false)</span>
|
|
389
|
+
</a>
|
|
390
|
+
</div>
|
|
391
|
+
|
|
392
|
+
<div class="method-description">
|
|
393
|
+
<p>
|
|
394
|
+
Sets locale such as "de", "fr", "it",
|
|
395
|
+
"ko", "ja_JP.eucJP", "zh_CN.EUC" …
|
|
396
|
+
</p>
|
|
397
|
+
<p>
|
|
398
|
+
Notice that you shouldn‘t use this for your own Libraries.
|
|
399
|
+
</p>
|
|
400
|
+
<ul>
|
|
401
|
+
<li>locale: a locale string or <a
|
|
402
|
+
href="../Locale/Object.html">Locale::Object</a>.
|
|
403
|
+
|
|
404
|
+
</li>
|
|
405
|
+
<li>force: Change locale forcely.
|
|
406
|
+
|
|
407
|
+
</li>
|
|
408
|
+
<li>Returns: self
|
|
409
|
+
|
|
410
|
+
</li>
|
|
411
|
+
</ul>
|
|
412
|
+
<p><a class="source-toggle" href="#"
|
|
413
|
+
onclick="toggleCode('M000069-source');return false;">[Source]</a></p>
|
|
414
|
+
<div class="method-source-code" id="M000069-source">
|
|
415
|
+
<pre>
|
|
416
|
+
<span class="ruby-comment cmt"># File lib/gettext/textdomainmanager.rb, line 93</span>
|
|
417
|
+
93: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">locale</span>, <span class="ruby-identifier">force</span> = <span class="ruby-keyword kw">false</span>)
|
|
418
|
+
94: <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">locale</span> <span class="ruby-operator">!=</span> <span class="ruby-ivar">@locale</span> <span class="ruby-keyword kw">or</span> <span class="ruby-identifier">force</span>
|
|
419
|
+
95: <span class="ruby-identifier">each</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">textdomain</span><span class="ruby-operator">|</span>
|
|
420
|
+
96: <span class="ruby-identifier">textdomain</span>.<span class="ruby-identifier">set_locale</span>(<span class="ruby-identifier">locale</span>, <span class="ruby-identifier">force</span>)
|
|
421
|
+
97: <span class="ruby-keyword kw">end</span>
|
|
422
|
+
98: <span class="ruby-ivar">@locale</span> = <span class="ruby-identifier">locale</span>
|
|
423
|
+
99: <span class="ruby-keyword kw">end</span>
|
|
424
|
+
100: <span class="ruby-keyword kw">self</span>
|
|
425
|
+
101: <span class="ruby-keyword kw">end</span>
|
|
426
|
+
</pre>
|
|
427
|
+
</div>
|
|
428
|
+
</div>
|
|
429
|
+
</div>
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
</div>
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
</div>
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
<div id="validator-badges">
|
|
439
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
440
|
+
</div>
|
|
441
|
+
|
|
442
|
+
</body>
|
|
443
|
+
</html>
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!DOCTYPE html
|
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
+
|
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<title>Class: Iconv</title>
|
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
+
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
// <![CDATA[
|
|
14
|
+
|
|
15
|
+
function popupCode( url ) {
|
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function toggleCode( id ) {
|
|
20
|
+
if ( document.getElementById )
|
|
21
|
+
elem = document.getElementById( id );
|
|
22
|
+
else if ( document.all )
|
|
23
|
+
elem = eval( "document.all." + id );
|
|
24
|
+
else
|
|
25
|
+
return false;
|
|
26
|
+
|
|
27
|
+
elemStyle = elem.style;
|
|
28
|
+
|
|
29
|
+
if ( elemStyle.display != "block" ) {
|
|
30
|
+
elemStyle.display = "block"
|
|
31
|
+
} else {
|
|
32
|
+
elemStyle.display = "none"
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Make codeblocks hidden by default
|
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
+
|
|
41
|
+
// ]]>
|
|
42
|
+
</script>
|
|
43
|
+
|
|
44
|
+
</head>
|
|
45
|
+
<body>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<div id="classHeader">
|
|
50
|
+
<table class="header-table">
|
|
51
|
+
<tr class="top-aligned-row">
|
|
52
|
+
<td><strong>Class</strong></td>
|
|
53
|
+
<td class="class-name-in-header">Iconv</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr class="top-aligned-row">
|
|
56
|
+
<td><strong>In:</strong></td>
|
|
57
|
+
<td>
|
|
58
|
+
<a href="../files/lib/gettext/iconv_rb.html">
|
|
59
|
+
lib/gettext/iconv.rb
|
|
60
|
+
</a>
|
|
61
|
+
<br />
|
|
62
|
+
</td>
|
|
63
|
+
</tr>
|
|
64
|
+
|
|
65
|
+
<tr class="top-aligned-row">
|
|
66
|
+
<td><strong>Parent:</strong></td>
|
|
67
|
+
<td>
|
|
68
|
+
Object
|
|
69
|
+
</td>
|
|
70
|
+
</tr>
|
|
71
|
+
</table>
|
|
72
|
+
</div>
|
|
73
|
+
<!-- banner header -->
|
|
74
|
+
|
|
75
|
+
<div id="bodyContent">
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
<div id="contextContent">
|
|
80
|
+
|
|
81
|
+
<div id="description">
|
|
82
|
+
<p>
|
|
83
|
+
Pseudo <a href="Iconv.html">Iconv</a> class
|
|
84
|
+
</p>
|
|
85
|
+
<p>
|
|
86
|
+
Provides <a href="Iconv.html#M000003">Iconv.iconv</a> which uses
|
|
87
|
+
Ruby/GLib(1) functions. This library also required from
|
|
88
|
+
‘gettext’. If you require ‘gettext/iconv’, <a
|
|
89
|
+
href="Iconv.html#M000003">Iconv.iconv</a> try to call Ruby/GLib function
|
|
90
|
+
when it doesn‘t find original <a href="Iconv.html">Iconv</a>
|
|
91
|
+
class(iconv.so).
|
|
92
|
+
</p>
|
|
93
|
+
<p>
|
|
94
|
+
(1) Ruby/GLib is a module which is provided from Ruby-GNOME2 Project. You
|
|
95
|
+
can get binaries for Win32(One-Click Ruby Installer). <URL: <a
|
|
96
|
+
href="http://ruby-gnome2.sourceforge.jp">ruby-gnome2.sourceforge.jp</a>/>
|
|
97
|
+
</p>
|
|
98
|
+
|
|
99
|
+
</div>
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
</div>
|
|
103
|
+
|
|
104
|
+
<div id="method-list">
|
|
105
|
+
<h3 class="section-bar">Methods</h3>
|
|
106
|
+
|
|
107
|
+
<div class="name-list">
|
|
108
|
+
<a href="#M000001">conv</a>
|
|
109
|
+
<a href="#M000002">conv</a>
|
|
110
|
+
<a href="#M000003">iconv</a>
|
|
111
|
+
</div>
|
|
112
|
+
</div>
|
|
113
|
+
|
|
114
|
+
</div>
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
<!-- if includes -->
|
|
118
|
+
|
|
119
|
+
<div id="section">
|
|
120
|
+
|
|
121
|
+
<div id="class-list">
|
|
122
|
+
<h3 class="section-bar">Classes and Modules</h3>
|
|
123
|
+
|
|
124
|
+
Module <a href="Iconv/Failure.html" class="link">Iconv::Failure</a><br />
|
|
125
|
+
Class <a href="Iconv/IllegalSequence.html" class="link">Iconv::IllegalSequence</a><br />
|
|
126
|
+
Class <a href="Iconv/InvalidCharacter.html" class="link">Iconv::InvalidCharacter</a><br />
|
|
127
|
+
Class <a href="Iconv/InvalidEncoding.html" class="link">Iconv::InvalidEncoding</a><br />
|
|
128
|
+
|
|
129
|
+
</div>
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
<!-- if method_list -->
|
|
138
|
+
<div id="methods">
|
|
139
|
+
<h3 class="section-bar">Public Class methods</h3>
|
|
140
|
+
|
|
141
|
+
<div id="method-M000001" class="method-detail">
|
|
142
|
+
<a name="M000001"></a>
|
|
143
|
+
|
|
144
|
+
<div class="method-heading">
|
|
145
|
+
<a href="#M000001" class="method-signature">
|
|
146
|
+
<span class="method-name">conv</span><span class="method-args">(to, from, str)</span>
|
|
147
|
+
</a>
|
|
148
|
+
</div>
|
|
149
|
+
|
|
150
|
+
<div class="method-description">
|
|
151
|
+
<p><a class="source-toggle" href="#"
|
|
152
|
+
onclick="toggleCode('M000001-source');return false;">[Source]</a></p>
|
|
153
|
+
<div class="method-source-code" id="M000001-source">
|
|
154
|
+
<pre>
|
|
155
|
+
<span class="ruby-comment cmt"># File lib/gettext/iconv.rb, line 37</span>
|
|
156
|
+
37: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">conv</span>(<span class="ruby-identifier">to</span>, <span class="ruby-identifier">from</span>, <span class="ruby-identifier">str</span>)
|
|
157
|
+
38: <span class="ruby-identifier">raise</span> <span class="ruby-constant">InvalidCharacter</span>, <span class="ruby-value str">"the 3rd argument is nil"</span> <span class="ruby-keyword kw">unless</span> <span class="ruby-identifier">str</span>
|
|
158
|
+
39: <span class="ruby-keyword kw">begin</span>
|
|
159
|
+
40: <span class="ruby-identifier">str</span> = <span class="ruby-identifier">java</span>.<span class="ruby-identifier">lang</span>.<span class="ruby-constant">String</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">str</span>.<span class="ruby-identifier">unpack</span>(<span class="ruby-value str">"C*"</span>).<span class="ruby-identifier">to_java</span>(<span class="ruby-identifier">:byte</span>), <span class="ruby-identifier">from</span>)
|
|
160
|
+
41: <span class="ruby-identifier">str</span>.<span class="ruby-identifier">getBytes</span>(<span class="ruby-identifier">to</span>).<span class="ruby-identifier">to_ary</span>.<span class="ruby-identifier">pack</span>(<span class="ruby-value str">"C*"</span>)
|
|
161
|
+
42: <span class="ruby-keyword kw">rescue</span> <span class="ruby-identifier">java</span>.<span class="ruby-identifier">io</span>.<span class="ruby-constant">UnsupportedEncodingException</span>
|
|
162
|
+
43: <span class="ruby-identifier">raise</span> <span class="ruby-constant">InvalidEncoding</span>
|
|
163
|
+
44: <span class="ruby-keyword kw">end</span>
|
|
164
|
+
45: <span class="ruby-keyword kw">end</span>
|
|
165
|
+
</pre>
|
|
166
|
+
</div>
|
|
167
|
+
</div>
|
|
168
|
+
</div>
|
|
169
|
+
|
|
170
|
+
<div id="method-M000002" class="method-detail">
|
|
171
|
+
<a name="M000002"></a>
|
|
172
|
+
|
|
173
|
+
<div class="method-heading">
|
|
174
|
+
<a href="#M000002" class="method-signature">
|
|
175
|
+
<span class="method-name">conv</span><span class="method-args">(to, from, str)</span>
|
|
176
|
+
</a>
|
|
177
|
+
</div>
|
|
178
|
+
|
|
179
|
+
<div class="method-description">
|
|
180
|
+
<p>
|
|
181
|
+
This is a function equivalent of <a
|
|
182
|
+
href="Iconv.html#M000003">Iconv.iconv</a>.
|
|
183
|
+
</p>
|
|
184
|
+
<ul>
|
|
185
|
+
<li>to: encoding name for destination
|
|
186
|
+
|
|
187
|
+
</li>
|
|
188
|
+
<li>from: encoding name for source
|
|
189
|
+
|
|
190
|
+
</li>
|
|
191
|
+
<li>str: strings to be converted
|
|
192
|
+
|
|
193
|
+
</li>
|
|
194
|
+
<li>Returns: Returns an Array of converted strings.
|
|
195
|
+
|
|
196
|
+
</li>
|
|
197
|
+
</ul>
|
|
198
|
+
<p><a class="source-toggle" href="#"
|
|
199
|
+
onclick="toggleCode('M000002-source');return false;">[Source]</a></p>
|
|
200
|
+
<div class="method-source-code" id="M000002-source">
|
|
201
|
+
<pre>
|
|
202
|
+
<span class="ruby-comment cmt"># File lib/gettext/iconv.rb, line 65</span>
|
|
203
|
+
65: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">conv</span>(<span class="ruby-identifier">to</span>, <span class="ruby-identifier">from</span>, <span class="ruby-identifier">str</span>)
|
|
204
|
+
66: <span class="ruby-keyword kw">begin</span>
|
|
205
|
+
67: <span class="ruby-constant">GLib</span>.<span class="ruby-identifier">convert</span>(<span class="ruby-identifier">str</span>, <span class="ruby-identifier">to</span>, <span class="ruby-identifier">from</span>)
|
|
206
|
+
68: <span class="ruby-keyword kw">rescue</span> <span class="ruby-constant">GLib</span><span class="ruby-operator">::</span><span class="ruby-constant">ConvertError</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">e</span>
|
|
207
|
+
69: <span class="ruby-keyword kw">case</span> <span class="ruby-identifier">e</span>.<span class="ruby-identifier">code</span>
|
|
208
|
+
70: <span class="ruby-keyword kw">when</span> <span class="ruby-constant">GLib</span><span class="ruby-operator">::</span><span class="ruby-constant">ConvertError</span><span class="ruby-operator">::</span><span class="ruby-constant">NO_CONVERSION</span>
|
|
209
|
+
71: <span class="ruby-identifier">raise</span> <span class="ruby-constant">InvalidEncoding</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">str</span>)
|
|
210
|
+
72: <span class="ruby-keyword kw">when</span> <span class="ruby-constant">GLib</span><span class="ruby-operator">::</span><span class="ruby-constant">ConvertError</span><span class="ruby-operator">::</span><span class="ruby-constant">ILLEGAL_SEQUENCE</span>
|
|
211
|
+
73: <span class="ruby-identifier">raise</span> <span class="ruby-constant">IllegalSequence</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">str</span>)
|
|
212
|
+
74: <span class="ruby-keyword kw">else</span>
|
|
213
|
+
75: <span class="ruby-identifier">raise</span> <span class="ruby-constant">InvalidCharacter</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">str</span>)
|
|
214
|
+
76: <span class="ruby-keyword kw">end</span>
|
|
215
|
+
77: <span class="ruby-keyword kw">end</span>
|
|
216
|
+
78: <span class="ruby-keyword kw">end</span>
|
|
217
|
+
</pre>
|
|
218
|
+
</div>
|
|
219
|
+
</div>
|
|
220
|
+
</div>
|
|
221
|
+
|
|
222
|
+
<div id="method-M000003" class="method-detail">
|
|
223
|
+
<a name="M000003"></a>
|
|
224
|
+
|
|
225
|
+
<div class="method-heading">
|
|
226
|
+
<a href="#M000003" class="method-signature">
|
|
227
|
+
<span class="method-name">iconv</span><span class="method-args">(to, from, str)</span>
|
|
228
|
+
</a>
|
|
229
|
+
</div>
|
|
230
|
+
|
|
231
|
+
<div class="method-description">
|
|
232
|
+
<p><a class="source-toggle" href="#"
|
|
233
|
+
onclick="toggleCode('M000003-source');return false;">[Source]</a></p>
|
|
234
|
+
<div class="method-source-code" id="M000003-source">
|
|
235
|
+
<pre>
|
|
236
|
+
<span class="ruby-comment cmt"># File lib/gettext/iconv.rb, line 95</span>
|
|
237
|
+
95: <span class="ruby-keyword kw">def</span> <span class="ruby-keyword kw">self</span>.<span class="ruby-identifier">iconv</span>(<span class="ruby-identifier">to</span>, <span class="ruby-identifier">from</span>, <span class="ruby-identifier">str</span>)
|
|
238
|
+
96: <span class="ruby-identifier">conv</span>(<span class="ruby-identifier">to</span>, <span class="ruby-identifier">from</span>, <span class="ruby-identifier">str</span>).<span class="ruby-identifier">split</span>(<span class="ruby-regexp re">//</span>)
|
|
239
|
+
97: <span class="ruby-keyword kw">end</span>
|
|
240
|
+
</pre>
|
|
241
|
+
</div>
|
|
242
|
+
</div>
|
|
243
|
+
</div>
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
</div>
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
</div>
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
<div id="validator-badges">
|
|
253
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
254
|
+
</div>
|
|
255
|
+
|
|
256
|
+
</body>
|
|
257
|
+
</html>
|