[前][次][番号順一覧][スレッド一覧]

ruby-changes:12918

From: wyhaines <ko1@a...>
Date: Wed, 26 Aug 2009 05:03:38 +0900 (JST)
Subject: [ruby-changes:12918] Ruby:r24655 (ruby_1_8_6): Backport #1509 ; Typo in CGI::HTTP_STATUS: Rrecondition -> Precondition

wyhaines	2009-08-26 05:03:03 +0900 (Wed, 26 Aug 2009)

  New Revision: 24655

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=24655

  Log:
    Backport #1509 [ruby-dev:38538]; Typo in CGI::HTTP_STATUS: Rrecondition -> Precondition

  Modified files:
    branches/ruby_1_8_6/ChangeLog
    branches/ruby_1_8_6/lib/cgi.rb
    branches/ruby_1_8_6/version.h

Index: ruby_1_8_6/ChangeLog
===================================================================
--- ruby_1_8_6/ChangeLog	(revision 24654)
+++ ruby_1_8_6/ChangeLog	(revision 24655)
@@ -4,6 +4,8 @@
 
 	* Backport #1975 [ruby-core:25025]; Dir.mktmpdir exists in the rest of the 1.8 line, and it is used in the test suite that goes with backport #1168. It doesn't conflict with any existing 1.8.6 art, and is a pure-ruby addition to Dir, so I backported it to 1.8.6 from 1.8.7.
 
+	* Backport #1509 [ruby-dev:38538]; Typo in CGI::HTTP_STATUS: Rrecondition -> Precondition
+
 Thu Aug 20  9:43:00 2009 Kirk Haines <khaines@r...>
 
 	* Backport #1001; Handle EBADF to fix problem with interpreter wide deadlock when native close() is called on fd which is currently being IO#select()ed. r24600
Index: ruby_1_8_6/version.h
===================================================================
--- ruby_1_8_6/version.h	(revision 24654)
+++ ruby_1_8_6/version.h	(revision 24655)
@@ -2,7 +2,7 @@
 #define RUBY_RELEASE_DATE "2009-08-26"
 #define RUBY_VERSION_CODE 186
 #define RUBY_RELEASE_CODE 20090826
-#define RUBY_PATCHLEVEL 386
+#define RUBY_PATCHLEVEL 387
 
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 8
Index: ruby_1_8_6/lib/cgi.rb
===================================================================
--- ruby_1_8_6/lib/cgi.rb	(revision 24654)
+++ ruby_1_8_6/lib/cgi.rb	(revision 24655)
@@ -306,7 +306,7 @@
     "METHOD_NOT_ALLOWED"  => "405 Method Not Allowed",
     "NOT_ACCEPTABLE"      => "406 Not Acceptable",
     "LENGTH_REQUIRED"     => "411 Length Required",
-    "PRECONDITION_FAILED" => "412 Rrecondition Failed",
+    "PRECONDITION_FAILED" => "412 Precondition Failed",
     "SERVER_ERROR"        => "500 Internal Server Error",
     "NOT_IMPLEMENTED"     => "501 Method Not Implemented",
     "BAD_GATEWAY"         => "502 Bad Gateway",

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]