I'm currently using subversion with
"SVNParentPath /my/foo/bar/svn" and "SVNListParentPath on" in a root
Loaction "/".
Example:
http://svn.mydomain.com/myrepos
Only problem I had was that in the "Collection of Repositories"
Listing "view history" provides non-functional links resulting in
errors.
I've identified the problem and patched it - all other usages should
still be fully functional. Only affected file repos.xsl.
In the '<xsl:template match="dir">' section replace the following code
block:
<xsl:if test="$logUrl">
<a id="history:{$id}" class="action" href="{$logUrl}target={../
@path}/{@href}">view history</a>
</xsl:if>
with:
<xsl:choose>
<xsl:when test="string-length(/svn/index/@base) != 0">
<xsl:if test="$logUrl">
<a id="history:{$id}" class="action" href="{$logUrl}target={../
@path}/{@href}">view history</a>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:element name="a">
<xsl:attribute name="id">history:<xsl:value-of select="$id"/></
xsl:attribute>
<xsl:attribute name="class">action</xsl:attribute>
<xsl:attribute name="href"><xsl:value-of select="$static"/>open/
log/?base=<xsl:value-of select="@name"/>&target=/</xsl:attribute>
<xsl:text>view history</xsl:text>
</xsl:element>
</xsl:otherwise>
</xsl:choose>
That's all.
Regards PaNtHaLooN