# File lib/merb-core/controller/merb_controller.rb, line 429
  def absolute_url(*args)
    options  = extract_options_from_args!(args) || {}
    options[:protocol] ||= request.protocol
    options[:host] ||= request.host
    args << options
    super(*args)
  end