]> git.openstreetmap.org Git - rails.git/commitdiff
innitial by tag / by user code
authorSteve Coast <steve@asklater.com>
Fri, 8 Dec 2006 18:00:56 +0000 (18:00 +0000)
committerSteve Coast <steve@asklater.com>
Fri, 8 Dec 2006 18:00:56 +0000 (18:00 +0000)
app/controllers/trace_controller.rb
config/routes.rb

index 3f689fd3ae7ef33a9f9970513b4cc2b18d9d53db..fa062b7289534d618f281c71afe39e37f308847f 100644 (file)
@@ -4,11 +4,21 @@ class TraceController < ApplicationController
 
   def list
     @page = params[:page].to_i
+
+    opt = Hash.new
+    opt[:conditions] = ['public = true']
+    opt[:order] = 'timestamp DESC'
+    opt[:limit] = 20
+
     if @page > 0
-      @traces = Trace.find(:all , :conditions => ['public = true'], :order => 'timestamp DESC', :offset => 20*@page, :limit => 20)
-    else
-      @traces = Trace.find(:all , :conditions => ['public = true'], :order => 'timestamp DESC', :limit => 20)
+      opt[:offset => 20*@page]
     end
+
+    if params[:tag]
+      
+    end
+
+    @traces = Trace.find(:all , opt)
   end
 
   def view
index 28d40bd5dd009adea74e4fe4fceb7e4b6d76be2c..a8da5d59656e5a8d51139485417c5531378d67f6 100644 (file)
@@ -34,9 +34,11 @@ ActionController::Routing::Routes.draw do |map|
   map.connect '/traces/page/:page', :controller => 'trace', :action => 'list'
   map.connect '/traces/mine', :controller => 'trace', :action => 'mine'
   map.connect '/traces/rss', :controller => 'trace', :action => 'georss'
+  map.connect '/traces/user/:display_name/', :controller => 'trace', :action => 'list', :id => nil
   map.connect '/traces/user/:display_name/:id', :controller => 'trace', :action => 'view', :id => nil
   map.connect '/traces/user/:display_name/:id/picture', :controller => 'trace', :action => 'picture', :id => nil
   map.connect '/traces/user/:display_name/:id/icon', :controller => 'trace', :action => 'icon', :id => nil
+  map.connect '/traces/tag/:tag/', :controller => 'trace', :action => 'list', :id => nil
 
   # fall through
   map.connect ':controller/:action/:id'