You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by 문부기 <bg...@sysmate.com> on 2006/01/27 08:12:04 UTC

[Q] Path-based authorization for directories including non-ASCII characters

Hi, svn users.

I’m trying to give a path-based authorization for svn repositories. It
works well for directories named with ASCII characters. But it doesn’t
seem to work for directories with non-ASCII characters. I tested it using
both svnserve (1.3.0) and apache. How can I do this? Any work-around
(except not using non-ASCII characters)?

 

Following is what I tested.

 

svn://192.168.10.8/myrepos

+- English

|   +- myFile

+- 한글

    +- 내파일

 

----------

svnauthzfile

[myrepos:/English]

harry = rw

[myrepos:/한글]

harry = rw

 

I tried to access those two directories. The directory ‘English’ was
accessible while ‘한글’ was not.

 

----------

Brandon, Moon.