]> git.openstreetmap.org Git - rails.git/commitdiff
add a browse index (no content yet)
authorChristopher Schmidt <crschmidt@crschmidt.net>
Sun, 20 Apr 2008 16:18:22 +0000 (16:18 +0000)
committerChristopher Schmidt <crschmidt@crschmidt.net>
Sun, 20 Apr 2008 16:18:22 +0000 (16:18 +0000)
app/controllers/browse_controller.rb
app/views/browse/index.rhtml [new file with mode: 0644]
config/routes.rb

index 5e55de13b9e09204af988e3c3e1af678765e576f..a33fedd53465e58cf389e257a0f871bb7f74930a 100644 (file)
@@ -2,6 +2,9 @@ class BrowseController < ApplicationController
   before_filter :authorize_web  
   layout 'site'
 
+  def index
+  end
+  
   def relation 
     begin
       @relation = Relation.find(params[:id])
diff --git a/app/views/browse/index.rhtml b/app/views/browse/index.rhtml
new file mode 100644 (file)
index 0000000..d4a7b19
--- /dev/null
@@ -0,0 +1 @@
+Welcome to the browse subpages!
index 84e6256e163617b10baaab3fc3bc446c8db3e32e..a93946c527bcb2d06189789ed983b6f8e155b3e9 100644 (file)
@@ -55,6 +55,7 @@ ActionController::Routing::Routes.draw do |map|
   map.connect "api/#{API_VERSION}/swf/trackpoints", :controller =>'swf', :action =>'trackpoints'
   
   # Data browsing
+  map.connect '/browse', :controller => 'browse', :action => 'index'
   map.connect '/browse/way/:id', :controller => 'browse', :action => 'way', :id => /\d+/
   map.connect '/browse/way/:id/history', :controller => 'browse', :action => 'way_history', :id => /\d+/
   map.connect '/browse/node/:id', :controller => 'browse', :action => 'node', :id => /\d+/