xref: /AOO41X/main/extras/source/misc_config/wizard/web/layouts/source.xml.xsl (revision 1e519d8d1fd6015e9d6fc384002b307433771d2f)
1cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
2*1e519d8dSAndrew Rist<!--***********************************************************
3cdf0e10cSrcweir *
4*1e519d8dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
5*1e519d8dSAndrew Rist * or more contributor license agreements.  See the NOTICE file
6*1e519d8dSAndrew Rist * distributed with this work for additional information
7*1e519d8dSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
8*1e519d8dSAndrew Rist * to you under the Apache License, Version 2.0 (the
9*1e519d8dSAndrew Rist * "License"); you may not use this file except in compliance
10*1e519d8dSAndrew Rist * with the License.  You may obtain a copy of the License at
11*1e519d8dSAndrew Rist *
12*1e519d8dSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
13*1e519d8dSAndrew Rist *
14*1e519d8dSAndrew Rist * Unless required by applicable law or agreed to in writing,
15*1e519d8dSAndrew Rist * software distributed under the License is distributed on an
16*1e519d8dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17*1e519d8dSAndrew Rist * KIND, either express or implied.  See the License for the
18*1e519d8dSAndrew Rist * specific language governing permissions and limitations
19*1e519d8dSAndrew Rist * under the License.
20*1e519d8dSAndrew Rist *
21*1e519d8dSAndrew Rist ***********************************************************-->
22cdf0e10cSrcweir
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.
29cdf0e10cSrcweir  This is may be usefull 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