ruby-changes:20585
From: naruse <ko1@a...>
Date: Sat, 23 Jul 2011 06:17:49 +0900 (JST)
Subject: [ruby-changes:20585] naruse:r32633 (ruby_1_9_3): merge revision(s) 32631:
naruse 2011-07-23 06:17:36 +0900 (Sat, 23 Jul 2011) New Revision: 32633 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32633 Log: merge revision(s) 32631: ------------------------------------------------------------------------ r32631 | naruse | 2011-07-23 06:16:50 +0900 (Sat, 23 Jul 2011) | 1 line Fix r32622. ------------------------------------------------------------------------ Modified files: branches/ruby_1_9_3/lib/uri/common.rb branches/ruby_1_9_3/version.h Index: ruby_1_9_3/lib/uri/common.rb =================================================================== --- ruby_1_9_3/lib/uri/common.rb (revision 32632) +++ ruby_1_9_3/lib/uri/common.rb (revision 32633) @@ -984,7 +984,7 @@ # See URI.decode_www_form_component, URI.encode_www_form def self.decode_www_form(str, enc=Encoding::UTF_8) return [] if str.empty? - unless /\A#{WFKV_}*=#{WFKV_}*(?:[;&]#{WFKV_}*=#{WFKV_}*)*\z/o =~ str + unless /\A#{WFKV_}=#{WFKV_}(?:[;&]#{WFKV_}=#{WFKV_})*\z/o =~ str raise ArgumentError, "invalid data of application/x-www-form-urlencoded (#{str})" end ary = [] Index: ruby_1_9_3/version.h =================================================================== --- ruby_1_9_3/version.h (revision 32632) +++ ruby_1_9_3/version.h (revision 32633) @@ -1,10 +1,10 @@ #define RUBY_VERSION "1.9.3" #define RUBY_PATCHLEVEL -1 -#define RUBY_RELEASE_DATE "2011-07-22" +#define RUBY_RELEASE_DATE "2011-07-23" #define RUBY_RELEASE_YEAR 2011 #define RUBY_RELEASE_MONTH 7 -#define RUBY_RELEASE_DAY 22 +#define RUBY_RELEASE_DAY 23 #include "ruby/version.h" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/