aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/mime_type.rb
Commit message (Expand)AuthorAgeFilesLines
* Ensure mime types can be compared with symbols. Closes #10796 [bscofield]Michael Koziarski2008-01-201-1/+4
* Some mime type refactoring. Closes #9957 [Josh Peek]Jeremy Kemper2007-10-231-2/+2
* Fix Json related documentation for render and the AR serializer. Closes #9814...Michael Koziarski2007-10-151-1/+1
* Ruby 1.9 compat, consistent load pathsJeremy Kemper2007-10-021-3/+3
* Added that render :json will automatically call .to_json unless its being pas...David Heinemeier Hansson2007-09-201-2/+8
* Random hits from the style naziDavid Heinemeier Hansson2007-09-091-1/+1
* Improved the handling of broken accept headersTobias Lütke2007-03-281-4/+6
* Prefer MIME constants to strings. Closes #7707.Jeremy Kemper2007-03-061-4/+4
* Add Mime::Type convenience methods to check the current mime type. [Rick]Rick Olson2007-02-151-0/+10
* Use a consistent load path to avoid double requires. Fix some scattered Ruby ...Jeremy Kemper2007-01-281-1/+1
* Added Request#format to return the format used for the request as a mime type...David Heinemeier Hansson2006-12-021-0/+4
* Added the option for extension aliases to mime type registration [DHH] Refact...David Heinemeier Hansson2006-12-021-65/+12
* Added CSV to Mime::SET so that respond_to csv will workTobias Lütke2006-11-241-1/+1
* Added text/csv as a default mime type and included example on how to make you...David Heinemeier Hansson2006-11-231-0/+5
* Docs and deprecationDavid Heinemeier Hansson2006-09-031-1/+14
* respond_to .html now always renders #{action_name}.rhtml so that registered c...Tobias Lütke2006-08-301-1/+1
* Added ICS to extension lookup recognition [Lars Pind]David Heinemeier Hansson2006-07-261-0/+2
* Make new mime types first class [DHH]David Heinemeier Hansson2006-06-021-1/+3
* Added Mime::TEXT (text/plain) and Mime::ICS (text/calendar) as new default ty...David Heinemeier Hansson2006-06-021-0/+5
* Added Mime::Type.register(string, symbol, synonyms = []) for adding new custo...David Heinemeier Hansson2006-06-021-4/+12
* Dont keep nothing as a lookup [DHH]David Heinemeier Hansson2006-06-011-5/+5
* Added interrogation of params[:format] to determine Accept type. If :format i...David Heinemeier Hansson2006-05-311-0/+17
* Fixed docsDavid Heinemeier Hansson2006-03-281-2/+1
* Make Mime::Type.parse consider q values (if any)Jamis Buck2006-03-181-13/+67
* Fix Mime::Type#to_sym to do @string.to_sym. Add text/yaml as alias for Mime::...Jamis Buck2006-03-151-3/+5
* Rendering xml shouldnt happen inside any layout. Added class proxying to RJS,...David Heinemeier Hansson2006-03-131-7/+29
* Prepare for mime type reordering depending on the branch [DHH]David Heinemeier Hansson2006-03-121-1/+7
* Default mime type for XML should be application/xml [DHH]David Heinemeier Hansson2006-03-121-13/+16
* Mime types are separated by a comma, not semicolon, in the Accept header. Als...David Heinemeier Hansson2006-03-121-2/+10
* Added synonym and custom type handling to respond_to [DHH]David Heinemeier Hansson2006-03-121-26/+30
* Assume that we accept what we give [DHH]David Heinemeier Hansson2006-03-121-1/+1
* Added better support for using the same actions to output for different sourc...David Heinemeier Hansson2006-03-111-0/+44