6142N/A<?xml version="1.0" encoding="ISO-8859-1"?>
6142N/A<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6142N/A<!--
6142N/A ! CDDL HEADER START
6142N/A !
6142N/A ! The contents of this file are subject to the terms of the
6142N/A ! Common Development and Distribution License, Version 1.0 only
6142N/A ! (the "License"). You may not use this file except in compliance
6142N/A ! with the License.
6142N/A !
6142N/A ! You can obtain a copy of the license at
6142N/A ! trunk/opends/resource/legal-notices/CDDLv1_0.txt
6142N/A ! or http://forgerock.org/license/CDDLv1.0.html.
6142N/A ! See the License for the specific language governing permissions
6142N/A ! and limitations under the License.
6142N/A !
6142N/A ! When distributing Covered Code, include this CDDL HEADER in each
6142N/A ! file and include the License file at
6142N/A ! trunk/opends/resource/legal-notices/CDDLv1_0.txt. If applicable,
6142N/A ! add the following below this CDDL HEADER, with the fields enclosed
6142N/A ! by brackets "[]" replaced with your own identifying information:
6142N/A ! Portions Copyright [yyyy] [name of copyright owner]
6142N/A !
6142N/A ! CDDL HEADER END
6142N/A !
6142N/A ! Copyright 2013 ForgeRock AS.
6142N/A ! -->
6142N/A <xsl:output method="xml" indent="yes"/>
6142N/A
6142N/A <xsl:param name="filetomerge"/>
6142N/A
6142N/A <xsl:template match="/">
6142N/A <xsl:element name="qa">
6142N/A <xsl:element name="functional-tests">
6142N/A <xsl:copy-of select="/qa/functional-tests/identification"/>
6142N/A <xsl:element name="results">
6142N/A <xsl:copy-of select="/qa/functional-tests/results/*"/>
6142N/A <xsl:copy-of select="document($filetomerge)/qa/functional-tests/results/*"/>
6142N/A </xsl:element>
6142N/A </xsl:element>
6142N/A </xsl:element>
6142N/A
6142N/A </xsl:template>
6142N/A</xsl:stylesheet>
6142N/A