如何在 Eclipse 中设置“团队 - 历史记录”视图的日期格式?
有谁知道如何在 Eclipse 中设置“团队 - 历史记录”视图的日期格式?我们正在使用 Subversive SVN 插件,但它似乎并不特定于该插件。之前曾提出过类似的堆栈溢出问题,但答案并不理想。
历史记录视图当前显示版本的日期为:8/9/10(这基本上没有用),除非您有很多版本并且可以根据之前和后续版本来解读它。
这与 Windows XP 区域日期设置无关,因为我们尝试更改“短日期格式”,但似乎没有效果。
Does anyone know how to set the date format for the Team - History view in Eclipse? We are using the Subversive SVN plug-in but it doesn't seem to be specific to that plug-in. A Similar Stack Overflow Question was asked before but the answer was not really desirable.
The History view currently displays the date of a version as: 8/9/10 (which is basically useless) unless you have many versions and can decipher it bases on previous and subsequent versions.
This is independent of the Windows XP regional date settings as we have tried changing the "short date format" and it seems to have no effect.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 Indigo 中,您可以转到“设置”>团队> SVN>日期格式并指定自定义日期格式。
例如 yyyy.MM.dd HH:mm 给出 2011.10.29 19:32
在 Juno 中,日期格式字段位于“Settings>”中团队> SVN>标签装饰品。
在 Kepler 中,日期格式字段位于“设置”>“日期格式”中。团队> SVN>标签装饰/文字。
在 Mars 中,日期格式字段位于“首选项”>“日期格式”中。团队> SVN>查看设置。
In Indigo you can go to Settings> Team> SVN> Date Formats and specify a custom date format.
For example yyyy.MM.dd HH:mm gives 2011.10.29 19:32
In Juno the Date Format field is in Settings> Team> SVN> Label Decorations.
In Kepler the Date Format field is in Settings> Team> SVN> Label Decorations/Text.
In Mars the Date Format field is in Preferences> Team> SVN> View Settings.
除了设置 Eclipse 运行的 JVM 区域设置之外,似乎没有其他方法可以设置此视图的日期格式。但对于许多语言环境,您必须设置语言和国家/地区。 eclipse.ini 的以下条目生成所需的结果 yyyy-mm-dd HH.MM
您可以通过运行以下代码来选择日期格式:
但我将为读者省去一些麻烦并显示输出:
It looks like there is no way to set the date format for this view other than by setting the JVM locale in which Eclipse runs. But for many locales you have to set the language AND country. The following entries to eclipse.ini produce the desired result of yyyy-mm-dd HH.MM
You can select a date format by running the following code:
but I'll save the reader some hassle and show the output:
尽管引用的问题说的是 OSX,但答案是相同的。在 Windows 上,有一个具有相同内容的 eclipse.ini 文件。添加这个:
Even though the referenced question says OSX, the answer is the same. On Windows there is an
eclipse.ini
file with the same content. Add this:在 Kepler with subversive 中,设置位于
Window >首选项>团队> SVN
在“视图设置”选项卡上的“日期格式”下,选择“自定义日期”,输入
yyyy-MM-dd HH:mm:ss Z
。例如:2014-01-16 20:34:59 +0000
。In Kepler with subversive the setting is at
Window > Preferences > Team > SVN
on the View Settings tab, under Date Formats, choose Custom Date, input
yyyy-MM-dd HH:mm:ss Z
. This yields, for example:2014-01-16 20:34:59 +0000
.