]> git.openstreetmap.org Git - rails.git/commitdiff
Use gpx as the extension when we ask for /trace/N/data.gpx
authorTom Hughes <tom@compton.nu>
Tue, 15 Oct 2013 23:46:33 +0000 (00:46 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 15 Oct 2013 23:46:33 +0000 (00:46 +0100)
app/controllers/trace_controller.rb

index 790acce1d73246d96502e7e5a87c3c203d564c1d..9c4a9d8bd18952816f0f267aacec2d378a3a61fc 100644 (file)
@@ -151,8 +151,10 @@ class TraceController < ApplicationController
     if trace.visible? and (trace.public? or (@user and @user == trace.user))
       if Acl.no_trace_download(request.remote_ip)
         render :text => "", :status => :forbidden
     if trace.visible? and (trace.public? or (@user and @user == trace.user))
       if Acl.no_trace_download(request.remote_ip)
         render :text => "", :status => :forbidden
-      elsif request.format == Mime::XML or request.format == Mime::GPX
+      elsif request.format == Mime::XML
         send_file(trace.xml_file, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => 'attachment')
         send_file(trace.xml_file, :filename => "#{trace.id}.xml", :type => request.format.to_s, :disposition => 'attachment')
+      elsif request.format == Mime::GPX
+        send_file(trace.xml_file, :filename => "#{trace.id}.gpx", :type => request.format.to_s, :disposition => 'attachment')
       else
         send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
       end
       else
         send_file(trace.trace_name, :filename => "#{trace.id}#{trace.extension_name}", :type => trace.mime_type, :disposition => 'attachment')
       end