如何设置 特拉克 的时区?

发布于 2024-07-16 02:08:08 字数 90 浏览 2 评论 0原文

我正在努力使用 Trac 设置时区。 我四处搜寻,但没有发现任何有用的东西。 我能做些什么?

整个站点时区或每个用户时区设置都会有所帮助。

I am struggling with setting up time zones 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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

画骨成沙 2024-07-23 02:08:08

正如其他人所指出的,解决方案是将其添加到 trac.ini:

[trac]
default_timezone = ...

但棘手的是格式(请参阅 http://trac.edgewall.org/ticket/9581):

Like indicated by others, the solution is to add this to trac.ini:

[trac]
default_timezone = ...

But the tricky thing is the formatting (see http://trac.edgewall.org/ticket/9581):

  • you can either use GMT +xx:xx format (simple but not time saving aware)
  • or enter a timezone name e.g. America/Los_Angeles which requires pytz to be installed - see http://trac.edgewall.org/wiki/PyTz.
旧街凉风 2024-07-23 02:08:08

整个站点的默认时区在 trac.ini 中设置:

[trac]
default_timezone = ...

在用户首选项中,您可以设置日期时间首选项 («base_url»/prefs/datetime),用户可以在其中设置自己的(每个用户)时区。

例如,请参阅 http://trac.edgewall.org/prefs/localization

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/localization

猫瑾少女 2024-07-23 02:08:08

要设置站点默认时区,请使用以下语法编辑 trac.ini

[trac]
default_timezone = GMT +10:00

[trac]
default_timezone = GMT -7:00

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文