Hi all,
In the book RESTful Web Services[1] (from O'Reilly) there's a little section about URI design where it tells you to use "semicolons" or "commas" to separate pieces of information at the same level.
For example, suppose I've got a Message resource and I wanna take all the messages between two dates: '/messages/2007-12-01,2007-12-10'.
Does exist any "canonical" way to achieve this in Rails 2?
Thank you in advance.