aboutsummaryrefslogtreecommitdiff
path: root/doc/custom-html.xsl.in
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@strace.io>2024-08-24 08:00:00 +0000
committerDmitry V. Levin <ldv@strace.io>2024-08-24 08:00:00 +0000
commitd2536800c523e8e1df140084d6b938b7bbf77dc3 (patch)
tree9eef557c169592dfe50e4562de051b818010911c /doc/custom-html.xsl.in
parent4756c2aa7b5c08a63f58b3b5d00769df7b69af37 (diff)
downloadpam-d2536800c523e8e1df140084d6b938b7bbf77dc3.tar.gz
pam-d2536800c523e8e1df140084d6b938b7bbf77dc3.tar.bz2
pam-d2536800c523e8e1df140084d6b938b7bbf77dc3.zip
doc: remove unused custom-html.xsl
* doc/custom-html.xsl.in: Remove. * configure.ac: Do not generate doc/custom-html.xsl file. * doc/.gitignore: Remove custom-html.xsl. * doc/Makefile.am (DISTCLEANFILES): Remove custom-html.xsl. (EXTRA_DIST): Remove custom-html.xsl.in. Complements: cf2fc5ff7b4a ("doc: Update PAM documentation from DockBook 4 to DocBook 5")
Diffstat (limited to 'doc/custom-html.xsl.in')
-rw-r--r--doc/custom-html.xsl.in18
1 files changed, 0 insertions, 18 deletions
diff --git a/doc/custom-html.xsl.in b/doc/custom-html.xsl.in
deleted file mode 100644
index b2eaf150..00000000
--- a/doc/custom-html.xsl.in
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version='1.0'?> <!--*-nxml-*-->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:ss="http://docbook.sf.net/xmlns/string.subst/1.0"
- xmlns:exsl="http://exslt.org/common" version="1.0">
-
- <xsl:import href="HTML_STYLESHEET"/>
- <xsl:param name="vendordir"/>
-
- <xsl:template match="filename">
- <xsl:variable name="replacements">
- <ss:substitution oldstring="%vendordir%" newstring="{$vendordir}" />
- </xsl:variable>
- <xsl:call-template name="apply-string-subst-map">
- <xsl:with-param name="content" select="."/>
- <xsl:with-param name="map.contents" select="exsl:node-set($replacements)/*" />
- </xsl:call-template>
- </xsl:template>
-</xsl:stylesheet>