bearsaturday / BEAR.Saturday

PHP 5.2+ resource-oriented web framework
https://github.com/bearsaturday/manual
Other
20 stars 16 forks source link

コードの保存文字コード #17

Closed kumamidori closed 11 years ago

kumamidori commented 11 years ago

■現象

Subversionサーバ、クライアントのバージョン等、環境によるようなのですが、 下記のように、UTF-8 / LF でないファイルがあると、 リポジトリ登録しようとすると、失敗するケースがありました。

・登録エラー内容 svn: Inconsistent line ending style

■原因

下記ファイル群をUTF-8 で保存し直したら、リポジトリ登録ができました。

find ./ -type f |grep -Ev ".gif"| xargs nkf --guess | grep -E "MIXED"

.//BEAR/vendors/jquery/jquery-1.3.1.js: ASCII (MIXED NL) .//BEAR/vendors/xhprof/xhprof_html/css/xhprof.css: ASCII (MIXED NL) .//BEAR/vendors/xhprof/xhprof_html/third-party/highcharts/highcharts.js: Shift_JIS (MIXED NL) .//data/docs/eclipse/BEAR: No such file or directory Conventions.xml: No such file or directory .//BEAR/vendors/xhprof/xhprof_lib/templates/header.phtml: ASCII (MIXED NL) .//data/htdocs/bear/index.php: UTF-8 (MIXED NL) .//data/htdocs/bear/jquery-ui/js/jquery-ui-1.7.custom.min.js: ASCII (MIXED NL) .//data/htdocs/__bear/xhprof/xhprof_html/css/xhprof.css: ASCII (MIXED NL) .//data/htdocs/bear/xhprof/xhprof_html/third-party/highcharts/highcharts.js: Shift_JIS (MIXED NL) .//data/htdocs/edit/ajax/files.php: ASCII (MIXED NL)

■対応について お手数なのですが、お手すきの際に、 上記の保存し直しと、併せて、下記のEclipse固有ファイルについて、削除をお願いできますでしょうか。

.//data/docs/eclipse/BEAR: No such file or directory Conventions.xml: No such file or directory

よろしくお願いいたします。

koriym commented 11 years ago

fixed 99cb0e25dad55b958bb0fc9a11f2220c67955265

koriym commented 11 years ago

報告ありがとうございました。