summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-17 15:35:38 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-17 15:35:38 +0000
commitf626a17d8c8a2c2c0ce2c2a5cc1f3b6b1fc643c3 (patch)
treec8754e8516265ed0ed06d10f162c5109783b8dd1 /ChangeLog
parent4067fd028dfdaeaa177755e5d2ff54511da8a7fc (diff)
downloadruby-f626a17d8c8a2c2c0ce2c2a5cc1f3b6b1fc643c3.tar.gz
* lib/uri/common.rb (URI#{en,de}code_www_form_component):
renamed from URI#{en,de}code_www_component. [ruby-dev:40672] * lib/uri/common.rb (URI#encode_www_form_component): %-encoded element should have always two hex. * lib/uri/common.rb (URI#encode_www_form_component): better treatment for ASCII incompatible encodings and encodings whose lead byte may use 7bit. * lib/uri/common.rb (URI#decode_www_form_component): add %20. * lib/uri/common.rb (URI#decode_www_form_component): add result's encoding as 2nd argument. * lib/uri/common.rb (URI#decode_www_form): added. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog19
1 files changed, 19 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 62fbae0afb..5c2d7f8b39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+Thu Mar 18 00:00:58 2010 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/uri/common.rb (URI#{en,de}code_www_form_component):
+ renamed from URI#{en,de}code_www_component. [ruby-dev:40672]
+
+ * lib/uri/common.rb (URI#encode_www_form_component): %-encoded
+ element should have always two hex.
+
+ * lib/uri/common.rb (URI#encode_www_form_component):
+ better treatment for ASCII incompatible encodings and
+ encodings whose lead byte may use 7bit.
+
+ * lib/uri/common.rb (URI#decode_www_form_component): add %20.
+
+ * lib/uri/common.rb (URI#decode_www_form_component): add
+ result's encoding as 2nd argument.
+
+ * lib/uri/common.rb (URI#decode_www_form): added.
+
Wed Mar 17 16:25:53 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* hash.c (rb_hash_aset): allow recursive key. [ruby-core:24648]