diff options
author | infirit <[email protected]> | 2014-01-08 17:18:07 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-01-08 17:18:07 +0100 |
commit | 8cd560b2f3ba55a1ac45f4dcd859f8470897ffe4 (patch) | |
tree | 6117cb4524e23e78e6bf8bbf7a0cfca460908983 /docs/xsl/common.xsl | |
parent | 2ff6fb9f311f46c757fdbff994b6c45673b1369d (diff) | |
download | python-caja-8cd560b2f3ba55a1ac45f4dcd859f8470897ffe4.tar.bz2 python-caja-8cd560b2f3ba55a1ac45f4dcd859f8470897ffe4.tar.xz |
Bring gtk-doc up to date.
It should build again and be properly included with make dist.
Based on nautilus-python changes, see below for the details.
https://git.gnome.org/browse/nautilus-python/log/docs?h=nautilus-3.0
Diffstat (limited to 'docs/xsl/common.xsl')
-rw-r--r-- | docs/xsl/common.xsl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/xsl/common.xsl b/docs/xsl/common.xsl new file mode 100644 index 0000000..606313f --- /dev/null +++ b/docs/xsl/common.xsl @@ -0,0 +1,19 @@ +<?xml version='1.0'?> +<!DOCTYPE xsl:stylesheet [ +]> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0'> + +<xsl:template match="parameter"> + <xsl:choose> + <xsl:when test="@role = 'keyword'"> + <xsl:call-template name="inline.boldmonoseq"/> + </xsl:when> + <xsl:otherwise> + <xsl:call-template name="inline.italicmonoseq"/> + </xsl:otherwise> + </xsl:choose> +</xsl:template> + +</xsl:stylesheet> |