Changesets can be listed by changeset number.
The Git repository is here.
Changeset 265
Fixed silly bug whereby HTTP headers had both the header name (key) and
header value converted to lower case, causing redirections to fail if
the path contained any upper case letters. Fixes Ticket #196.
- Comitted by: rool
- Date: Thursday April 23 18:57:07 2009 (over 15 years ago)
Affected files:
rool/rails/rcvsweb/trunk/app/controllers/application.rb:
prev. | current | |
# There are indeed some headers. Create a hash from them. | ||
127 | | |
127 | headstr.split(short ? "\n" : "\r\n").each do |str| | |
pos = str.index(':') | ||
129 | | |
129 | headers[str.slice!(0..pos - 1).strip.downcase] = str[1..-1].strip if (pos > 1) | |
end | ||
# If we find a Status header with a 300-series code, check for a |