summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoshiki Hayashi <yoshiki@apache.org>2002-06-13 07:37:38 +0000
committerYoshiki Hayashi <yoshiki@apache.org>2002-06-13 07:37:38 +0000
commit624176ba848defa5dece5b467d27f6d38a4f9b5f (patch)
treef46b7538772bc256879f1c851cf07a2d724fada8
parent011acff9daaf53b4c448c0d6277c493c31754d98 (diff)
downloadhttpd-624176ba848defa5dece5b467d27f6d38a4f9b5f.tar.gz
Prevent browsers from wrapping "description", "status" and "module
identitfier" (and their translations). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95639 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--docs/manual/style/common.xsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/style/common.xsl b/docs/manual/style/common.xsl
index 7256767a7f..8f201dcaaa 100644
--- a/docs/manual/style/common.xsl
+++ b/docs/manual/style/common.xsl
@@ -136,16 +136,16 @@
<table bgcolor="#cccccc" cellpadding="0" cellspacing="1"><tr><td>
<table bgcolor="#ffffff">
<tr>
- <td valign="top"><span class="help"><xsl:value-of select="$messages/message[@name='description']"/>:</span></td>
+ <td valign="top" nowrap="nowrap"><span class="help"><xsl:value-of select="$messages/message[@name='description']"/>:</span></td>
<td><xsl:apply-templates select="description"/></td>
</tr>
<tr>
- <td><a class="help" href="module-dict.html#Status"><xsl:value-of select="$messages/message[@name='status']"/>:</a></td>
+ <td nowrap="nowrap"><a class="help" href="module-dict.html#Status"><xsl:value-of select="$messages/message[@name='status']"/>:</a></td>
<td><xsl:value-of select="status"/></td>
</tr>
<xsl:if test="identifier">
<tr>
- <td><a class="help" href="module-dict.html#ModuleIdentifier"><xsl:value-of select="$messages/message[@name='moduleidentifier']"/>:</a> </td>
+ <td nowrap="nowrap"><a class="help" href="module-dict.html#ModuleIdentifier"><xsl:value-of select="$messages/message[@name='moduleidentifier']"/>:</a> </td>
<td><xsl:value-of select="identifier"/></td>
</tr>
</xsl:if>