active questions tagged timezone - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T20:19:13Zhttp://stackoverflow.com/feeds/tag/timezonehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821104/map-database-timestamp-column-to-utc-calendar-jpa-and-pass-it-as-utc-date-via-w0Map Database timestamp column to UTC Calendar (JPA) and pass it as UTC date via WebService (jax-ws)Mykola Golubyev2009-11-30T17:10:46Z2009-11-30T17:10:46Z
<p>This sounds like a simple task.<br>
Get UTC timestamp value from DB and pass it as UTC date via Web Service.</p>
<p>We have timestamp column DATE_COLUMN and store there time in UTC time zone.</p>
<p>With JPA we get this time with </p>
<pre><code>@Column(name = "DATE_COLUMN")
private java.sql.Timestamp dateValue;
</code></pre>
<p>And as we have to pass this time via Web Service in UTC (Jax-ws 2.0) we have getDate and setDate methods.<br>
We are interested in getDate.</p>
<pre><code>public Calendar getDate()
{
Calendar calendar = Calendar.getInstance(utcTimeZone);
calendar.setTimeInMillis(dateValue.getTime());
return calendar;
}
</code></pre>
<p>This doesn't work as you may think it should.<br>
And this is because application's default time zone is not 'UTC'. </p>
<p>Here is an example for clarification.<br>
Value in the DATE_COLUMN equals to "30.11.09 16:34:48,833045000", when I translate it to UTC I get "2009-11-30T14:34:48.833Z".<br>
The difference is 2 hours. And this is because my default time zone is "Europe/Helsinki".</p>
<p>Same problem if you just want to map 'DATE_COLUMN' to <code>Calendar</code></p>
<pre><code>@Column(name = "DATE_COLUMN")
@Temporal(TemporalType.TIMESTAMP)
private Calendar dateValue;
public Calendar getDate()
{
calendar.setTimeZone(utcTimeZone);
return calendar;
}
</code></pre>
<p>I don't want to change application's time zone because it doesn't look like the solution.</p>
<p>By now we have only two options. </p>
<p><em>First</em>. Calculate offset between application's time zone and UTC and add it manually after automatic subtraction in the calendar.setTimeZone.</p>
<pre><code>public Calendar getDate()
{
Calendar calendar = Calendar.getInstance(utcTimeZone);
calendar.setTimeInMillis(dateValue.getTime());
int offset = TimeZone.getDefault().getOffset(dateValue.getTime());
calendar.add(Calendar.MILLISECOND, offset);
return calendar;
}
</code></pre>
<p><em>Second</em>. Pass dateValue as <code>Long</code> via Web Service. Which is not bad except we lose real type of the field in wsdl.</p>
<p>My imaginary solution is</p>
<pre><code>@Column(name = "DATE_COLUMN")
@Temporal(type = TemporalType.TIMESTAMP, timezone = 'UTC')
private Calendar dateValue;
</code></pre>
<p>But I tend to think that there is the real one somewhere. And I hope you can point it out.</p>
http://stackoverflow.com/questions/1812700/timezone-problem-in-java1TimeZone problem in JavaUmar2009-11-28T14:57:18Z2009-11-28T15:13:42Z
<p>Hi</p>
<p>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:</p>
<pre><code>Calendar cal = new GregorianCalendar(TimeZone.getTimeZone("GMT"));
System.out.println(cal.getTime());
</code></pre>
<p>The output I am getting is this:</p>
<pre><code>Sat Nov 28 19:55:49 PKT 2009
</code></pre>
<p>Please help!</p>
http://stackoverflow.com/questions/1812165/how-can-i-get-the-timezone-of-given-gps-coordinates-on-iphone0How can I get the timezone of given gps coordinates on iPhone?silicosaur2009-11-28T10:13:48Z2009-11-28T14:05:27Z
<p>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 c?</p>
http://stackoverflow.com/questions/1802758/how-do-i-get-the-current-time-in-a-different-timezone-in-java1How do I get the current time in a different TimeZone in Java?Brabster2009-11-26T10:05:34Z2009-11-26T10:12:47Z
<p>OK - I feel pretty dumb asking such a basic question, but hey.</p>
<p>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,</p>
<p><code>Calendar localCalendar = Calendar.getInstance(myBean.getTimeZone());</code></p>
<p>then I pass the calendar object through to a JSP as a request attribute 'localCalendar':</p>
<pre><code>It is now: [${requestScope.localCalendar.time}]
in TimeZone ${requestScope.localCalendar.timeZone.ID}
</code></pre>
<p>but my output seems to ignore the timezone set, i.e.</p>
<p><code>It is now: [Thu Nov 26 10:01:03 GMT 2009] in TimeZone Indian/Mahe</code></p>
<p>I'm guessing it's something to do with Locale settings, is there any way to just get the time formatted for my Locale, in another timezone?</p>
http://stackoverflow.com/questions/1789862/scheduling-scripts-at-a-different-timezone1Scheduling scripts at a different timezonePoorLuzer2009-11-24T12:45:24Z2009-11-24T21:34:17Z
<p>There are some programs/scripts that need to be run at specific times in a timezone <strong>different</strong> from the system timezone.</p>
<p>A la crontab in Perl, but one that honors a timezone and DST rules in a region different from that in which the system is configured.</p>
<p>Here is the use case : I will create an excel sheet with the time in PT in column B and the corresponding program/Perl script to run in column C.</p>
<p>Nothing specific about this information bein in a Excel sheet - could be plain text file/"crontab" entry too.</p>
<p>A Perl script will read in the data from the excel sheet and run/spawn those scripts at the correct time.</p>
<p>The thing to keep at mind is that the Perl script should run correctly regardless of what timezone the system that it is running on is.</p>
<p>Regardless of whether the script is running on a Box in NY or IL or CA, it should spawn the scripts at the time mentioned in the file entries as per the Pacific Standard Time with DST at mind.</p>
<p>It is very important, as I said before, of it being aware, "<em>automagically</em>" ( without me doing any explicit programmming ) of the latest DST rules for the PT region.</p>
<p>What would you suggest?</p>
<p>Maybe I can visit some website that shows current time in that region and scan the time value from it, and run the scripts when it's the correct time?</p>
<p>Any such Perl screen scraper friendly site?</p>
<p>Or maybe I can use some smart Perl module, like <a href="http://search.cpan.org/~roland/Schedule-Cron-0.99/lib/Schedule/Cron.pm" rel="nofollow">http://search.cpan.org/~roland/Schedule-Cron-0.99/lib/Schedule/Cron.pm</a></p>
<p>For the record, a large number of good suggestions came by at <a href="http://www.perlmonks.org/index.pl?node%5Fid=772934" rel="nofollow">http://www.perlmonks.org/index.pl?node_id=772934</a>, <strong>however</strong>, they, in typical at/cron fashion, work as per the system configured timezone.</p>
http://stackoverflow.com/questions/1791800/timezoneinfo-if-a-timezone-changes-in-the-world-how-quickly-will-microsoft-roll0TimeZoneInfo, if a timezone changes in the world, how quickly will microsoft roll out an updateoptician2009-11-24T17:55:06Z2009-11-24T20:16:18Z
<p>I'm just wondering what happens in the case of a time zone changing, when your product is using .net.</p>
<p>Is all you can do wait for Microsoft to update .net or write your own system for handling it?</p>
<p>I'm assuming this stuff doesn't happen very often, but is this an example of why a close system may not be a good idea?</p>
http://stackoverflow.com/questions/1790795/python-parsing-date-with-timezone-from-an-email0Python: parsing date with timezone from an emailgruszczy2009-11-24T15:27:45Z2009-11-24T15:42:23Z
<p>I am trying to retrieve date from an email. At first it's easy:</p>
<pre><code>message = email.parser.Parser().parse(file)
date = message['Date']
print date
</code></pre>
<p>and I receive:</p>
<pre><code>'Mon, 16 Nov 2009 13:32:02 +0100'
</code></pre>
<p>But I need a nice datetime object, so I use:</p>
<pre><code>datetime.strptime('Mon, 16 Nov 2009 13:32:02 +0100', '%a, %d %b %Y %H:%M:%S %Z')
</code></pre>
<p>which raise ValueError, since %Z isn't format for +0100. But I can't find proper format for timezone in the documentation, there is only this %Z for zone. Can someone help me on that?</p>
http://stackoverflow.com/questions/1785725/specify-time-zone-of-log4js-date0Specify time zone of log4j's dateSteve Kuo2009-11-23T20:29:31Z2009-11-23T20:50:10Z
<p>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 <code>PatternLayout</code> uses <code>SimpleDateFormat</code>. Unfortunately there doesn't appear to be a way to control <code>SimpleDateFormat</code>'s time zone via the pattern string (<code>DateFormat</code> has <code>setTimeZone</code> method but that doesn't help).</p>
<p>I looked at log4j's source and <code>SimpleDateFormat</code> is being instiantiated in <code>PatternParser.finalizeConverter</code>. Unfortunately there's not an easy way to get a hold of the <code>DateFormat</code> to set the time zone.</p>
http://stackoverflow.com/questions/1784117/what-time-does-google-use-in-specific-date-range-gmt-or-pst0What time does Google use in "Specific date range", GMT or PST? [closed]Steven2009-11-23T16:04:34Z2009-11-23T16:17:46Z
<p>When you click "Show options", you can specify a particular period, but what time zone does Google use?</p>
http://stackoverflow.com/questions/1782534/icalendar-parser-in-php-that-supports-timezones0ICalendar parser in PHP that supports timezonesVincent Robert2009-11-23T11:22:20Z2009-11-23T12:50:51Z
<p>I am looking for a PHP class that can parse an ICalendar (ICS) file and correctly handle timezones.</p>
<p>I already created an ICS parser myself but it can only handle timezones known to PHP (like 'Europe/Paris').</p>
<p>Unfortunately, ICS file generated by Evolution (default calendar software of Ubuntu) does not use default timezone IDs. It exports events with its a specific timezone ID exporting also the full definition of the timezone: daylight saving dates, recurrence rule and all the hard stuff to understand about timezones.</p>
<p>This is too much for me. Since it was only a small utility for my girlfriend, I won't have time to investigate further the ICalendar specification and create a full blown ICalendar parser myself.</p>
<p>So is there any known implementation in PHP of ICalendar file format that can parse timezones definitions?</p>
http://stackoverflow.com/questions/1771489/set-time-zone-using-clock-configuration-service-provider0Set time zone using Clock Configuration Service Providertbone2009-11-20T16:07:06Z2009-11-20T16:07:06Z
<p>I am attempting to use the Clock CSP to set the system time zone on a Windows Mobile 6 Professional device (Opticon H-19A).</p>
<p>I am using the following XML:</p>
<pre><code><characteristic type="clock">
<parm name="TimeZone" value="35" />
<characteristic>
</code></pre>
<p>DMProcessConfigXML is returning E_FAIL and the XML output string matches the XML input string.</p>
<p>Does anyone know why this isn't working? Is there a better (reliable) way to set the time zone for Windows Mobile 5/6 & Pocket PC 2003.</p>
http://stackoverflow.com/questions/1770747/c-define-begin-of-day-of-a-date-in-another-timezone0C# Define begin of day of a date in another timezoneunknown (google)2009-11-20T14:24:12Z2009-11-20T14:34:49Z
<p>Hi,</p>
<p>I want to define the begin of a day in another timezone with .NET/C#.</p>
<p>Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC</p>
<p>but actually I want to get the DateTime.Today for timezone GMT+2 which would be 19/11/2009 22:00 UTC.</p>
<p>How do I do this without juggling with offsets & daylightsaving calculations?</p>
http://stackoverflow.com/questions/1759645/connection-time-zone-issue-with-jora-eclipse-plugin-1connection time zone issue with jOra eclipse pluginDoug2009-11-18T22:34:09Z2009-11-19T19:15:33Z
<p>I started using the jOra eclipse plugin. The plugin seems pretty robust and I'm hoping to stop using SQLDeveloper for 95% of my database needs. </p>
<p>Many of our tables have columns of type TIMESTAMP with LOCAL TIME ZONE. I can connect to the oracle DB using a jdbc string and the plugin seems to function very well. However, when I try to update one of these TIMESTAMP with LOCAL TIME ZONE values, I get a sql exception: java.sql.SQLException: connection session time zone was not set.</p>
<p>Does anyone know how I can set the time zone through the jdbc connection url? jOra doesn't seem to support adding custom connection properties, so the connection URL is really my only option.</p>
<p>Update: Running version 1.0.1, which I believe is the latest version.<br>
Update2: Apparently I can perform an update statement in the sql worksheet just fine, just can't use their detail browser interface to update.</p>
http://stackoverflow.com/questions/1760352/java-date-render-with-specific-daylight-mode1Java Date, render with specific daylight modeSteve Kuo2009-11-19T01:28:38Z2009-11-19T18:43:55Z
<p>I have a Java <code>Date</code> that is from this summer during daylight savings time. For example:</p>
<blockquote>
<p>Jun 01, 2009 06:00 AM PDT</p>
</blockquote>
<p>My question is, how do I display this date as my local time zone and <strong>current daylight savings mode</strong> (in my case Pacific Standard Time)?</p>
<blockquote>
<p>Jun 01, 2009 05:00 AM PST</p>
</blockquote>
<p>Java's <code>Date.toString()</code> and <code>SimpleDateFormat</code> displays the date in the <strong>original</strong> daylight savings mode. Example:</p>
<pre><code>System.out.println(new Date(1243861200000L));
</code></pre>
<p>outputs: </p>
<blockquote>
<p>Mon Jun 01 06:00:00 PDT 2009</p>
</blockquote>
<pre><code>DateFormat dateFormat = new SimpleDateFormat("MMM dd, yyyy hh:mm aa zzz");
dateFormat.setTimeZone(TimeZone.getTimeZone("PST"));
System.out.println(dateFormat.format(new Date(1243861200000L)));
</code></pre>
<p>outputs:</p>
<blockquote>
<p>Jun 01, 2009 06:00 AM PDT</p>
</blockquote>
<p>What I really want to see is 5:00 AM PST (which is equivalent to 6:00 AM PDT). Is there a way to force it to use another daylight savings mode?</p>
<p><strong>Follow up:</strong> By the way, this is the Windows XP behavior. A file created on June 1, 6 AM will be seen (by Explorer, Command Prompt, etc) as June 1, 5 AM during the winter.</p>
http://stackoverflow.com/questions/1704350/timezone-by-coordinate1TimeZone by CoordinateMorten2009-11-09T22:25:52Z2009-11-18T20:36:25Z
<p>As the title infers I need to find a time zone (or perhaps just the UTC offset) based on a pair of coordinates. I've been searching for different solutions, and there is a couple of web services out there but I need to be able to access the application offline. As the timezones isn't completely based on longitude it doesn't seem that easy...</p>
<p>I though about querying an ESRI shapefile I've got containing all the countries in world and their timezones, but it seems kind of complex. If that should be the solution, do you know of any .NET library providing this functionality?</p>
http://stackoverflow.com/questions/1731772/credit-card-expiration-dates-in-which-timezone6Credit card expiration dates in which timezone?Henry2009-11-13T20:42:22Z2009-11-18T19:43:02Z
<p>We know from <a href="http://stackoverflow.com/questions/54037/credit-card-expiration-dates-inclusive-or-exclusive">Credit card expiration dates - Inclusive or exclusive?</a> that credit card expires on the last day. However, in which time zone?</p>
http://stackoverflow.com/questions/1463865/rails-app-how-to-enter-events-in-local-time-zone1Rails app - how to enter events in local time zone JetShred2009-09-23T03:55:09Z2009-11-17T06:33:46Z
<p>I am working on a Rails app that displays a sports schedule (in a basic table). Each game/event is a db table row. The customer wants all the events to display in chronological order but to also display the time in the event's local timezone.</p>
<p>How can I add a timezone selector to the New action? So that when the customer enters events they can select the event's timezone and input the event's time in that timezone.</p>
<p>Here is what the schedule would look like:</p>
<p>Event 1 7:00 pm EST
Event 2 5:00 pm PST
Event 3 7:00 pm PST</p>
<p>I personally think this is confusing, but it's what they want. Thanks in advance.</p>
http://stackoverflow.com/questions/1745436/how-to-manage-timezones-in-a-web-application2How to manage timezones in a web application?segaco2009-11-16T23:04:46Z2009-11-16T23:24:51Z
<p>Hi, I wan't to manage the different timezones of my users in my web application, but I have no idea where to start. I have to save the local time of each user in my database?, or maybe make the conversion to a UTC time, save it, and then make the conversion again to show it?, or there is another way? For example, if one of my users make an appointment in his local time, I have to convert it to UTC store it in my database, and then when he need it, convert it again to his local time an show it?? By the way, I'm using Django. Thanks.</p>
http://stackoverflow.com/questions/947299/how-do-i-make-mysqls-now-and-curdate-functions-use-utc0How do I make MySQL's NOW() and CURDATE() functions use UTC?Chad Johnson2009-06-03T21:15:37Z2009-11-15T13:00:02Z
<p>I want to make it so calls to NOW() and CURDATE() in MySQL queries return the date in UTC. How do I make this happen without going through and changing all queries that use these functions?</p>
<p>Believe, me, I have been Googling for the answer, but in 20 minutes, I have found nothing that has worked.</p>
http://stackoverflow.com/questions/1723262/validating-a-timezone-string-and-returning-it-as-minutes-1Validating a Timezone String and Returning it as Minuteskzh2009-11-12T15:56:14Z2009-11-13T13:15:46Z
<p>I I have a timezone taken from a user that must be converted into total minutes to be stored in the database. I have the following code and it looks pretty ugly. I am new to C# and was wondering if there is a better way to do this.</p>
<pre><code> string tz = userList.Rows[0][1].ToString().Trim();
//Timezones can take the form of + or - followed by hour and then minutes in 15 minute increments.
Match tzre = new Regex(@"^(\+|-)?(0?[0-9]|1[0-2])(00|15|30|45)$").Match(tz);
if (!tzre.success)
{
throw new
myException("Row 1, column 2 of the CSV file to be imported must be a valid timezone: " + tz);
}
GroupCollection tzg = tzre.Groups;
tz = Convert.ToInt32(tzg[0].Value + Convert.ToString(Convert.ToInt32(tzg[1].Value) * 60 + Convert.ToInt32(tzg[2]))).ToString();
</code></pre>
http://stackoverflow.com/questions/1728264/why-does-java-return-a-date-in-gmt-4-5-when-choosing-co-ordinated-universal-time0Why does Java return a date in GMT-4.5 when choosing Co-ordinated Universal Time time zone in Windows?simonn2009-11-13T09:55:27Z2009-11-13T11:08:40Z
<p>We have seen a strange issue on some Windows XP machines involving the "Co-ordinated Universal Time" time zone. Not all Windows XP machines seem to have it, but on those that do, the following simple Java program</p>
<pre><code>public class TimeTest {
public static void main(String[] args) {
System.out.println(java.util.TimeZone.getDefault());
System.out.println(new java.util.Date());
}
}
</code></pre>
<p>on JDK 1.6.0_06 prints:</p>
<pre>
sun.util.calendar.ZoneInfo[id="America/Caracas",offset=-16200000,dstSavings=0,useDaylight=false,transitions=5,lastRule=null]
Fri Nov 13 05:34:14 VET 2009
</pre>
<p>(i.e. 4 and a half hours behind GMT). I should add that I am based in London, and have never been to South America. :-)</p>
<p>My questions are:</p>
<ul>
<li>Where does Java get this time zone from? I thought Co-ordinated Universal Time was supposed to be the new name for GMT.</li>
<li>Why do some Windows machines have this time zone but not others?</li>
</ul>
http://stackoverflow.com/questions/1726755/converting-asp-net-sql-web-app-to-be-ime-zone-savy1Converting asp.net/sql web app to be ime zone savyrudesyle2009-11-13T02:26:27Z2009-11-13T10:53:57Z
<p>Our current app stores all dates via the server's datetime. I'm thinking we need to update all datetime values in the database over to UTC time. </p>
<p>Now for displaying these dates back to the user, I know .Net 3.5 has datatypes that are specific to date time offsets. But does anyone see anything wrong with setting an application variable to represent the desired time zone for the site, and then do a dateadd with that offset to display times back to the user? For instance the Eastern Time zone would have a value of "-5".</p>
http://stackoverflow.com/questions/1727077/generating-a-drop-down-list-of-timezones-with-php0Generating a drop down list of timezones with PHPXeoncross2009-11-13T04:07:28Z2009-11-13T04:37:35Z
<p>Most sites need some way to show the dates on the site in the users preferred timezone. Below are <a href="http://www.phpbb.com" rel="nofollow">two lists</a> that <a href="http://www.aviblock.com/blog/2009/03/12/presenting-a-list-of-timezones-to-the-user/" rel="nofollow">I found and</a> then one method <a href="http://us.php.net/manual/en/function.date-default-timezone-set.php#84459" rel="nofollow">using the built in PHP DateTime</a> class in PHP 5. </p>
<p>I need help knowing which of these would be the best to attempt to use when trying to get the UTC offset from the user on register.</p>
<p>One:</p>
<pre><code><option value="-12">[UTC - 12] Baker Island Time</option>
<option value="-11">[UTC - 11] Niue Time, Samoa Standard Time</option>
<option value="-10">[UTC - 10] Hawaii-Aleutian Standard Time, Cook Island Time</option>
<option value="-9.5">[UTC - 9:30] Marquesas Islands Time</option>
<option value="-9">[UTC - 9] Alaska Standard Time, Gambier Island Time</option>
<option value="-8">[UTC - 8] Pacific Standard Time</option>
<option value="-7">[UTC - 7] Mountain Standard Time</option>
<option value="-6">[UTC - 6] Central Standard Time</option>
<option value="-5">[UTC - 5] Eastern Standard Time</option>
<option value="-4.5">[UTC - 4:30] Venezuelan Standard Time</option>
<option value="-4">[UTC - 4] Atlantic Standard Time</option>
<option value="-3.5">[UTC - 3:30] Newfoundland Standard Time</option>
<option value="-3">[UTC - 3] Amazon Standard Time, Central Greenland Time</option>
<option value="-2">[UTC - 2] Fernando de Noronha Time, South Georgia &amp; the South Sandwich Islands Time</option>
<option value="-1">[UTC - 1] Azores Standard Time, Cape Verde Time, Eastern Greenland Time</option>
<option value="0" selected="selected">[UTC] Western European Time, Greenwich Mean Time</option>
<option value="1">[UTC + 1] Central European Time, West African Time</option>
<option value="2">[UTC + 2] Eastern European Time, Central African Time</option>
<option value="3">[UTC + 3] Moscow Standard Time, Eastern African Time</option>
<option value="3.5">[UTC + 3:30] Iran Standard Time</option>
<option value="4">[UTC + 4] Gulf Standard Time, Samara Standard Time</option>
<option value="4.5">[UTC + 4:30] Afghanistan Time</option>
<option value="5">[UTC + 5] Pakistan Standard Time, Yekaterinburg Standard Time</option>
<option value="5.5">[UTC + 5:30] Indian Standard Time, Sri Lanka Time</option>
<option value="5.75">[UTC + 5:45] Nepal Time</option>
<option value="6">[UTC + 6] Bangladesh Time, Bhutan Time, Novosibirsk Standard Time</option>
<option value="6.5">[UTC + 6:30] Cocos Islands Time, Myanmar Time</option>
<option value="7">[UTC + 7] Indochina Time, Krasnoyarsk Standard Time</option>
<option value="8">[UTC + 8] Chinese Standard Time, Australian Western Standard Time, Irkutsk Standard Time</option>
<option value="8.75">[UTC + 8:45] Southeastern Western Australia Standard Time</option>
<option value="9">[UTC + 9] Japan Standard Time, Korea Standard Time, Chita Standard Time</option>
<option value="9.5">[UTC + 9:30] Australian Central Standard Time</option>
<option value="10">[UTC + 10] Australian Eastern Standard Time, Vladivostok Standard Time</option>
<option value="10.5">[UTC + 10:30] Lord Howe Standard Time</option>
<option value="11">[UTC + 11] Solomon Island Time, Magadan Standard Time</option>
<option value="11.5">[UTC + 11:30] Norfolk Island Time</option>
<option value="12">[UTC + 12] New Zealand Time, Fiji Time, Kamchatka Standard Time</option>
<option value="12.75">[UTC + 12:45] Chatham Islands Time</option>
<option value="13">[UTC + 13] Tonga Time, Phoenix Islands Time</option>
<option value="14">[UTC + 14] Line Island Time</option>
</code></pre>
<p>Or using PHP friendly values:</p>
<pre><code><option value="Pacific/Midway">(GMT-11:00) Midway Island, Samoa</option>
<option value="America/Adak">(GMT-10:00) Hawaii-Aleutian</option>
<option value="Etc/GMT+10">(GMT-10:00) Hawaii</option>
<option value="Pacific/Marquesas">(GMT-09:30) Marquesas Islands</option>
<option value="Pacific/Gambier">(GMT-09:00) Gambier Islands</option>
<option value="America/Anchorage">(GMT-09:00) Alaska</option>
<option value="America/Ensenada">(GMT-08:00) Tijuana, Baja California</option>
<option value="Etc/GMT+8">(GMT-08:00) Pitcairn Islands</option>
<option value="America/Los_Angeles">(GMT-08:00) Pacific Time (US & Canada)</option>
<option value="America/Denver">(GMT-07:00) Mountain Time (US & Canada)</option>
<option value="America/Chihuahua">(GMT-07:00) Chihuahua, La Paz, Mazatlan</option>
<option value="America/Dawson_Creek">(GMT-07:00) Arizona</option>
<option value="America/Belize">(GMT-06:00) Saskatchewan, Central America</option>
<option value="America/Cancun">(GMT-06:00) Guadalajara, Mexico City, Monterrey</option>
<option value="Chile/EasterIsland">(GMT-06:00) Easter Island</option>
<option value="America/Chicago">(GMT-06:00) Central Time (US & Canada)</option>
<option value="America/New_York">(GMT-05:00) Eastern Time (US & Canada)</option>
<option value="America/Havana">(GMT-05:00) Cuba</option>
<option value="America/Bogota">(GMT-05:00) Bogota, Lima, Quito, Rio Branco</option>
<option value="America/Caracas">(GMT-04:30) Caracas</option>
<option value="America/Santiago">(GMT-04:00) Santiago</option>
<option value="America/La_Paz">(GMT-04:00) La Paz</option>
<option value="Atlantic/Stanley">(GMT-04:00) Faukland Islands</option>
<option value="America/Campo_Grande">(GMT-04:00) Brazil</option>
<option value="America/Goose_Bay">(GMT-04:00) Atlantic Time (Goose Bay)</option>
<option value="America/Glace_Bay">(GMT-04:00) Atlantic Time (Canada)</option>
<option value="America/St_Johns">(GMT-03:30) Newfoundland</option>
<option value="America/Araguaina">(GMT-03:00) UTC-3</option>
<option value="America/Montevideo">(GMT-03:00) Montevideo</option>
<option value="America/Miquelon">(GMT-03:00) Miquelon, St. Pierre</option>
<option value="America/Godthab">(GMT-03:00) Greenland</option>
<option value="America/Argentina/Buenos_Aires">(GMT-03:00) Buenos Aires</option>
<option value="America/Sao_Paulo">(GMT-03:00) Brasilia</option>
<option value="America/Noronha">(GMT-02:00) Mid-Atlantic</option>
<option value="Atlantic/Cape_Verde">(GMT-01:00) Cape Verde Is.</option>
<option value="Atlantic/Azores">(GMT-01:00) Azores</option>
<option value="Europe/Belfast">(GMT) Greenwich Mean Time : Belfast</option>
<option value="Europe/Dublin">(GMT) Greenwich Mean Time : Dublin</option>
<option value="Europe/Lisbon">(GMT) Greenwich Mean Time : Lisbon</option>
<option value="Europe/London">(GMT) Greenwich Mean Time : London</option>
<option value="Africa/Abidjan">(GMT) Monrovia, Reykjavik</option>
<option value="Europe/Amsterdam">(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna</option>
<option value="Europe/Belgrade">(GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague</option>
<option value="Europe/Brussels">(GMT+01:00) Brussels, Copenhagen, Madrid, Paris</option>
<option value="Africa/Algiers">(GMT+01:00) West Central Africa</option>
<option value="Africa/Windhoek">(GMT+01:00) Windhoek</option>
<option value="Asia/Beirut">(GMT+02:00) Beirut</option>
<option value="Africa/Cairo">(GMT+02:00) Cairo</option>
<option value="Asia/Gaza">(GMT+02:00) Gaza</option>
<option value="Africa/Blantyre">(GMT+02:00) Harare, Pretoria</option>
<option value="Asia/Jerusalem">(GMT+02:00) Jerusalem</option>
<option value="Europe/Minsk">(GMT+02:00) Minsk</option>
<option value="Asia/Damascus">(GMT+02:00) Syria</option>
<option value="Europe/Moscow">(GMT+03:00) Moscow, St. Petersburg, Volgograd</option>
<option value="Africa/Addis_Ababa">(GMT+03:00) Nairobi</option>
<option value="Asia/Tehran">(GMT+03:30) Tehran</option>
<option value="Asia/Dubai">(GMT+04:00) Abu Dhabi, Muscat</option>
<option value="Asia/Yerevan">(GMT+04:00) Yerevan</option>
<option value="Asia/Kabul">(GMT+04:30) Kabul</option>
<option value="Asia/Yekaterinburg">(GMT+05:00) Ekaterinburg</option>
<option value="Asia/Tashkent">(GMT+05:00) Tashkent</option>
<option value="Asia/Kolkata">(GMT+05:30) Chennai, Kolkata, Mumbai, New Delhi</option>
<option value="Asia/Katmandu">(GMT+05:45) Kathmandu</option>
<option value="Asia/Dhaka">(GMT+06:00) Astana, Dhaka</option>
<option value="Asia/Novosibirsk">(GMT+06:00) Novosibirsk</option>
<option value="Asia/Rangoon">(GMT+06:30) Yangon (Rangoon)</option>
<option value="Asia/Bangkok">(GMT+07:00) Bangkok, Hanoi, Jakarta</option>
<option value="Asia/Krasnoyarsk">(GMT+07:00) Krasnoyarsk</option>
<option value="Asia/Hong_Kong">(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi</option>
<option value="Asia/Irkutsk">(GMT+08:00) Irkutsk, Ulaan Bataar</option>
<option value="Australia/Perth">(GMT+08:00) Perth</option>
<option value="Australia/Eucla">(GMT+08:45) Eucla</option>
<option value="Asia/Tokyo">(GMT+09:00) Osaka, Sapporo, Tokyo</option>
<option value="Asia/Seoul">(GMT+09:00) Seoul</option>
<option value="Asia/Yakutsk">(GMT+09:00) Yakutsk</option>
<option value="Australia/Adelaide">(GMT+09:30) Adelaide</option>
<option value="Australia/Darwin">(GMT+09:30) Darwin</option>
<option value="Australia/Brisbane">(GMT+10:00) Brisbane</option>
<option value="Australia/Hobart">(GMT+10:00) Hobart</option>
<option value="Asia/Vladivostok">(GMT+10:00) Vladivostok</option>
<option value="Australia/Lord_Howe">(GMT+10:30) Lord Howe Island</option>
<option value="Etc/GMT-11">(GMT+11:00) Solomon Is., New Caledonia</option>
<option value="Asia/Magadan">(GMT+11:00) Magadan</option>
<option value="Pacific/Norfolk">(GMT+11:30) Norfolk Island</option>
<option value="Asia/Anadyr">(GMT+12:00) Anadyr, Kamchatka</option>
<option value="Pacific/Auckland">(GMT+12:00) Auckland, Wellington</option>
<option value="Etc/GMT-12">(GMT+12:00) Fiji, Kamchatka, Marshall Is.</option>
<option value="Pacific/Chatham">(GMT+12:45) Chatham Islands</option>
<option value="Pacific/Tongatapu">(GMT+13:00) Nuku'alofa</option>
<option value="Pacific/Kiritimati">(GMT+14:00) Kiritimati</option>
</code></pre>
<p>Or just using PHP it's self</p>
<pre><code>$timezones = DateTimeZone::listAbbreviations();
$cities = array();
foreach( $timezones as $key => $zones )
{
foreach( $zones as $id => $zone )
{
/**
* Only get timezones explicitely not part of "Others".
* @see http://www.php.net/manual/en/timezones.others.php
*/
if ( preg_match( '/^(America|Antartica|Arctic|Asia|Atlantic|Europe|Indian|Pacific)\//', $zone['timezone_id'] )
&& $zone['timezone_id']) {
$cities[$zone['timezone_id']][] = $key;
}
}
}
// For each city, have a comma separated list of all possible timezones for that city.
foreach( $cities as $key => $value )
$cities[$key] = join( ', ', $value);
// Only keep one city (the first and also most important) for each set of possibilities.
$cities = array_unique( $cities );
// Sort by area/city name.
ksort( $cities );
</code></pre>
<p>It seems like the last one would be the safest as it would grow with the PHP release being used. You could also flip that array around when needed to tie timezones to city names.</p>
http://stackoverflow.com/questions/1718724/how-to-properly-add-pytz-to-a-google-app-engine-application0How to properly add PyTZ to a Google App Engine application?Lyudmil2009-11-11T23:07:24Z2009-11-13T03:57:49Z
<p>This is a little embarrassing, but I have not been able to find good resources on this topic.</p>
<p>I'm working on a Google App Engine application that requires sophisticated time zone conversions. Since I am nowhere near the imposed quotas, I have opted to go with PyTZ. However, I must be doing something wrong. What I've done so far is:</p>
<ol>
<li>Downloaded PyTZ as a tarball</li>
<li>Installed it and copied the <code>pytz</code>
directory into the root of my app
(it is a sibling of the <code>webapp</code>
directory, where <code>app.yaml</code> is located).</li>
</ol>
<p>However, if I try to instantiate timezones, PyTZ can never seem to find any. Here is a sample session from GAE's interactive console:</p>
<pre><code>from pytz import timezone
rome = timezone('Europe/Rome')
</code></pre>
<p>The output is the following:</p>
<pre><code>Traceback (most recent call last):
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/admin/__init__.py", line 210, in post
exec(compiled_code, globals())
File "<string>", line 3, in <module>
File "/Library/Python/2.5/site-packages/pytz-2009j-py2.5.egg/pytz/__init__.py", line 157, in timezone
UnknownTimeZoneError: 'Europe/Rome'
</code></pre>
<p>What is it I am doing wrong? Thank you in advance for your help.</p>
<p><strong>NOTE</strong>: If I just use the python interactive shell locally things work as expected:</p>
<pre><code>>>> from pytz import datetime, timezone
>>> rome = timezone('Europe/Rome')
>>> rome.localize(datetime.datetime.now())
datetime.datetime(2009, 11, 12, 0, 4, 52, 990114, tzinfo=<DstTzInfo 'Europe/Rome' CET+1:00:00 STD>)
</code></pre>
<p><em>Edit</em>: I need to clarify I'm not using a zipped version of PyTZ. I have included the whole <code>zoneinfo</code> directory in my project:</p>
<pre><code>pc-morena:pytz lyudmilangelov$ cd zoneinfo/
pc-morena:zoneinfo lyudmilangelov$ ls -l
total 448
drwxr-xr-x@ 55 lyudmilangelov staff 1870 Nov 10 12:48 Africa
drwxr-xr-x@ 135 lyudmilangelov staff 4590 Nov 10 12:48 America
drwxr-xr-x@ 12 lyudmilangelov staff 408 Nov 10 12:48 Antarctica
drwxr-xr-x@ 3 lyudmilangelov staff 102 Nov 10 12:48 Arctic
drwxr-xr-x@ 93 lyudmilangelov staff 3162 Nov 10 12:48 Asia
...
</code></pre>
http://stackoverflow.com/questions/1726180/is-javas-timezone-thread-safe2Is Java's TimeZone thread-safe?unknown (yahoo)2009-11-12T23:38:03Z2009-11-13T01:53:13Z
<p>I wanted my application to just have one <code>TimeZone</code> object which will be used by many <code>SimpleDateFormat</code> and <code>Calendar</code> objects from the other places concurrently. This is to avoid having to always do <code>TimeZone.getTimeZone(ID)</code>. </p>
<p>I know <code>SimpleDateFormat</code> and <code>Calendar</code> classes are not thread safe, which is why I configure one thread to always create new instances of them. But what about <code>TimeZone</code>? It is not clear to me whether I can do the following safely:</p>
<pre><code>final TimeZone tz = TimeZone.getTimeZone("GMT");
...
//Thread 1.
Thread t1 = new Thread(Runnable(){
public void run()
{
Calendar cal = Calendar.getInstance(tz);
...
SimpleDateFormat sdf = new SimpleDateFormat();
sdf.setTimeZone(tz);
...
}
});
t1.start();
...
//Thread 2.
Thread t2 = new Thread(Runnable(){
public void run()
{
Calendar cal = Calendar.getInstance(tz);
...
SimpleDateFormat sdf = new SimpleDateFormat();
sdf.setTimeZone(tz);
...
}
});
t2.start();
...
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1718484/how-to-print-out-time-zone-abbreviations-when-using-offset-hours-in-joda-time0How to print out time zone abbreviations when using offset hours in Joda Time?Mike2009-11-11T22:22:54Z2009-11-12T06:24:27Z
<p>I'm using Joda Time, and I'm being passed DateTimeZones that are created using <code>DateTimeZone.forOffsetHours()</code>. I'd like to print these timezones using standard timezone acronyms such as "PST", "EST", etc.</p>
<p>However, whenever I print DateTimes that use these timezones, I get an "hh:mm" representation of the timezone instead of the name acronym.</p>
<p>Here's an example:</p>
<pre><code>public class tmp {
public static void main( String args[] ) {
// "PST"
System.out.println( DateTimeFormat.forPattern("z").print( new DateTime() ) );
// "PST"
System.out.println( DateTimeFormat.forPattern("z").print( new DateTime( DateTimeZone.forTimeZone( TimeZone.getTimeZone("PST")) )) );
// "-08:00"
System.out.println( DateTimeFormat.forPattern("z").print( new DateTime( DateTimeZone.forOffsetHours(-8) )) );
}
}
</code></pre>
<p>Is there a way to print out the appropriate timezone acronym in the last example using Joda Time?</p>
http://stackoverflow.com/questions/1718935/how-do-i-get-a-visitors-time-zone-in-php0How do I get a visitor's time zone in PHP?terrani2009-11-11T23:58:08Z2009-11-12T00:03:29Z
<p>Hi,</p>
<p>Is there a way to find out visitors' timezone in PHP?</p>
http://stackoverflow.com/questions/1712550/java-is-this-a-correct-way-to-get-the-current-time-as-a-calendar-object-in-a-par2Java: Is this a correct way to get the current time as a Calendar object in a particular time zone?unknown (yahoo)2009-11-11T02:08:19Z2009-11-11T02:55:58Z
<p>I know there are other similar questions to this, but I came up with my own way of getting the current time in a specific time zone, so I just wanted to confirm if it is correct or not, or there are gotchas I didn't take care of.</p>
<pre><code>Calendar cal = Calendar.getInstance();
// Assuming we want to get the current time in GMT.
TimeZone tz = TimeZone.getTimeZone("GMT");
cal.setTimeInMillis(calendar.getTimeInMillis()
+ tz.getOffset(calendar.getTimeInMillis())
- TimeZone.getDefault().getOffset(calendar.getTimeInMillis()));
// Calendar should now be in GMT.
</code></pre>
<p>Is the above correct at all? I did my own test and it seemed to be working as expected, but just wanted to confirm it again with the experts in Stack Overflow.</p>
http://stackoverflow.com/questions/1707799/timezone-ids-in-java0TimeZone ID's in JavaDima2009-11-10T13:01:25Z2009-11-10T14:25:23Z
<p>I'm having weird problem with java TimeZone..</p>
<p>Calling <strong>TimeZone.getDefault()</strong> gives my local time zone, which has an ID "GMT+02:00".
Funny thing is that this ID doesn't appear in a list provided by <strong>TimeZone.getAvailableIDs()</strong>. Apparently my zone appears to be "Etc/GMT+2".</p>
<p>I'm trying to populate a combo with time zones, but it's impossible to put a selection because GMT+02:00 is not in the list..
Anyone seen this problem? Any ideas?</p>
<p><hr></p>
<p>Update:</p>
<p>The bottom line is - can't rely on ID strings, must go with the offset as display ID's may vary from system to system.</p>
http://stackoverflow.com/questions/1707400/named-scope-not-cooperating-with-timezone1Named scope not cooperating with timezone?The Tailor2009-11-10T11:48:23Z2009-11-10T12:43:13Z
<p>Hi guys,</p>
<p>A really dodgy problem I've got. Here's my model:</p>
<pre><code>class Entry < ActiveRecord::Base
default_scope :order => 'published_at DESC'
named_scope :published, :conditions => ["published_at < ?", Time.zone.now], :order => 'published_at DESC'
belongs_to :blog
end
</code></pre>
<p>Now if I do</p>
<pre><code>@entries = Entry.published.paginate_by_blog_id @blog.id,
:page => params[:page],
:order => 'published_at DESC',
</code></pre>
<p>It does not return posts unless i move published_at back one hour. BUT:</p>
<pre><code>@entries = Entry.paginate_by_blog_id @blog.id,
:page => params[:page],
:conditions => ["published_at < ?", Time.zone.now],
:order => 'published_at DESC',
</code></pre>
<p>And it works fine!</p>
<p>I'm going nuts here, anyone has any ideas of where to even start debugging?</p>