X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/488efc3df8f18cd867d3eb9c5b595d7bd8e1d362..d3314fee0f4a4031a893e0a93b5fa0f86b1613ed:/app/controllers/browse_controller.rb diff --git a/app/controllers/browse_controller.rb b/app/controllers/browse_controller.rb index 5e55de13b..a6c0e0ae2 100644 --- a/app/controllers/browse_controller.rb +++ b/app/controllers/browse_controller.rb @@ -2,6 +2,13 @@ class BrowseController < ApplicationController before_filter :authorize_web layout 'site' + def start + @nodes = Node.find(:all, :order => "timestamp DESC", :limit=> 20) + end + def index + @nodes = Node.find(:all, :order => "timestamp DESC", :limit=> 20) + end + def relation begin @relation = Relation.find(params[:id]) @@ -12,6 +19,8 @@ class BrowseController < ApplicationController end @title = 'Relation | ' + (@name) + @next = Relation.find(:first, :order => "id ASC", :conditions => [ "visible = true AND id > :id", { :id => @relation.id }] ) + @prev = Relation.find(:first, :order => "id DESC", :conditions => [ "visible = true AND id < :id", { :id => @relation.id }] ) rescue ActiveRecord::RecordNotFound render :nothing => true, :status => :not_found end @@ -42,6 +51,8 @@ class BrowseController < ApplicationController end @title = 'Way | ' + (@name) + @next = Way.find(:first, :order => "id ASC", :conditions => [ "visible = true AND id > :id", { :id => @way.id }] ) + @prev = Way.find(:first, :order => "id DESC", :conditions => [ "visible = true AND id < :id", { :id => @way.id }] ) rescue ActiveRecord::RecordNotFound render :nothing => true, :status => :not_found end @@ -72,6 +83,8 @@ class BrowseController < ApplicationController end @title = 'Node | ' + (@name) + @next = Node.find(:first, :order => "id ASC", :conditions => [ "visible = true AND id > :id", { :id => @node.id }] ) + @prev = Node.find(:first, :order => "id DESC", :conditions => [ "visible = true AND id < :id", { :id => @node.id }] ) rescue ActiveRecord::RecordNotFound render :nothing => true, :status => :not_found end