]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/browse_controller.rb
start no longer uses these nodes: don't query for them
[rails.git] / app / controllers / browse_controller.rb
index a33fedd53465e58cf389e257a0f871bb7f74930a..fd482119d91870f680b1d204dc330bec7bd7f60f 100644 (file)
@@ -2,7 +2,11 @@ class BrowseController < ApplicationController
   before_filter :authorize_web  
   layout 'site'
 
+  def start 
+  end
+  
   def index
+    @nodes = Node.find(:all, :order => "timestamp DESC", :limit=> 20)  
   end
   
   def relation 
@@ -15,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
@@ -45,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
@@ -75,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