mirror of
https://github.com/brl/mutter.git
synced 2025-06-14 01:09:30 +00:00
build
clutter
doc
common
Makefile.am
common.xsl
cookbook.xsl
devhelp.xsl
html.xsl
ref-html-style.xsl
style.css
cookbook
manual
reference
CODING_STYLE
HACKING
HACKING.backends
Makefile.am
RELEASING
clutter-actor-invariants.txt
po
tests
.gitignore
AUTHORS
COPYING
ChangeLog.pre-git-import
Makefile.am
NEWS
README.in
README.md
autogen.sh
clutter.doap
configure.ac

• Make the manual a DevHelp book • Make the generation of PDFs of the cookbook and the manual optional • Consequently, make the hard dependency on jw optional • Clean up the checks and build for the additional documentation
20 lines
438 B
XML
20 lines
438 B
XML
<?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>
|