+ @title = 'Node History | ' + (@name)
+ rescue ActiveRecord::RecordNotFound
+ @type = "way"
+ render :action => "not_found", :status => :not_found
+ end
+ end
+
+ def changeset
+ begin
+ @changeset = Changeset.find(params[:id])
+
+ @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 }] )