show/hide this revision's text 2 fixed url spec

I'm going to go out on a limb and guess that you what you mean is what are standard controllers for MVC when you say "RESTful" urls, since your examples could be considered non-"RESTful" (see this article).

Since Rails really popularized the URL style you seem to be interested in, I offer below the default controller actions produced by the ScaffoldingGenerator in Ruby on Rails. These should be familiar to anyone using a Rails application.

The scaffolded actions and views are: index, list, show, new, create, edit, update, destroy

Typically you would construct this as:

http://application.com/model

http://application.com/controller/<action>/<id>
show/hide this revision's text 1

I'm going to go out on a limb and guess that you what you mean is what are standard controllers for MVC when you say "RESTful" urls, since your examples could be considered non-"RESTful" (see this article).

Since Rails really popularized the URL style you seem to be interested in, I offer below the default controller actions produced by the ScaffoldingGenerator in Ruby on Rails. These should be familiar to anyone using a Rails application.

The scaffolded actions and views are: index, list, show, new, create, edit, update, destroy

Typically you would construct this as:

http://application.com/model/<action>/<id>