source: stylesheets/lfs-xsl/docbook-xsl-1.78.1/epub/bin/xslt/obfuscate.xsl@ 8eb3fe4

multilib-10.1
Last change on this file since 8eb3fe4 was 1fa2099, checked in by Thomas Trepl <thomas@…>, 5 years ago

Initial creation of multilib branch

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11565 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 600 bytes
Line 
1<?xml version="1.0"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
3 <xsl:output method="xml" omit-xml-declaration="no" doctype-public="-//OASIS//DTD DocBook XML V4.4//EN" doctype-system="http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" indent="no"/>
4 <xsl:template match="@*|*|comment()|processing-instruction()">
5 <xsl:copy>
6 <xsl:apply-templates select="@*|node()"/>
7 </xsl:copy>
8 </xsl:template>
9 <xsl:template match="text()">
10 <xsl:value-of select="replace(replace(., '[a-z]', 'x'), '[0-9]', 'd')"/>
11 </xsl:template>
12</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.