]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/browse_controller.rb
Pass the to_user to the view. Tests may follow. Closes #1394
[rails.git] / app / controllers / browse_controller.rb
index 408846c96a2c5fbb1df1112294a961a15026bf4e..60f580963cda9719326173b4479c7b70734a46c2 100644 (file)
@@ -112,4 +112,20 @@ class BrowseController < ApplicationController
       render :action => "not_found", :status => :not_found
     end
   end
+  
+  def changeset
+    begin
+      @changeset = Changeset.find(params[:id])
+      @node_pages, @nodes = paginate(:old_nodes, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'node_page')
+      @way_pages, @ways = paginate(:old_ways, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'way_page')
+      @relation_pages, @relations = paginate(:old_relations, :conditions => {:changeset_id => @changeset.id}, :per_page => 20, :parameter => 'relation_page')
+      
+      @title = "Changeset | #{@changeset.id}"
+      @next = Changeset.find(:first, :order => "id ASC", :conditions => [ "id > :id", { :id => @changeset.id }] ) 
+      @prev = Changeset.find(:first, :order => "id DESC", :conditions => [ "id < :id", { :id => @changeset.id }] ) 
+    rescue ActiveRecord::RecordNotFound
+      @type = "changeset"
+      render :action => "not_found", :status => :not_found
+    end
+  end
 end