diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-03-17 00:13:11 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:22 -0500 |
commit | f1820fa60eb415a1952116a2c0e4b924c032cd4f (patch) | |
tree | ff6a1bb9ad932a245c8577711a66697703c2484f /docs/xslt | |
parent | f87f8fee8f933c4a4f0f2b7e5f2123749f70eaf8 (diff) | |
download | samba-f1820fa60eb415a1952116a2c0e4b924c032cd4f.tar.gz samba-f1820fa60eb415a1952116a2c0e4b924c032cd4f.tar.bz2 samba-f1820fa60eb415a1952116a2c0e4b924c032cd4f.zip |
Autogenerate parts of the makefile rather then calling seperate shell scripts.
Avoids a lot of copying images that are already present.
(This used to be commit 310b572db83e5a5a14eb4ac7dabbbff60172c668)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/find-image-dependencies.xsl | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/xslt/find-image-dependencies.xsl b/docs/xslt/find-image-dependencies.xsl deleted file mode 100644 index f658369145..0000000000 --- a/docs/xslt/find-image-dependencies.xsl +++ /dev/null @@ -1,20 +0,0 @@ -<?xml version='1.0'?> -<!-- - Find the image dependencies of a certain XML file - (C) Jelmer Vernooij 2004 ---> -<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"> - <xsl:output method="text"/> - - <xsl:template match="mediaobject/imageobject[@role=$role]"> - <xsl:value-of select="$prepend"/> - <xsl:value-of select="imagedata/@fileref"/> - <xsl:value-of select="$append"/> - <xsl:text> </xsl:text> - </xsl:template> - - <xsl:template match="text()"/> - <xsl:template match="*"> - <xsl:apply-templates/> - </xsl:template> -</xsl:stylesheet> |