diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-07-13 22:47:11 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:45:59 -0500 |
commit | e2f1abfc7ec5858be513c44bc4d6e92b303cc793 (patch) | |
tree | 6d33ac2d90f0ae10bee8cebf65b62a879b7b17a8 /docs/xslt/pearson.xsl | |
parent | eb87ee3d8a3c442aa14152ad481916478c4cceb8 (diff) | |
download | samba-e2f1abfc7ec5858be513c44bc4d6e92b303cc793.tar.gz samba-e2f1abfc7ec5858be513c44bc4d6e92b303cc793.tar.bz2 samba-e2f1abfc7ec5858be513c44bc4d6e92b303cc793.zip |
Fix "explanation of each parameter"
Work on the pearson XSL script a bit more
(This used to be commit dd05a7209379053f5eab8c89aff68028c5b6c439)
Diffstat (limited to 'docs/xslt/pearson.xsl')
-rw-r--r-- | docs/xslt/pearson.xsl | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/docs/xslt/pearson.xsl b/docs/xslt/pearson.xsl index e5dd6749a5..bf362d39ea 100644 --- a/docs/xslt/pearson.xsl +++ b/docs/xslt/pearson.xsl @@ -12,7 +12,7 @@ <xsl:import href="../settings.xsl"/> - <xsl:output method="xml" indent="yes" encoding="UTF-8" doctype-public="-//Pearson//DTD Books//DE" doctype-system="../../Xml_dtd_1.1/pearson.dtd"/> + <xsl:output method="xml" indent="yes" encoding="UTF-8" doctype-public="-//Pearson//DTD Books//DE" doctype-system="http://www.pearson.de/pearson.dtd"/> <xsl:template match="book"> <xsl:element name="book"> @@ -37,8 +37,11 @@ </xsl:template> <xsl:template match="ulink"> - <xsl:element name="url"> - <xsl:value-of select="@ulink"/> + <xsl:apply-templates/> + <xsl:element name="footnote"> + <xsl:element name="url"> + <xsl:value-of select="@ulink"/> + </xsl:element> </xsl:element> </xsl:template> @@ -54,7 +57,7 @@ </xsl:element> </xsl:template> - <xsl:template match="itemizedlist"> + <xsl:template match="para/itemizedlist|itemizedlist"> <xsl:element name="ul"> <xsl:for-each select="listitem"> <xsl:element name="li"> @@ -71,10 +74,13 @@ </xsl:template> <xsl:template match="link"> + <!--FIXME <xsl:element name="xref"> - <xsl:attribute name="linkend"><xsl:value-of select="@linkend"/></xsl:attribute> + <xsl:attribute name="xlink:href"> + <xsl:value-of select="@linkend"/> + </xsl:attribute> <xsl:apply-templates/> - </xsl:element> + </xsl:element>--> </xsl:template> <xsl:template match="acronym"/> |