# File lib/tapkit/control/date_and_time.rb, line 235
                def to_s
                        s = sprintf("%04d-%02d-%02d %02d:%02d:%02d",
                                @year, @month, @day, @hour, @minute, @second) 

                        if @zone.nil?
                                s
                        else
                                s + " #@zone"
                        end
                end