mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
a7d5d08191
This reverts commit c4493c22f1
.
Bug: https://bugzilla.samba.org/show_bug.cgi?id=7562
Conflicts:
docs-xml/Makefile
Autobuild-User(master): Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date(master): Mon Jul 16 16:18:46 CEST 2012 on sn-devel-104
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?xml version='1.0'?>
|
|
<!--
|
|
Find the image dependencies of a certain XML file
|
|
Generates (part of) a Makefile
|
|
|
|
- $(FNAME)-images-latex-{png,eps,pdf} for role=latex
|
|
- $(FNAME)-images-role for all other roles
|
|
|
|
(C) Jelmer Vernooij 2004-2005
|
|
|
|
Published under the GNU GPLv3 or later
|
|
-->
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1">
|
|
<xsl:output method="text"/>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:for-each select="//mediaobject/imageobject[@role and not(@role=following::imageobject/@role)]">
|
|
<xsl:call-template name="generate-images">
|
|
<xsl:with-param name="role"><xsl:value-of select="@role"/></xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:for-each>
|
|
<xsl:call-template name="generate-images">
|
|
<xsl:with-param name="role"/>
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="generate-images">
|
|
<xsl:param name="role"/>
|
|
<xsl:value-of select="$target"/><xsl:text>-images-</xsl:text><xsl:value-of select="$role"/><xsl:text> = </xsl:text>
|
|
<xsl:for-each select="//mediaobject/imageobject[@role=$role]">
|
|
<xsl:value-of select="imagedata/@fileref"/>
|
|
<xsl:text> </xsl:text>
|
|
</xsl:for-each>
|
|
<xsl:text> </xsl:text>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|