princevil / google-refine

Automatically exported from code.google.com/p/google-refine
0 stars 0 forks source link

Time display is wrong in projects list #130

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The project that I created at 3:47 PM EDT is shown in the project list on the 
main page as being created at 7:47 PM which would appear to be the UTC time.  
Dates and times displayed to the user should use local time.

Original issue reported on code.google.com by tfmorris on 16 Sep 2010 at 8:03

GoogleCodeExporter commented 8 years ago

Original comment by stefa...@google.com on 16 Sep 2010 at 9:40

GoogleCodeExporter commented 8 years ago
Tom, I think that's the last modified date, not the created date. Are you still 
seeing this bug?

Original comment by dfhu...@google.com on 28 Sep 2010 at 4:28

GoogleCodeExporter commented 8 years ago
Yes, both command line and graphic clocks on my system currently say 12:40, but 
the last modified date displayed on the Refine home page for the project I was 
working on is 4:21 am, several hours in the future.

Original comment by tfmorris on 28 Sep 2010 at 4:42

GoogleCodeExporter commented 8 years ago

Original comment by iainsproat on 14 Oct 2010 at 4:35

GoogleCodeExporter commented 8 years ago

Original comment by tfmorris on 12 Dec 2010 at 7:55

GoogleCodeExporter commented 8 years ago
So apparently Java looks for its timezone data in the one place that didn't get 
set up on my Linux system (Ubuntu 10.04 LTS) and it's the only thing that looks 
there.

This can be fixed using one of the following:

1. System -> Administration -> Time & Date
2. Adding this line to your .profile:

    TZ='America/New_York'; export TZ

3. Setting the systemwide timezone by hand:

    sudo ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime

4. Using the following Java property when starting Refine:

    -Duser.timezone=America/New_York

Original comment by tfmorris on 12 Dec 2010 at 9:20