summaryrefslogtreecommitdiff
path: root/docs/xslt
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2004-08-08 19:14:52 +0000
committerGerald W. Carter <jerry@samba.org>2008-04-23 08:46:00 -0500
commitaed1af463588316d456cebd7a00da6b51f95e775 (patch)
tree615d61f4a96941405f597c12228e8bfa9dc5c2d8 /docs/xslt
parent994df6ff07805d4cfccf6e5ff167ce93f3f19ca8 (diff)
downloadsamba-aed1af463588316d456cebd7a00da6b51f95e775.tar.gz
samba-aed1af463588316d456cebd7a00da6b51f95e775.tar.bz2
samba-aed1af463588316d456cebd7a00da6b51f95e775.zip
Stylescript fixes
(This used to be commit c490850bad7f7d10bd306ff5a6bceeb2cb8eeb39)
Diffstat (limited to 'docs/xslt')
-rw-r--r--docs/xslt/expand-sambadoc.xsl3
-rw-r--r--docs/xslt/pearson.xsl16
2 files changed, 19 insertions, 0 deletions
diff --git a/docs/xslt/expand-sambadoc.xsl b/docs/xslt/expand-sambadoc.xsl
index cd91bff8a1..ca57e7fec8 100644
--- a/docs/xslt/expand-sambadoc.xsl
+++ b/docs/xslt/expand-sambadoc.xsl
@@ -232,6 +232,9 @@
</xsl:attribute>
<xsl:element name="title">
+ <xsl:if test="imagedescription = ''">
+ <xsl:message><xsl:text>imagedescription of image with id </xsl:text><xsl:value-of select="@id"/><xsl:text> is empty.</xsl:text></xsl:message>
+ </xsl:if>
<xsl:value-of select="imagedescription"/>
</xsl:element>
<xsl:element name="mediaobject">
diff --git a/docs/xslt/pearson.xsl b/docs/xslt/pearson.xsl
index 6a0eb3f1de..99ee05b5af 100644
--- a/docs/xslt/pearson.xsl
+++ b/docs/xslt/pearson.xsl
@@ -808,6 +808,12 @@
<xsl:template match="author">
<xsl:apply-templates/>,
</xsl:template>
+
+ <xsl:template match="editor">
+ <!--FIXME: More information referring to editor ? -->
+ <xsl:apply-templates/>,
+ </xsl:template>
+
<xsl:template match="othername">
<xsl:apply-templates/>
</xsl:template>
@@ -982,6 +988,16 @@
<xsl:template match="authorgroup">
<xsl:apply-templates/>
</xsl:template>
+
+ <xsl:template match="formalpara">
+ <!--FIXME-->
+ </xsl:template>
+
+ <xsl:template match="citerefentry"/><!--FIXME-->
+ <xsl:template match="term"/><!--FIXME-->
+ <xsl:template match="substeps"/><!--FIXME-->
+ <xsl:template match="seealso"/><!--FIXME-->
+ <xsl:template match="affiliation"/><!--FIXME-->
</xsl:stylesheet>