Changeset 4822
- Timestamp:
- 08/26/06 02:58:55 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb (modified) (1 diff)
- trunk/actionpack/test/controller/cgi_test.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r4821 r4822 1 1 *SVN* 2 2 3 * Changed the POST parameter processing to use the new QueryStringParser and make the result a indifferent hash[DHH]3 * Changed the POST parameter processing to use the new QueryStringParser [DHH] 4 4 5 5 * Add UrlWriter to allow writing urls from Mailers and scripts. [Nicholas Seckar] trunk/actionpack/lib/action_controller/cgi_ext/cgi_methods.rb
r4821 r4822 157 157 end 158 158 159 return result .with_indifferent_access159 return result 160 160 end 161 161 trunk/actionpack/test/controller/cgi_test.rb
r4821 r4822 30 30 expected = {'x' => {'y' => {'z' => '10'}}} 31 31 assert_equal(expected, CGIMethods.parse_query_parameters('x[y][z]=10')) 32 assert_equal("10", CGIMethods.parse_query_parameters('x[y][z]=10')[:x][:y][:z])33 32 end 34 33