search for: browser_content_type

Displaying 1 result from an estimated 1 matches for "browser_content_type".

2005 Nov 11
0
cache_page throwing "undefined method merge" error
...es nothing but display @cache.data (which can be XML or HTML) Here''s the controller: class DisplayController < ApplicationController caches_page :xml, :html session :off def xml @cache = Cache.find(params[:id]) response.headers[''content-type''] = @cache.browser_content_type #cache_page @cache.data, "/display/xml/#{@params[''id'']}.xml" end def html @cache = Cache.find(params[:id]) response.headers[''content-type''] = @cache.browser_content_type #cache_page @cache.data, "/display/html/#{@params['...