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

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since c158fe6 was b1a51ac1, checked in by Krejzi <krejzi@…>, 11 years ago

Import new branch

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

  • Property mode set to 100644
File size: 600 bytes
RevLine 
[b1a51ac1]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.