]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/trace_controller.rb
trace bits and a georss class
[rails.git] / app / controllers / trace_controller.rb
index f7f323e9c5af550a7284b7c63f6f4598a82c102e..3448b43acf42e5226fa2e3d8bd5e8117cbe06a93 100644 (file)
@@ -38,6 +38,12 @@ class TraceController < ApplicationController
     redirect_to :action => 'mine'
   end
 
+  def georss
+    traces = Trace.find(:all, :conditions => ['public = true'], :order => 'timestamp DESC', :limit => 20)
+
+
+  end
+
   def picture
     trace = Trace.find(params[:id])
     send_data(trace.large_picture, :filename => "#{trace.id}.gif", :type => 'image/png', :disposition => 'inline') if trace.public
@@ -47,5 +53,4 @@ class TraceController < ApplicationController
     trace = Trace.find(params[:id])
     send_data(trace.icon_picture, :filename => "#{trace.id}.gif", :type => 'image/gif', :disposition => 'inline') if trace.public
   end
-
 end