Home » Version Control » VersionControl_SVN » Bug #9343
Using non-english file/dir names
Details
| Request #9343 | Using non-english file/dir names |
|---|---|
| Submitted | 2006-11-15 18:27 UTC |
| From | vader666 at yandex dot ru |
| Assigned | clay |
| Status | Closed |
| Package | VersionControl_SVN |
| PHP Version | 5.1.6 |
| Roadmaps | 0.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);