<manualpage> fixes:
* Prints out "Summary" above the summary.
* Move's an <hr/> back down into the footer.
* Transforms seealso tags.
Shane
Index: common.xsl
===================================================================
RCS file: /home/cvspublic/httpd-2.0/docs/manual/style/common.xsl,v
retrieving revision 1.8
diff -u -r1.8 common.xsl
--- common.xsl 27 Jul 2002 15:20:50 -0000 1.8
+++ common.xsl 27 Jul 2002 16:12:24 -0000
@@ -250,18 +250,40 @@
<xsl:value-of select="title"/>
</h1>
- <xsl:apply-templates select="summary"/>
+ <xsl:if test="summary">
+ <h2>
+ <xsl:value-of select="$messages/[EMAIL PROTECTED]'summary']"/>
+ </h2>
+
+ <xsl:apply-templates select="summary"/>
+ </xsl:if>
<ul>
<xsl:apply-templates select="section" mode="index"/>
</ul>
-
- <hr/>
+
+ <xsl:if test="seealso">
+ <p>
+ <strong>
+ <xsl:value-of select="$messages/[EMAIL PROTECTED]'seealso']"/>
+ </strong>
+ </p>
+
+ <ul>
+ <xsl:for-each select="seealso">
+ <li>
+ <xsl:apply-templates/>
+ </li>
+ </xsl:for-each>
+ </ul>
+ </xsl:if>
<xsl:apply-templates select="section"/>
</blockquote>
<!-- Page footer -->
+ <hr/>
+
<h3 align="center">
<xsl:value-of select="$messages/[EMAIL
PROTECTED]'apachehttpserver']"/>
</h3>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]