Added the main controller (msf). Added it to routes.

git-svn-id: file:///home/svn/framework3/trunk@3948 4d416f70-5f16-0410-b530-b9f4589650da
unstable
lmh 2006-09-25 01:06:20 +00:00
parent 57ff7d7c21
commit 76e577adae
4 changed files with 9 additions and 13 deletions

View File

@ -0,0 +1,6 @@
class MsfController < ApplicationController
def index
end
end

View File

@ -0,0 +1,2 @@
module MsfHelper
end

View File

@ -1,17 +1,5 @@
ActionController::Routing::Routes.draw do |map| ActionController::Routing::Routes.draw do |map|
# The priority is based upon order of creation: first created -> highest priority. map.connect '', :controller => "msf"
# Sample of regular route:
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
# Keep in mind you can assign values other than :controller and :action
# Sample of named route:
# map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
# This route can be invoked with purchase_url(:id => product.id)
# You can have the root of your site routed by hooking up ''
# -- just remember to delete public/index.html.
# map.connect '', :controller => "welcome"
# Allow downloading Web Service WSDL as a file with an extension # Allow downloading Web Service WSDL as a file with an extension
# instead of a file named 'wsdl' # instead of a file named 'wsdl'