On 1/27/15 10:52 AM, Stefan Sperling wrote: > I suppose _Core (with leading underscore) is a private namespace. > I don't know why this isn't part of the public SVN::Core:: namespace. > It probably should be.
It is. SVN:Core::uri_canonicalize(); _Core is the raw SWIG wrapped interfaces. Core cuts out extraneous bits of the symbols and in many cases provide a lot of help to make things behave in a more Perl like manner (in this case it's just a thin wrapper). In general if it's a in libsvn_subr then it's in SVN:Core with the svn_ prefix dropped. > Unfortunately the bindings are badly maintained and documentation is > almost non-existent :( > See http://svn.haxx.se/dev/archive-2011-02/0544.shtml While your statement isn't entirely untrue, the link is about the Python bindings. The Perl bindings have some documentation, far more than the Python bindings. But could certainly use more and of course patches would be welcome.