1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
21e519d8dSAndrew Rist<!--***********************************************************
31e519d8dSAndrew Rist *
41e519d8dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
51e519d8dSAndrew Rist * or more contributor license agreements.  See the NOTICE file
61e519d8dSAndrew Rist * distributed with this work for additional information
71e519d8dSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
81e519d8dSAndrew Rist * to you under the Apache License, Version 2.0 (the
91e519d8dSAndrew Rist * "License"); you may not use this file except in compliance
101e519d8dSAndrew Rist * with the License.  You may obtain a copy of the License at
111e519d8dSAndrew Rist *
121e519d8dSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
131e519d8dSAndrew Rist *
141e519d8dSAndrew Rist * Unless required by applicable law or agreed to in writing,
151e519d8dSAndrew Rist * software distributed under the License is distributed on an
161e519d8dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
171e519d8dSAndrew Rist * KIND, either express or implied.  See the License for the
181e519d8dSAndrew Rist * specific language governing permissions and limitations
191e519d8dSAndrew Rist * under the License.
201e519d8dSAndrew Rist *
211e519d8dSAndrew Rist ***********************************************************-->
221e519d8dSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir<!-- =================================
25cdf0e10cSrcweir
26cdf0e10cSrcweir  This templates creates a source.xml file
27cdf0e10cSrcweir  which is identicall to the source xml tree
28cdf0e10cSrcweir  used for the transformation.
29*07a3d7f1SPedro Giffuni  This is may be useful for deveopement/debuging
30cdf0e10cSrcweir  of layouts.
31cdf0e10cSrcweir
32cdf0e10cSrcweir  ==================================== -->
33cdf0e10cSrcweir
34cdf0e10cSrcweir<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
35cdf0e10cSrcweir  xmlns:redirect="http://xml.apache.org/xalan/redirect"
36cdf0e10cSrcweir  extension-element-prefixes="redirect">
37cdf0e10cSrcweir
38cdf0e10cSrcweir   <xsl:output method="xml"/>
39cdf0e10cSrcweir
40cdf0e10cSrcweir
41cdf0e10cSrcweir   <xsl:template  match="/">
42cdf0e10cSrcweir	 	    <xsl:apply-templates mode="copy"/>
43cdf0e10cSrcweir   </xsl:template>
44cdf0e10cSrcweir
45cdf0e10cSrcweir   <xsl:template match="@*|node()" mode="copy">
46cdf0e10cSrcweir      <xsl:copy>
47cdf0e10cSrcweir	     <xsl:apply-templates select="@*|node()" mode="copy"/>
48cdf0e10cSrcweir	   </xsl:copy>
49cdf0e10cSrcweir   </xsl:template>
50cdf0e10cSrcweir
51cdf0e10cSrcweir</xsl:stylesheet>
52