source: common/kernfs.xsl@ fd4a798

ablfs-more legacy trunk
Last change on this file since fd4a798 was fd4a798, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Remove $Id$ comments, they are useless with git

  • Property mode set to 100644
File size: 644 bytes
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2
3<xsl:stylesheet
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5 version="1.0">
6
7 <xsl:output method="text"/>
8
9 <xsl:template match="/">
10 <xsl:apply-templates select="//userinput[contains(string(),'--bind') or
11 contains(string(),'/proc') or
12 contains(string(),'readlink') or
13 contains(string(),'-Rv')]"/>
14 </xsl:template>
15
16 <xsl:template match="userinput">
17 <xsl:apply-templates/>
18 <xsl:text>
19</xsl:text>
20 </xsl:template>
21
22</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.