summary refs log tree commit
path: root/lib/rack/request.rb
DateCommit message (Expand)
2009-04-30LALEE: Tweak to Rack's Request.rb to allow POST Data from MethodOverride PUT lalee/MethodOverride_PUT.patch
2009-04-11better multipart handling
2009-04-01Allow arbitrary number of arguments for Request::new
2009-03-19Added Rack::Request#path
2009-03-19Refactored Rack::Request#media_type
2009-02-14Split parse_query utility into parse_query and parse_nested_query. parse_nest...
2009-01-31Fix Rack::Request subclassing and memoization issues
2009-01-21Clean up Safari's ajax POST body
2009-01-14Add tests for multipart uploads. Also ensure multipart parser tries to rewind...
2008-12-29Don't try to rewind CGI input
2008-12-25Idiomize code
2008-12-24Added Rack::Request initialization memoization to reduce repetitive instantia...
2008-12-23Rewind input after parsing request form vars
2008-11-28Avoid slurping or parsing request body on PUT requests
2008-08-30Add Request#ip and corresponding spec
2008-07-06Added support for Accept-Encoding (via Request#accept_encoding and Utils.sele...
2008-04-10handle EOFError exception in Request#params
2008-03-27Bug fix for Tempfile POST bodies under Ruby 1.8
2008-03-15Fix that Request assumes form-data even when Content-Type says otherwise
2008-02-24Fix cookie parsing
2008-01-21Conform to RFC 2109 regarding multiple values for same cookie
2007-05-16Fix trailing whitespace. Sigh.
2007-05-15add some features to Request and the corresponding tests for them
2007-03-30Add Request#fullpath
2007-03-01Add RDocs
2007-02-28Remove the port number of HTTP_HOST and SERVER_NAME
2007-02-28Make Rack::Request read multipart form data
2007-02-21Add getter method for the query string (and use it internally)
2007-02-21Add Request#url
2007-02-19Return empty hash on lack of cookies
2007-02-19Cache the parsed things in Rack::Request
2007-02-18Rename Request#method to #request_method to not confuse stdlibs
2007-02-18More convenience for Rack::Request
2007-02-17Don't define path_info twice
2007-02-16Add Rack::Response and Rack::Utils
2007-02-16Add Rack::Request