I'd like to build a view that allows the user to get a list of things that are happening around a certain time.
What is the best way to build this request? E.g. If I wanted to get all of the events that are happening right now I could post to /events/2009/09/29/8/23/
That seems rather tedious especially if I want to have multiple dates in a request. I could end up with urls that look like /events/between/2009/09/29/8/23/2006/11/16/14/45/
Is there a simple (javascipt) way to convert a date/time to a timestamp and pass that in as an int, which I can then convert to a datetime inside the view?