In a web application I'm developing (Ruby on Rails), the user can specify a local time of any location in the world. (That location is nothing to do with the user's location or the server's location.)
And if Daylight Savings time is used at that location, the user types that time. I need to get the local time without Daylight Savings for the location from the specified Daylight Savings time.
e.g. The server is in San Francisco. The user is in New York. In winter, the user enters the local time during summer (with Daylight Savings) of Minneapolis. And I need to get the equivalent local time of Minneapolis without Daylight Savings offset. Suppose that we don't have information if Daylight Savings Time is used in Minneapolis or not.
Because the user can specify any location in the world, we cannot tell if that location uses Daylight Savings Time. Also the UTC offset information itself doesn't tell if it's in Daylight Savings Time or not.
How can I do this?
Any help will be greatly appreciated?