tags:

views:

356

answers:

2

I am struggling with setting up timezones with Trac. I have searched around but I have found nothing helpful. What can I do?

Both a whole site timezone or a per-user timezone settings would be helpful.

+2  A: 

Default timezone for whole site is set up in the trac.ini:

[trac]
default_timezone = ...

In user preferences you have date time preferences («base_url»/prefs/datetime), where user can set his own (per user) timezone.

See for example http://trac.edgewall.org/prefs/datetime

vartec
A: 

To set the site default timezone, edit trac.ini with the following syntax:

[trac]
default_timezone = GMT +10:00

or

[trac]
default_timezone = GMT -7:00
I recommend using format "Region/City", because this takes care of daylight saving changes. In vartex answer has the list of available options.
Simo Salminen