diff options
author | André Malo <nd@apache.org> | 2002-11-17 06:54:04 +0100 |
---|---|---|
committer | André Malo <nd@apache.org> | 2002-11-17 06:54:04 +0100 |
commit | ec6fa85be9165d89f39ab89a01184572d91c41fa (patch) | |
tree | 8fa714b67b11addea0a7f2a2dca4793655dfef2b /docs/manual | |
parent | KISS. (diff) | |
download | apache2-ec6fa85be9165d89f39ab89a01184572d91c41fa.tar.xz apache2-ec6fa85be9165d89f39ab89a01184572d91c41fa.zip |
check whether <parentdocument> contains text(nodes).
this allows documents to set the href of the top left left-arrow
without adding a breadcrumb link. This feature primarily intended for
directory index files.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/style/xsl/common.xsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/manual/style/xsl/common.xsl b/docs/manual/style/xsl/common.xsl index 34cabc1f84..31d281f44c 100644 --- a/docs/manual/style/xsl/common.xsl +++ b/docs/manual/style/xsl/common.xsl @@ -141,7 +141,7 @@ <xsl:value-of select="$messages/message[@name='modules']"/> </a> </xsl:if> - <xsl:if test="parentdocument"> + <xsl:if test="parentdocument/text()"> <xsl:text> > </xsl:text> <a href="{parentdocument/@href}"> <xsl:value-of select="parentdocument"/> |