]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/browse_controller.rb
Adding pagination to the changesets, thus allowing you to browe large changesets...
[rails.git] / app / controllers / browse_controller.rb
index 2c6c3dc5f6e26f42de0f5bc298407e8be71a5062..60f580963cda9719326173b4479c7b70734a46c2 100644 (file)
@@ -116,6 +116,9 @@ class BrowseController < ApplicationController
   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 }] )