0
votes
3answers
33 views
Displaying date/time in user’s timezone - on client side
I have a web application that displays datetime stamps on every page, for example:
December 12, 2009 6:00 pm
I would like to dynamically detect the user's timezone and alter the display using …
1
vote
1answer
14 views
Date conditions using Search logic
The Rails plugin - Searchlogic, from binary logic - offers the ability to filter by date. I have my form set up like so...
<% form_for @search do |f| %>
<%= f.label :start %> <%= …
0
votes
3answers
47 views
How to store timezone in SQL Server 2005
I am building a web application where users can enter events, including
event title
start date/time
description
The users would like to enter the start date/time including a timezone that …
0
votes
2answers
37 views
Map Database timestamp column to UTC Calendar (JPA) and pass it as UTC date via WebService (jax-ws)
This sounds like a simple task.
Get UTC timestamp value from DB and pass it as UTC date via Web Service.
We have timestamp column DATE_COLUMN and store there time in UTC time zone.
With JPA we get …
1
vote
2answers
65 views
TimeZone problem in Java
Hi
I am trying to instantiate GregorianCalendar with TimeZone GMT, but whenever I call the getTime() method, it gives me time in local TimeZone. Here is my code:
Calendar cal = new …
0
votes
1answer
19 views
How can I get the timezone of given gps coordinates on iPhone?
My question is simple. I have the GPS coordinates of a place and I need to know, in what time zone (and daylight saving settings) is on that place. Is any easy solution for this problem in objective …
1
vote
2answers
53 views
How do I get the current time in a different TimeZone in Java?
OK - I feel pretty dumb asking such a basic question, but hey.
I'm trying to get the current time in a different timezone in a Java webapp. I've tried the following obvious solution: in my servlet,
…
0
votes
3answers
37 views
TimeZoneInfo, if a timezone changes in the world, how quickly will microsoft roll out an update
I'm just wondering what happens in the case of a time zone changing, when your product is using .net.
Is all you can do wait for Microsoft to update .net or write your own system for handling it?
…
0
votes
2answers
53 views
Python: parsing date with timezone from an email
I am trying to retrieve date from an email. At first it's easy:
message = email.parser.Parser().parse(file)
date = message['Date']
print date
and I receive:
'Mon, 16 Nov 2009 13:32:02 +0100'
But …
1
vote
4answers
52 views
Scheduling scripts at a different timezone
There are some programs/scripts that need to be run at specific times in a timezone different from the system timezone.
A la crontab in Perl, but one that honors a timezone and DST rules in a region …
0
votes
1answer
33 views
Specify time zone of log4j’s date
Is it possible to specify the time zone that log4j will use? I need the dates in the log file to be a different time zone than the application's. log4j's PatternLayout uses SimpleDateFormat. …
0
votes
1answer
16 views
What time does Google use in “Specific date range”, GMT or PST? [closed]
When you click "Show options", you can specify a particular period, but what time zone does Google use?
0
votes
0answers
23 views
ICalendar parser in PHP that supports timezones
I am looking for a PHP class that can parse an ICalendar (ICS) file and correctly handle timezones.
I already created an ICS parser myself but it can only handle timezones known to PHP (like …
0
votes
0answers
8 views
Set time zone using Clock Configuration Service Provider
I am attempting to use the Clock CSP to set the system time zone on a Windows Mobile 6 Professional device (Opticon H-19A).
I am using the following XML:
<characteristic type="clock">
…
0
votes
2answers
38 views
C# Define begin of day of a date in another timezone
Hi,
I want to define the begin of a day in another timezone with .NET/C#.
Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC
but actually I want to get the …
