I'm reading the book 'RESTful web services' and in the discussion on
exposing algorithmic resources it says the following:

"
Most web applications don’t store much state in path variables: they use
query variables instead. You may have seen URIs like this:
• http://www.example.com/articles?start=20061201&end=20071201

Those URIs would look better without the query variables:
• http://www.example.com/articles/20061201-20071201
"

What is the Rails way for exposing algorithmic resources?  Is it via the
first URL in the example or the second?  If it is the second, please can
you give me some guidance on how to achieve this.
Thanks
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to