]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/trace_controller.rb
Use a lower zoom level for partial postcode matches.
[rails.git] / app / controllers / trace_controller.rb
index 7c5bd7db00df0d64b4561a170fe5bf749eba5723..c56ff4a74052b242a8eea72f80d30ddf6b156b74 100644 (file)
@@ -121,7 +121,11 @@ class TraceController < ApplicationController
     trace = Trace.find(params[:id])
 
     if trace.visible? and (trace.public? or (@user and @user == trace.user))
-      send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
+      if request.format == Mime::XML
+        send_file(trace.xml_file, :filename => "#{trace.id}.xml", :type => Mime::XML.to_s, :disposition => 'attachment')
+      else
+        send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
+      end
     else
       render :nothing, :status => :not_found
     end