Timzones, UTC, and to_xml()

Does anyone know a good way to hook into the AR to_xml() method to
allow for adjusting datetimes to a user’s timezone?

Basically I want a user to be able dump all their data before
cancelling an account. I store all datetime info as UTC as per the
recommendations of Jamis B. and Scott B. in the Rails Recipe
article “Dealing with Timezones”. Come to think of it I bet 37Signals
already has figured out a way to do this as they allow users to dump
data…

Any help would be much appreciated.

Thanks,
Zack

Zack C. wrote:

Any help would be much appreciated.
What is the intended use of the data when they get it?

It seems safer to give it to them in UTC instead of their timezone, no
telling
what they may do with it, so you may be saving them hassle later on.

Also, what if they move timezones after they export it and then they try
to
import it somewhere and the times will be wrong.

Regards,
Blair


Blair Z., Ph.D.
[email protected]
Subversion training, consulting and support
http://www.orcaware.com/svn/

Blair,
I understand this argument and I’ve thought the pros and cons.
Still, converting makes sense to me as not to confuse the user by
having all the times off by whatever their Timezone offset is…

I know I can always loop through the objects and convert if the AR
attribute is_a? Time… but I love those ruby one-liners…

Zack