[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Subversion log format in Japanese

From: Stefan Sperling <stsp_at_elego.de>
Date: Tue, 20 Mar 2012 13:04:05 +0100

On Tue, Mar 20, 2012 at 04:24:11PM +0900, Berin Babcock-McConnell wrote:
> Hello,
>
> I have a question regarding the format of the date displayed in the
> log of a repository when using a Japanese locale. Specifically, the
> format of the "human timestamp format suffix" (as it is described in
> libsvn_subr/time.c) doesn't seem to be quite right and I'm wondering
> if there is a reason for the format as it is.
>
> For example, if you were to execute
>
> $ svn log http://svn.apache.org/repos/asf/subversion
>
> in English you would see date lines such as
>
> "r1302758 | hwright | 2012-03-20 11:34:26 +0900 (Tue, 20 Mar 2012) |
> 14 lines"
>
> The "(Tue, 20 Mar 2012)" part is dictated by the "human timestamp
> format suffix" in libsvn_subr/time.c and in Japanese if you execute
> the same command you get,
>
> "r1302758 | hwright | 2012-03-20 11:34:26 +0900 (火, 20 3月 2012) |
> 14 lines"
>
> This doesn't seem to be right because the order is the exact
> opposite of what one would expect (normally this would be ordered as
> year, month, day, day of week) and only the month has the character
> for month (whereas the day and year do not have the characters for
> day and year so there is a lack of consistency).
>
> In other words, I would expect that in Japanese I would get something like,
>
> "r1302758 | hwright | 2012-03-20 11:34:26 +0900 (2012年3月20日 (火))
> | 14 lines"
>
> I have adjusted this on my system by changing the msgstr for msgid "
> (%a, %d %b %Y)" from " (%a, %d %b %Y)" to " (%x (%a))".
>
> This feels like a bug to me and I looked at the latest version of
> the Japanese po file (revision 1302772, line 6238) and I see that
> the format is still " (%a, %d %b %Y)". I have googled around a bit
> and looked in through the issue list, etc, and I haven't found any
> discussion on this and I'm wondering if there is a particular reason
> for this format or is it just that nobody has said anything yet
> or...?

Did you see this part of the comment above the human-readable date
format string?

 * [..] The
 * human explanatory part is generated by apr_strftime, which means
 * that its generation can be affected by locale, it can fail and it
 * doesn't need to be constant in size. In other words, perfect to be
 * converted to a configuration option later on.

IOW, there are many strftime() format flags people might want to use.
The correct date format can be based on the locale. But it might just
as well be based on personal preferences.

So the strftime() format string for the human-readable part of the date
is hardcoded in the code right now and it is unfortunate that this looks
bad in some locales.

Is there an alternative strftime() format string that would produce
the desired result in English, Japanese and any other language?
If so, we could use that instead.

Or we could add a new feature to make the format string configurable.
As the comment suggests, there could be a client-side configuration
option that allows users to specify an strftime() compatible format
string that Subversion should use here, with the current format
string as default.

Would you like to submit a patch that implements either of these approaches?
Received on 2012-03-20 13:04:45 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.