mirror of
https://github.com/ruby/ruby.git
synced 2025-09-16 00:54:01 +02:00
merge revision(s) 23558:
* lib/cgi.rb (HTTP_STATUS): typo fixed. [ruby-dev:38538] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@24261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bc8a273ec2
commit
f815568fc6
3 changed files with 9 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Jul 24 17:19:40 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
|
* lib/cgi.rb (HTTP_STATUS): typo fixed. [ruby-dev:38538]
|
||||||
|
|
||||||
Wed Jul 22 23:39:34 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Wed Jul 22 23:39:34 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* lib/rexml/text.rb (REXML::Text.normalize): call to_s for input.
|
* lib/rexml/text.rb (REXML::Text.normalize): call to_s for input.
|
||||||
|
|
|
@ -306,7 +306,7 @@ class CGI
|
||||||
"METHOD_NOT_ALLOWED" => "405 Method Not Allowed",
|
"METHOD_NOT_ALLOWED" => "405 Method Not Allowed",
|
||||||
"NOT_ACCEPTABLE" => "406 Not Acceptable",
|
"NOT_ACCEPTABLE" => "406 Not Acceptable",
|
||||||
"LENGTH_REQUIRED" => "411 Length Required",
|
"LENGTH_REQUIRED" => "411 Length Required",
|
||||||
"PRECONDITION_FAILED" => "412 Rrecondition Failed",
|
"PRECONDITION_FAILED" => "412 Precondition Failed",
|
||||||
"SERVER_ERROR" => "500 Internal Server Error",
|
"SERVER_ERROR" => "500 Internal Server Error",
|
||||||
"NOT_IMPLEMENTED" => "501 Method Not Implemented",
|
"NOT_IMPLEMENTED" => "501 Method Not Implemented",
|
||||||
"BAD_GATEWAY" => "502 Bad Gateway",
|
"BAD_GATEWAY" => "502 Bad Gateway",
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
#define RUBY_VERSION "1.8.7"
|
#define RUBY_VERSION "1.8.7"
|
||||||
#define RUBY_RELEASE_DATE "2009-07-22"
|
#define RUBY_RELEASE_DATE "2009-07-24"
|
||||||
#define RUBY_VERSION_CODE 187
|
#define RUBY_VERSION_CODE 187
|
||||||
#define RUBY_RELEASE_CODE 20090722
|
#define RUBY_RELEASE_CODE 20090724
|
||||||
#define RUBY_PATCHLEVEL 188
|
#define RUBY_PATCHLEVEL 189
|
||||||
|
|
||||||
#define RUBY_VERSION_MAJOR 1
|
#define RUBY_VERSION_MAJOR 1
|
||||||
#define RUBY_VERSION_MINOR 8
|
#define RUBY_VERSION_MINOR 8
|
||||||
#define RUBY_VERSION_TEENY 7
|
#define RUBY_VERSION_TEENY 7
|
||||||
#define RUBY_RELEASE_YEAR 2009
|
#define RUBY_RELEASE_YEAR 2009
|
||||||
#define RUBY_RELEASE_MONTH 7
|
#define RUBY_RELEASE_MONTH 7
|
||||||
#define RUBY_RELEASE_DAY 22
|
#define RUBY_RELEASE_DAY 24
|
||||||
|
|
||||||
#ifdef RUBY_EXTERN
|
#ifdef RUBY_EXTERN
|
||||||
RUBY_EXTERN const char ruby_version[];
|
RUBY_EXTERN const char ruby_version[];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue