You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by cs...@apache.org on 2013/10/28 11:23:54 UTC

svn commit: r1536303 - /cxf/dosgi/trunk/distribution/multi-bundle/src/main/xsl/filter_features.xslt

Author: cschneider
Date: Mon Oct 28 10:23:54 2013
New Revision: 1536303

URL: http://svn.apache.org/r1536303
Log:
Introduce a filter step to enable easier customization. Remove some unnecessary parameters for xsl

Added:
    cxf/dosgi/trunk/distribution/multi-bundle/src/main/xsl/filter_features.xslt

Added: cxf/dosgi/trunk/distribution/multi-bundle/src/main/xsl/filter_features.xslt
URL: http://svn.apache.org/viewvc/cxf/dosgi/trunk/distribution/multi-bundle/src/main/xsl/filter_features.xslt?rev=1536303&view=auto
==============================================================================
--- cxf/dosgi/trunk/distribution/multi-bundle/src/main/xsl/filter_features.xslt (added)
+++ cxf/dosgi/trunk/distribution/multi-bundle/src/main/xsl/filter_features.xslt Mon Oct 28 10:23:54 2013
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:transform version="1.0"
+    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+    <xsl:output method="xml" version="1.0" encoding="UTF-8"
+        indent="yes" />
+
+    <!-- Filter out undesired bundles -->
+    <xsl:template match="bundle[@artifactId='cxf-karaf-commands']"></xsl:template>
+
+    <!-- Copy the rest unachanged -->
+    <xsl:template match="@* | node()">
+        <xsl:copy>
+          <xsl:apply-templates select="@* | node()" />
+        </xsl:copy>
+    </xsl:template>
+
+</xsl:transform>