ruby-changes:11494
From: shyouhei <ko1@a...>
Date: Thu, 2 Apr 2009 16:00:30 +0900 (JST)
Subject: [ruby-changes:11494] Ruby:r23120 (ruby_1_8_7): * test/rss/rss-assertions.rb (RSS::Assertions::assert_atom_content_inline_other_text):
shyouhei 2009-04-02 16:00:21 +0900 (Thu, 02 Apr 2009) New Revision: 23120 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=23120 Log: * test/rss/rss-assertions.rb (RSS::Assertions::assert_atom_content_inline_other_text): newlines are valid for Base64 data. [ruby-dev:38248] Modified files: branches/ruby_1_8_7/ChangeLog branches/ruby_1_8_7/test/rss/rss-assertions.rb branches/ruby_1_8_7/version.h Index: ruby_1_8_7/ChangeLog =================================================================== --- ruby_1_8_7/ChangeLog (revision 23119) +++ ruby_1_8_7/ChangeLog (revision 23120) @@ -1,3 +1,8 @@ +Thu Apr 2 15:43:46 2009 Kouhei Sutou <kou@c...> + + * test/rss/rss-assertions.rb (RSS::Assertions::assert_atom_content_inline_other_text): + newlines are valid for Base64 data. [ruby-dev:38248] + Thu Apr 2 14:17:09 2009 Kazuhiro NISHIYAMA <zn@m...> * test/openssl/test_ssl.rb (OpenSSL#test_client_session): Index: ruby_1_8_7/version.h =================================================================== --- ruby_1_8_7/version.h (revision 23119) +++ ruby_1_8_7/version.h (revision 23120) @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2009-04-02" #define RUBY_VERSION_CODE 187 #define RUBY_RELEASE_CODE 20090402 -#define RUBY_PATCHLEVEL 157 +#define RUBY_PATCHLEVEL 158 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 @@ -28,9 +28,3 @@ #define RUBY_RELEASE_STR "patchlevel" #define RUBY_RELEASE_NUM RUBY_PATCHLEVEL - - - - - - Index: ruby_1_8_7/test/rss/rss-assertions.rb =================================================================== --- ruby_1_8_7/test/rss/rss-assertions.rb (revision 23119) +++ ruby_1_8_7/test/rss/rss-assertions.rb (revision 23120) @@ -564,7 +564,7 @@ png_file = File.join(File.dirname(__FILE__), "dot.png") png = File.open(png_file, "rb") {|file| file.read} - base64_content = [png].pack("m").delete("\n") + base64_content = [png].pack("m") [false, true].each do |with_space| xml_content = base64_content -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/