Routing problem

Hi all,

I want the url something like this:

http://localhost:3000/profile/anyusername

This will access the controller: profile and the action: view and the
value “anyusername” is the :username parameter.
So I wrote in my route file something like this

map.connect ‘profile/:username’, :controller =>
‘profile’, :action=>‘view’

But what I want more is that except for the value “index”,“edit”, and
“update”. When the user type the url:

http://localhost:3000/profile/index, it will access controller:
profile and action: index. For “edit” and “update” are in the same
process.

So my finally route is:

map.connect ‘profile/index’, :controller =>
‘profile’, :action=>‘index’
map.connect ‘profile/edit’, :controller => ‘profile’, :action=>‘edit’
map.connect ‘profile/update’, :controller =>
‘profile’, :action=>‘update’
map.connect ‘profile/:username’, :controller =>
‘profile’, :action=>‘view’

And they are working fine. But I think it’s too long.
Are there any ways that is shorter than the above.

Thanks in advance,

Mako

On Tue, Mar 10, 2009 at 9:47 AM, Mako [email protected] wrote:

So my finally route is:
Are there any ways that is shorter than the above.

Thanks in advance,

Mako

What about:
map.connect ‘profile/:username’, :controller => ‘profile’, :action =>
‘view’
map.connect ‘profile/:action’, :controller => ‘profile’

Andrew T.
http://ramblingsonrails.com
http://www.linkedin.com/in/andrewtimberlake

“I have never let my schooling interfere with my education” - Mark Twain

Andrew T. wrote:

So my finally route is:
Are there any ways that is shorter than the above.
Andrew T.
http://ramblingsonrails.com
http://www.linkedin.com/in/andrewtimberlake

“I have never let my schooling interfere with my education” - Mark Twain

map.connect ‘/profile/:action’, :controller => ‘profile’, :requirements
=> {:action => /(edit|update|new|index)/ }
map.connect ‘/profile/:username’, :controller => ‘profile’, :action =>
‘view’

tom

===============================================================================
Tomas Meinlschmidt, MS {MCT, MCP+I, MCSE, AER}, NetApp Filer/NetCache

www.meinlschmidt.com www.maxwellrender.cz www.lightgems.cz