PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Version Control » VersionControl_SVN » Bug #9343

Using non-english file/dir names

Details

Request #9343Using non-english file/dir names
Submitted2006-11-15 18:27 UTC
Fromvader666 at yandex dot ru
Assignedclay
StatusClosed
PackageVersionControl_SVN
PHP Version5.1.6
Roadmaps0.3.1

Comments

[2006-11-15 18:27 UTC] vader666 at yandex dot ru

Description:
------------
My repo contain non-English dir and file-names.
When I use "svn list" command in my script, the replay is non-readeble content. Example dir name is: ?\208?\156?\208?\176?\208?\179?\208?\184?\209?\143
For edit this problem I change SVN.php:
in line 627
From: exec("$cmd 2>&1", $out, $ret_var);
To: exec("export LANG=en_US.utf8 && $cmd 2>&1", $out, $ret_var);