[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-devel:17641] Re: UTF-8移行成功 (日本語: 本家Debian site)
On Sun, Aug 23, 2009 at 07:05:23PM +0900, Osamu Aoki wrote:
> On Sun, Aug 23, 2009 at 06:04:53PM +0900, nabetaro@xxxxxxxxxx wrote:
> > 鍋太郎です。
> > japanese/security/2004/dsa-449.wml
>
> これって、もともとSJISです! そりゃだめだわ。
>
> これは直したげど、SJISもあるということで一から変換しなおしですかね。
> ちょっとあたまひやします。
>
> > japanese/devel/debian-jr/News/index.wml
>
> kccはsjis自動検出ですものね。
Let me look into old archive.
$ find -type f |xargs -n1 nkf --guess|sort|uniq -c
1682 ASCII
13 BINARY
1907 EUC-JP
633 ISO-2022-JP
2 Shift_JIS
1 UTF-8
I see... Let me make script nkf-guess
#!/bin/sh -e
{ nkf --guess $1 ; echo ": $1" ; } | xargs echo
$ find -type f |xargs -n1 nkf-guess |sort >~/list.txt
Shift_JIS : ./devel/debian-jr/News/index.wml
Shift_JIS : ./security/2004/dsa-449.wml
UTF-8 : ./convert
ASCII seems to be mostly CVS and Makefile.
-J option をつかったのが敗因ですね。
Not using any will auto detact SJIS. Commited 2 changes.
https://alioth.debian.org/scm/viewvc.php/webwml/japanese/?root=webwml
Done.! おしまい。